Problem using CookiePolicy.NETSCAPE policy
-------------------------------------------
Key: HTTPCLIENT-685
URL: https://issues.apache.org/jira/browse/HTTPCLIENT-685
Project: HttpComponents HttpClient
Issue Type: Bug
Components: HttpCookie
Affects Versions: 3.0.1
Reporter: Vladimir
Priority: Minor
Cookies are not sent correctly by httpclient.
Here is a code snippet:
---------
PostMethod postMethod = new PostMethod("http://someurl");
postMethod.setParameter("email", "[EMAIL PROTECTED]");
postMethod.setParameter("pass", "somepassword");
HttpClient client = new HttpClient();
client.getParams().setCookiePolicy(CookiePolicy.NETSCAPE);
client.executeMethod(postMethod);
String getarg = "http://someurl" +
postMethod.getResponseHeader("Location").getValue();
GetMethod get = new GetMethod(getarg);
get.setFollowRedirects(true);
client.executeMethod(get);
------
After executing postMethod several cookies are injected in httpclient. After
that get method must use those cookies and NETSCAPE policy, but using sniffer I
see, that all cookies are separated in different lines instead of one line. For
example:
Needed:
Cookie: first=value; second=second_value
Actual:
Cookie: first=value
Cookie: second=second_value
------
Only while writing this story, I've realized, that I'm using HttpClient 3.0.1,
so this bug is probably already fixed. Sorry :)
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]