After performing some tests, I found cookies are not set back to server at all
for some reason. I wire logs i can see something like

DEBUG 05/07/06 06:07:39 [Thread-3] (Wire:69) - << "Set-Cookie:
ASPSESSIONIDQSCQASSS=IFLMCPNBLHAKEFLOMPPCOMCM; path=/[\r][\n]"

And I assume this cookie is returned, but I can't see this cookie
is sent to server.

Code to retrieve page looks like:

get = new GetMethod();
get.setURI(uri);
get.setFollowRedirects(true);
HttpMethodParams p = get.getParams();
p.setVersion(new HttpVersion(1, 1));
p.setCookiePolicy(CookiePolicy.BROWSER_COMPATIBILITY);
http.executeMethod(get);

Do I miss something?
-- 
Eugene N Dzhurinsky

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to