This content has been marked as final. 
    
Show                 1 reply
    
- 
        1. Re: What is the timeout period for the web session??joelvogt Dec 10, 2002 5:00 PM (in response to tbauer)default life will depend on which servlet container you are using. Generally it seems to be about 15mins. You can change this in your web.xml via something like 
 <session-config>
 <session-timeout>45</session-timeout>
 </session-config>
 Just above your welcome file list and below servlet mappings. (note this is 45 mins)
 
    