You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hc.apache.org by "Oleg Kalnichevski (JIRA)" <ji...@apache.org> on 2014/03/10 11:53:44 UTC

[jira] [Updated] (HTTPCLIENT-1479) NPE in DefaultHttpClient with Proxy and AuthCache

     [ https://issues.apache.org/jira/browse/HTTPCLIENT-1479?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Oleg Kalnichevski updated HTTPCLIENT-1479:
------------------------------------------

         Priority: Minor  (was: Major)
    Fix Version/s: 4.3.4

> NPE in DefaultHttpClient with Proxy and AuthCache
> -------------------------------------------------
>
>                 Key: HTTPCLIENT-1479
>                 URL: https://issues.apache.org/jira/browse/HTTPCLIENT-1479
>             Project: HttpComponents HttpClient
>          Issue Type: Bug
>          Components: HttpClient
>    Affects Versions: 4.3.3
>            Reporter: Markus Kull
>            Priority: Minor
>             Fix For: 4.3.4
>
>
> For various reasons we are still using the now deprecated DefaultHttpClient. After updating to 4.3 we encountered a NullPointerException in a seldom case involving proxies and AuthCache.
> {noformat}
>     @Test
>     public void testDefaultHttpClientProxyAndAuthCache() throws Exception {
>         try (CloseableHttpClient client = new DefaultHttpClient()) {
>             ConnRouteParams.setDefaultProxy(client.getParams(), URIUtils.extractHost(URI.create("http://example.org")));
>             HttpClientContext context = HttpClientContext.create();
>             context.setAuthCache(new BasicAuthCache());
> //          java.lang.NullPointerException (null route)
> //          at org.apache.http.client.protocol.RequestAuthCache.process(RequestAuthCache.java:88)
> //          at org.apache.http.protocol.ImmutableHttpProcessor.process(ImmutableHttpProcessor.java:131)
>             HttpResponse resp = client.execute(new HttpGet("https://www.example.org"), context);
>             EntityUtils.consumeQuietly(resp.getEntity());
>         }
>     }
> {noformat}
> Thanks in Advance.



--
This message was sent by Atlassian JIRA
(v6.2#6252)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@hc.apache.org
For additional commands, e-mail: dev-help@hc.apache.org