Hello,
I've got a problem with the put () and get () commands. Basically, when either one of them is called, the server recognises the preceding PASV and TYPE I commands coming through, but the STOR (for instance) command doesn't seem to have been received.
This is the code I'm using:
ftpc.setConnectMode(FTPConnectMode.PASV);
ftpc.setType(FTPTransferType.BINARY);
log.info("Putting file");
fileName = "C:\\Documents and Settings\\K and Stu\\My Documents\\guide.txt";
ftpc.put(fileName, "test.txt");
Thanks in advance,
K