Hi,
I need to copy files between servers in a LAN.
For example from "c:/file1.txt" of server 1 to "c:/file1.txt" on server 2.
I just need to do it on Java!
Thanks
Printable View
Hi,
I need to copy files between servers in a LAN.
For example from "c:/file1.txt" of server 1 to "c:/file1.txt" on server 2.
I just need to do it on Java!
Thanks
what will invoke this ?
i recommend creating a kind of protocol for file access (such as what your servlet will implement with post parameters, where you can list, copy, rename, move, delete, create, get.) - every operation on file and directory operations within the restricted shared folders. then have the server configured to connect to the other serve,r such as a http client (e.g. commons-http client)
oh yea, what is teh cient supposed to be, a web browser clicking a screen to do the operations, a java desktop application ?