Section 1.4.3 of the JSP 1.1 Final Spec (page 24). Its available at
http://www.javasoft.com/products/jsp/download.html
<http://www.javasoft.com/products/jsp/download.html>
My own understanding: Session starts at the first time a user in a
particular web browser instance requests a "resource" from Tomcat. The
session ends after the user hasn't make any more requests - default
configuration this is about 30 minutes (I believe, I've always reset this to
something else). There are some caveats about the instances of web browsers
- some browsers have bugs that allow a session to be used by two separate
instances if you're using cookie based sessions.
Randy
-----Original Message-----
From: Mike Campbell [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 06, 2000 3:07 PM
To: '[EMAIL PROTECTED]'
Subject: RE: scope of a bean
Can someone point me to where these varying scopes are defined?
Specifically, where does a "session" begin and end? Page and request I think
I can figure out.
Thanks.