Hello:
I am trying to implement a session time out logic for my application.
In my Login Servlet I do the following:

        
getThreadLocalRequest().getSession(true).setAttribute("sessionDetails",
                                session);

        
getThreadLocalRequest().getSession(false).setMaxInactiveInterval(30);

This creates an _ah_SESSION entry. However as per the servlet
specification I expect this session to be invalidated after 30
seconds. However this does not happen. Any suggestions as to how this
can be implemented ?
Thanks a lot.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to