Hi All,
HttpSession session=request.getSession(true); this will create new session
and HttpSession session=request.getSession(false); this will maintain existing session right?
if yes, i should get out put like
-------------------------------------------
EXISTING SESSION 1ST SESSION
NEW SESSION [empty]
-------------------------------------------
but i am getting:
---------------------------------------
EXISTING SESSION 1ST SESSION
NEW SESSION 1ST SESSION
---------------------------------
please explain me . Hope you understand my point