Samanthi perera wrote:
when i run this jsp and submit it always prints old session ?
why?
isNew() misleads many developers.
isNew() will only return true if the server creates a session, but the client has not yet joined.
For example, turn off your cookies in your browser. Then run your application; it'll print "New Session" - Don't employ isNew to reliably check user authentication. Rely on user objects bound to sessions.