Question

I want to connect to a FTP-Server via my Servlet and I know it works, but to use it on my virtual Server I need to change the Port the servlet connects to, because the FTP-Server doesn't use the standard port.

My problem is, that I don't know how I can tell the FTPClient not to use Port 21. For example it should use Port "55555".

The FTPClient only wants one parameter, the ip, to connect.

using org.apache.commons.net.ftp 
FTPClient ftp = new FTPClient();
ftp.connect("dyndns");

best SnowN

Was it helpful?

Solution

you should use method connect(host,port)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top