Hi ,
we have an applet in which we use free edtftpj library for ftp transfer of files .
one requirement is to transfer files from a given ftp server to a second different ftp server (server 2 server ftp transfer).
at first i tried a workaround by storing bytes from source ftp file into memory ,then passing these bytes to second ftp client object to grab. in that way the transfer worked fine.
however we have a limitation of this method: Java restrict the memory available to applets .if we try to transfer a file bigger than 32MB, then applet fails and we can't transfer from server to server.
is there another solution for this server 2 server transfer that we can do with edtftpj (if the pro edition can handle this, we can buy it ).
thanks.