What is default Session time out in the servers like Tomcat, Weblogic, JBoss,..etc?

Showing Answers 1 - 8 of 8 Answers

javamatrix

  • Nov 8th, 2005
 

The default time for session time out is 30 minutes...but these can be overwritten programmatically using the setSessionInActiveInterval() function

  Was this answer useful?  Yes

Nikhil Sidhaye

  • Nov 14th, 2005
 

According to Servlet Specifications one can add following lines in web.xml.

<servlet-config>
     
</servlet-config>

  Was this answer useful?  Yes

Nikhil Sidhaye

  • Nov 14th, 2005
 

According to Servlet Specifications one can add following lines in web.xml.

<servlet-config>     
<session-timeout>30</session-timeout>
</servlet-config>

This will run for any server. Also some servers also provide some diff.alternatives like

WebLogic 6.1 :
You can add following things in under

<session-descriptor>

<session-param>

<param-name>TimeoutSecs</param-name>

<param-value>3600</param-value>

</session-param>

  Was this answer useful?  Yes

selvan

  • Nov 18th, 2005
 

30 mins

  Was this answer useful?  Yes

kumar

  • Aug 4th, 2007
 

No Guys All the answers are fully wrong ....... the container  takes 18.5 min

Thanks
kumar

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions