Modifying the value at web.xml will change the session timeout for WDK based applications
For Tomcat
1. Go to Tomcat install folder.
2. Open conf\web.xml file.
a. Search for session-timeout.
b. Edit the time limit (in minutes).
3. Save the conf\web.xml file.
4. Open webapps\webtop\WEB-INF\web.xml file.
a. Search for session-timeout.
b. Edit the time limit (in minutes).
5. Save the webapps\webtop\WEB-INF\web.xml file.
6. Restart the web server.
For WebLogic
modify the Web.xml located in /webapps/webtop folder. Entry should look like something like this:
<session-config>
<session-timeout>54</session-timeout>
</session-config>
Also we need to change the time out value in server.ini file at content server otherwise which ever is sooner, timeout will occur
Add the following to server.ini file
client_session_timeout="your time"