You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hc.apache.org by "Jiandong Zhang (JIRA)" <ji...@apache.org> on 2014/11/05 11:18:33 UTC

[jira] [Created] (HTTPCLIENT-1576) httpclient incorrectly return Cookie rejected

Jiandong Zhang created HTTPCLIENT-1576:
------------------------------------------

             Summary: httpclient incorrectly return Cookie rejected 
                 Key: HTTPCLIENT-1576
                 URL: https://issues.apache.org/jira/browse/HTTPCLIENT-1576
             Project: HttpComponents HttpClient
          Issue Type: Bug
          Components: HttpClient, HttpCookie
    Affects Versions: 4.3.3
         Environment: OS X 10.10
            Reporter: Jiandong Zhang


I use httpclient as a web crawler. The request url is http://www1.bloomingdales.com/shop/product/polder-digital-kitchen-timer?ID=478960 and the destination ip is 23.215.63.18. So I create a request as follow:
URL requestUrl = new URL("http://23.215.63.18/shop/product/polder-digital-kitchen-timer?ID=478960"); 
HttpUriRequest request = new HttpGet(requestUrl.toURI());
request.addHeader("Host", "www1.bloomingdales.com");

It return that "Cookie rejected Illegal domain attribute "bloomingdales.com". Domain of origin: "23.215.63.18"

I debug it, and find out  RequestAddCookies use  23.215.63.18 as host and check cookie valid with the response cookie info which domain is ".bloomingdales.com", So it failed. 

Here my host is www1.bloomingdales.com, RequestAddCookies should use www1.bloomingdales.com not 23.215.63.18.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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