When working with Apache HttpClient, the proxy settings are ignored
-------------------------------------------------------------------
Key: WINK-205
URL: https://issues.apache.org/jira/browse/WINK-205
Project: Wink
Issue Type: Bug
Components: Client
Affects Versions: 0.1
Reporter: Michael Elman
Priority: Minor
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:
{code}
DefaultHttpClient httpclient = new DefaultHttpClient();
HttpHost proxy = new HttpHost("localhost", 8888);
httpclient.getParams().setParameter(ConnRoutePNames.DEFAULT_PROXY, proxy);
{code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.