Hi everybody,
I have a web application that uses java sessions. I specify an expiration time for the client session. When it expires, I call a servlet where I try to obtain a new session:
A new session is obtained, but if I invoque inmediatly to
, it returns
Any idea?
I have a web application that uses java sessions. I specify an expiration time for the client session. When it expires, I call a servlet where I try to obtain a new session:
Code:
HttpSession session = request.getSession(true);
A new session is obtained, but if I invoque inmediatly to
Code:
session.isNew()
Code:
false
Any idea?