Hi, I am using HttpClient 4.0.1. And trying to get proxy working with my SSL based http client. Unfortunately i haven't been successful so far.
Could get a not secure http proxy working, but the problem is with https.
Can you provide any pointers to doing this.
I am using the following code for setting the proxy,
HttpHost proxy = new HttpHost("localhost", 5555);
httpClient.getParams().setParameter(ConnRoutePNames.DEFAULT_PROXY, proxy);
Any help is greatly appreciated.
Thanks,
Vicky
