In message "URLConnection with FTP protocol"
    on 01/04/26, Ito Kazumitsu <[EMAIL PROTECTED]> writes:

> which enable URLConnection with FTP protocol to work
> if system properties ftp.proxyHost and ftp.proxyPort
> are set.

> +     if ((url.getProtocol()).equals("ftp")) {
> +             proxyHost = System.getProperty("ftp.proxyHost");

> +                     useProxy = true;

> +                             proxyPort = Integer.parseInt(pp);

One thing I am worried about is that proxyHost, useProxy
and proxyPort are static.  Changing their values may
cause some trouble.

Reply via email to