Hi all, I am using Http Client 3.1 in one of my applications. I am using it for a post request.
My request flow is like this: 1) Client sends a login request. 2) Server sends a session id in Set-Cookie(Set-Cookie: sessionid=x) 3) Client sends request ,with post data and same session id cookie.( Cookie: sessionid=x) 4) Server responds to the request. 5) Client sends another request with 2 session id Cookies,1 from the previous requests and one other Session id Cookie.( Cookie: sessionid=x & Cookie: $Version=0; sessionid=y) 6) Server unauthorize the client. It seems like Client is storing the session cookies,and sending 2 session cookies in the request and the server rejects the request based on invalid session id. Thanks in advance. Chirag
