Hello everyone!

When I invalidate session and explicitly create a new session, if I try
to put object to session I get
java.lang.IllegalStateException: Session was invalidated

I think that this is bug in app server (orion) but I'm not sure.

Code is:
         HttpSession session = request.getSession();
         session.invalidate();
         session = request.getSession( true );
         session.setAttribute( "test", "test" );

What is yours opinion?
Thanks in advance.

Denis Kranjcec

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to