http://bugs.winehq.org/show_bug.cgi?id=15374
Jan-Peter Nilsson peppe@bsnet.se changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |peppe@bsnet.se
--- Comment #2 from Jan-Peter Nilsson peppe@bsnet.se 2008-09-24 14:18:55 --- I did some debuging and the problem is that HTTP_ProcessCookies in wininet/http.c doesn't actually process cookies but just a single cookie.
In this particular case the login response contains two cookies, a session cookie and another cookie, but only one of them is processed and used in further requests. Due to their order the session cookie was the one not being included in the next request.
Changing the behaviour of HTTP_ProcessCookies so that it processes all cookies registration worked for me.