| I took a shot at implementing this in #105. That change uses the SystemDefaultHttpClient class, which supports the following Java properties: The following system properties are taken into account by this class:
- ssl.TrustManagerFactory.algorithm
- javax.net.ssl.trustStoreType
- javax.net.ssl.trustStore
- javax.net.ssl.trustStoreProvider
- javax.net.ssl.trustStorePassword
- java.home
- ssl.KeyManagerFactory.algorithm
- javax.net.ssl.keyStoreType
- javax.net.ssl.keyStore
- javax.net.ssl.keyStoreProvider
- javax.net.ssl.keyStorePassword
- http.proxyHost
- http.proxyPort
- https.proxyHost
- https.proxyPort
- http.nonProxyHosts
- http.keepAlive
- http.maxConnections
The semantics of these properties are defined here. I don't have a proxy server against which to test this. Is anyone willing to try out my PR against their proxy server and report back with the results? |