Details
-
Bug
-
Status: Open
-
Minor
-
Resolution: Unresolved
-
0.1
-
None
-
None
Description
When working with Apache HttpClient, the proxy settings on the ApacheHttpClientConfig are ignored.
It's still possible to set proxy on the Apache HttpClient directly:
DefaultHttpClient httpclient = new DefaultHttpClient(); HttpHost proxy = new HttpHost("localhost", 8888); httpclient.getParams().setParameter(ConnRoutePNames.DEFAULT_PROXY, proxy);