how is it with Set-Cookie: VS jsessionid url token
precedence ?
Apache Tomcat just seem to ignore the token if cookie is set. Isn't it a little inconvenient behavior ? Or is it like this because of security reasons ?
this is the url of the request in servlet
....someParam=addFile;jsessionid=7A6ECCF009D4855821BCB45E0B744A7B'
and ID of the resulting Session corresponds to the cookie request header param...
This means, that it screws up handling of the request. For instance Spring-mvc resolves
someParam
value to addFile;jsessionid=7A6ECCF009D4855821BCB45E0B744A7B'
and it crashes with exception...