Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] Simple question about cookies

The domain and path are included in the HTTP Set-Cookie response header. They are not, however, sent back to the sever in the HTTP Cookie request header. There's no setting in Jetty to alter this behavior because it's how HTTP works and it's the browser that is on control of what is sent. (You'd have the same situation with any other web server.) If you must have this information back and what's available in the request isn't sufficient, you'll need to store it in the cookie value. 

HTH!

Back to the top