Hi!
I am using the jakarta net commons library for ftp client. It works fine when I'm not behind a proxy server. I found this information on the net library
Since the Net project uses java.net.Socket under the covers, you have to set
up the Socket settings. If the proxy you are using is a SOCKS4 or SOCKS5
proxy, you can set the following System Properties:
System.getProperties().put( "socksProxyPort", "1080");
System.getProperties().put( "socksProxyHost" ,"proxy.host.address");
When I check the proxy settings for the computer( Mac os x ) we are only using FTP proxy, HTTP proxy and HTTPS proxy. The Socks proxy is not set. How can I still use the jakarta net library? Is there a way to use the ftpProxyPort and ftpProxyHost in the library?
// Mathias