Timo Kinnunen created HTTPCLIENT-1556:
-----------------------------------------
Summary: Default CookieSpecs provider not found for
AbstractHttpClient subclass
Key: HTTPCLIENT-1556
URL: https://issues.apache.org/jira/browse/HTTPCLIENT-1556
Project: HttpComponents HttpClient
Issue Type: Bug
Components: HttpClient
Affects Versions: 4.4 Alpha1
Reporter: Timo Kinnunen
When a client based on the deprecated AbstractHttpClient is created without
customizing the default CookieSpecRegistry, the default CookiePolicy is not
subsequently found from this CookieSpecRegistry in
org.apache.http.client.protocol.RequestAddCookies.java line 149. The reason is
that RequestAddCookies is looking up the non-deprecated CookieSpecs.DEFAULT
(String value "default") by default but the CookieSpecRegistry was constructed
with the deprecated CookiePolicy.BEST_MATCH (String value "best-match") as the
default.
Adding the line
registry.register(
CookieSpecs.DEFAULT,
new BestMatchSpecFactory());
to org.apache.http.impl.client.AbstractHttpClient::createCookieSpecRegistry
method appears to fix this issue.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]