timeout « Tomcat « JSP-Servlet Q&A





1. What is the default session timeout for a Java EE website?    stackoverflow.com

If I do not specify the following in my web.xml file:

<session-config>
    <session-timeout>600</session-timeout>
</session-config>
What will be my default session timeout? (I am running Tomcat 6.0)

2. Is there a way to set timeouts in tomcat?    stackoverflow.com

Can I set timeouts for JSP pages in tomcat either on a per page or server level?

3. Exclude a page from session timeout in web.xml    stackoverflow.com

I'm just wondering, is it possible to exclude a page (say, the login.jsp) from session timeout in web.xml?

4. Servlet Timout vs. Container Timeout    stackoverflow.com

If you set a timeout in a servlet using a HttpSession.getMaxInactiveInterval() call, does this setting overwite the session-timeout value in the container's web.xml file or is it the other way around? I ...

5. Tomcat Timeout?    stackoverflow.com

What would make a JSP not finish running and not throw an error? I have a JSP that queries an MS Access database, which is a very slow process (we're hopefully going ...

6. Does Tomcat Timeout?    coderanch.com