You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@wink.apache.org by "Michael Elman (JIRA)" <ji...@apache.org> on 2009/09/24 11:50:16 UTC

[jira] Created: (WINK-205) When working with Apache HttpClient, the proxy settings are ignored

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.