X-Application Version: 3.1.2, 3.1.1
Tamino Version : 3.1.1
Platform : NT, Win2k, Solaris, …
WebContainer : Tomcat 3.3
JDK Version : 1.3.1
Hello,
if you want to change the default client session timeout of your web application you need to add a
session-timeout element in web.xml.
It needs to be placed at the correct position (see example below).
The time specified is in minutes.
Example: to set the session timeout to 30 minutes add in your web.xml:
...<BR> <context-param><BR> <param-name>TAMINO_DOCTYPE1</param-name><param-value>thedoctype</param-value><BR> </context-param><BR> <session-config><BR> <session-timeout>30</session-timeout><BR> </session-config><BR> <taglib><BR> <taglib-uri>http://www.softwareag.com/xtools/xapplication</taglib-uri><BR> <taglib-location>/WEB-INF/jsp/xapplication.tld</taglib-location><BR> </taglib><BR> ...<BR>
Regards, Harald