Skellington wrote:
Tomcat 6.0.20 on Mac OS X 10.5.8
I'd have to verify this, but my first guess would be that you may have to set the session timeout on Tomcat to be longer since its default is 30 minutes I believe.
You can do this either in your applications web.xml file, or in a web.xml file in Tomcat's conf directory to control it across all applications.
Try adding this to your application's web.xml file and restart the app (or Tomcat):
<session-config>
<session-timeout>240</session-timeout>
</session-config>
The timeout is expressed in minutes, so that would give you 4 hours.
--
Matthew Woodward
[email protected]
http://www.mattwoodward.com/blog
Please do not send me proprietary file formats such as Word, PowerPoint,
etc. as attachments.
http://www.gnu.org/philosophy/no-word-attachments.html
smime.p7s
Description: S/MIME Cryptographic Signature
