There is a session timeout parameter in web.xml. I tested my app with a
2 min timeout to redirect the user to the home page after the session
times out. I use Tomcat but web.xml and the session timeout param are
standard on a servlet container.
Here is the web.xml file I use, the timeout param is
look at your web server/app server documentation for http sessions and how
they time out.
On 9/5/06, Peter Dawn <[EMAIL PROTECTED]> wrote:
ok. how can i implement a session time-out.
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
ok. how can i implement a session time-out.
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Nope
You are relying on the web page sending some sort of message when the browser
gets killed. No matter what fancy mechanism you can think of this will be
defeated with something as simple as the internet connection being broken.
This is why you use session time out.
-Pat
--- Peter Dawn