Re: Setting cookie and location in the same header

Paulo Patricio <[email protected]> Tue, 01 Oct 2002 11:58:10 +0100
Newsgroups gmane.comp.web.general
Message-ID <[email protected]>
At 11:43 26-09-2002 -0700, you wrote:
>  ...
>
>This gives the following & the Set-Cookie header seems to get lost somewhere
>in the picture.
>
>HTTP/1.1 302 Object Moved
>Location: http://swapnas:8001/aw?awr=
>Server: Microsoft-IIS/4.0
>Content-Type: text/html
>Content-Length: 155
>...

When you set the location response-header  field, you are telling the 
recipient that the requested uri was changed temporally to other location.

ie: the broswer requested http://x.com/xpto.htm
and you change the location to http://y.com/xpto.html

Remember that cookies are related with domains, like [email protected]

So, i think you can't set a cokie on a request to a document that is in a 
different location.
When the recipient request the document at the new uri, and you response 
200 ok. You don't have any problems.

Regards,
Paulo.