function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
jdengjdeng 

Unable to tunnel through proxy. Proxy returns "HTTP/1.0 403 Forbidden"

This proxy server prompt for username/password, I'm having issue with https tunnel through this proxy server
and I set the system properties using the following code:
 
Security.addProvider(new com.ibm.jsse.IBMJSSEProvider()); 
System.getProperties().put("https.proxySet","true");
 System.getProperties().put("https.proxyHost", proxyHost);
 System.getProperties().put("https.proxyPort", proxyPort);
 System.getProperties().put("https.proxyUserName", proxyUserName);
 System.getProperties().put("https.proxyPassWord", proxyPassWord);
...............
..............
properties.put("java.protocol.handler.pkgs", "com.ibm.net.ssl.internal.www2.protocol");
 
I'm using axis 1.4 with commons-httpclients-3.1
 
anyone has any idea?
 
Rick.BanisterRick.Banister
We've seen this also. It's our feeling that the API should handle this in the login call instead of having to reinvent the wheel for every developer who writes an application.
 
jdengjdeng
how to get around this issue then? need to implement authentication class?