java Programming Glossary: ssltunnelsocketfactory
How do a send an HTTPS request through a proxy in Java? http://stackoverflow.com/questions/1511674/how-do-a-send-an-https-request-through-a-proxy-in-java url.openConnection connection.setSSLSocketFactory new SSLTunnelSocketFactory proxyHost proxyPort connection.setDoOutput true connection.setRequestMethod.. is the same. When I set the SLLSocketFactory here to the SSLTunnelSocketFactory the class explained in the article the stuff I did with the.. Don't I still need that Another Update I modified the SSLTunnelSocketFactory class to use the SSLSocketFactory that uses my TrustManager..
|