I've got a test web app going in which I do not call request.getSession() in any servlets, jsps, tags, etc.. However, I do call request.getSession(false). To my surprise, the latter call returned a Session object; I had expected null.
Can anyone pls explain why a session was created for me w/o my ever having explicitly requested that one be created?
do you use Struts in your application, if so, struts automatically creat a locale attritue and store it into a session. why do not you try to print out all the session variables, and see what's inside that session? [ January 07, 2007: Message edited by: Hongli Li ]
Do you know why this cup is useful? Because it is empty.