BusinessObjects Enterprise – Changing Tomcat Session Timeout
| Posted by watashii | Filed under BusinessObjects, Software, WebTo change the timeout limit of a BusinessObjects Enterprise XIR2 (Solaris) logged-in session (with Tomcat), the following files needs to be modified:
$BOBJE_HOME/tomcat/webapps/businessobjects/WEB-INF/web.xml
$BOBJE_HOME/tomcat/webapps/businessobjects/enterprise115/desktoplaunch/WEB-INF/web.xml
$BOBJE_HOME/tomcat/webapps/businessobjects/enterprise115/adminlaunch/WEB-INF/web.xml
$BOBJE_HOME/tomcat/webapps/businessobjects/enterprise115/adhoc/WEB-INF/web.xml
Find the following setting within the web.xml file to change the timeout value in minutes.
<!-- Define the default session timeout for your application,
in minutes. From a servlet or JSP page, you can modify
the timeout for a particular session dynamically by using
HttpSession.getMaxInactiveInterval(). -->
<session-config>
<session-timeout>20</session-timeout> <!-- 20 minutes for session objects -->
</session-config>
Then just restart the Apache Tomcat webserver to take effect.
Related Posts:
- How to Change Default Homepage in Tomcat
- BusinessObjects – Insert Webi Report Images
- BusinessObjects – Internal Error when connecting Windows clients
- BusinessObjects – Delete Universes in CMC
- BIAR File Command Line Import – Bypassing Import Wizard
Tags: BusinessObjects, jsp, timeoute, tomcat
2 Responses to “BusinessObjects Enterprise – Changing Tomcat Session Timeout”
-
Xtin Says:
September 1st, 2009 at 7:30 amWill this work on BOE XIR2 running on Windows? I’ve tried this one but it seems that it doesn’t take effect after restarting Tomcat.
-
watashii Says:
September 1st, 2009 at 4:06 pmI haven’t tried this on a Windows installation however search for all the web.xml files and have the timeout updated.