Markus Kull created HTTPCLIENT-1479:
---------------------------------------
Summary: 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
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]