I am a little uncertain about the sequence of events when using cookies. Here's what I think happens if a client application repeatedly requests the same page from the server:
- client application makes a request
- server side returns with a Set-Cookie response header
- client makes another request, putting the cookie returned in step 2 in to the HTTP request "Cookie" header
- server side returns but with no Set-Cookie in the response header
Is that the correct sequence? ( I'm particularly interested in Step 4 - does the server return a Set-Cookie in response to a request that has supplied a cookie )
The cookie in question is actually a JSESSIONID cookie, if that makes any difference.
Thanks
Dave