Apache Http Client 4.0.1 SSL Proxy
问题 I am using Apache Http client 4.0.1 for communicating with the server. I already have a secure/non secure client code that works just fine. Recently the new addition being to add proxy to this code, so i added the following piece of code to do that (currently non secure proxy), HttpHost proxy = new HttpHost("localhost", 5555); httpClient.getParams().setParameter(ConnRoutePNames.DEFAULT_PROXY, proxy); This has worked fine with a non secure request. However i am having trouble with a secure