-
1. Re: Proxy options don't work with Salesforce connector
andey Jun 13, 2017 10:12 AM (in response to pranavk)You have to edit the variables jdk.http.auth.tunneling.disabledSchemes and jdk.http.auth.proxying.disabledSchemes to blank like this:
jdk.http.auth.tunneling.disabledSchemes=
jdk.http.auth.proxying.disabledSchemes=
Change in Java 8 Update 111:
Now, proxies requiring Basic authentication when setting up a tunnel for HTTPS will no longer succeed by default. If required, this authentication scheme can be reactivated by removing Basic from the jdk.http.auth.tunneling.disabledSchemes networking property, or by setting a system property of the same name to "" ( empty ) on the command line.
http://www.oracle.com/technetwork/java/javase/8u111-relnotes-3124969.html
You could try to run Java with
java -Djdk.http.auth.tunneling.disabledSchemes=""
or probably better (security): upgrade the authentication scheme of your proxy, e.g. to Digest access authentication.
-
2. Re: Proxy options don't work with Salesforce connector
pranavk Jun 19, 2017 10:42 AM (in response to andey)Hi Anup,
Thanks for your response, and kindly excuse the delay in my response. I tried passing these as JVM arguments while starting my app server but this did not do the trick for me. Were you able to solve this particular case of connecting through the Salesforce connector using these settings?
-
3. Re: Proxy options don't work with Salesforce connector
andey Jun 19, 2017 1:18 PM (in response to pranavk)Guessing that your proxy is not allowing clients to access servers via HTTPS.