Hello All,
I wanted to know what will be the
servlet container behavior, when the client has the cookies disabled and it tries to open the same website in a different browser window.
So here is my scenario.
Client sends first request to the servlet, since no cookies set, the container will fallback to Url rewriting and from then on the session is maintained between the client and the server.
But now suppose the client opens a new browser window and tries to access the same link, but without sessionid appended to link, so in this case conatiner will see it as a new client and create a different session for it ?
The point i am getting at is, we say the session objects are not
thread safe, because the client can open a new browser window but still it will be in the same session, but i think if the cookies are disabled , then the session objects for that client will be thread safe. is that correct or i am missing anything ?
Please advise.