Proxy Authentication Failed error

后端 未结 3 965
逝去的感伤
逝去的感伤 2021-01-23 10:39

I\'m trying to access an FTP server through an FTP SITE Proxy to bypass a firewall using it.sauronsoftware.ftp4j.FTPClient I know my username/password is correct be

3条回答
  •  北荒
    北荒 (楼主)
    2021-01-23 11:37

    Check password property name. It's name is ftp.proxyPassword, and not ftp.proxyPass.

    System.setProperty("ftp.proxyUser", "proxyUser");
    System.setProperty("ftp.proxyPassword", "proxyPass");
    

    Try it and let us know your results!

提交回复
热议问题