[
https://issues.apache.org/jira/browse/HTTPCLIENT-1479?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Oleg Kalnichevski resolved HTTPCLIENT-1479.
-------------------------------------------
Resolution: Fixed
Fixed in SVN trunk and 4.3.x branch.
Please review / test with the latest SVN snapshot.
Oleg
> 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: [email protected]
For additional commands, e-mail: [email protected]