Apr 18, 2005 #1 swaroop Programmer Joined Feb 4, 2001 Messages 100 Location US Hi All, I wanted to set the timeout to server while calling the servlet from the browser(Client). Thanks in advance.
Hi All, I wanted to set the timeout to server while calling the servlet from the browser(Client). Thanks in advance.
Apr 18, 2005 #2 sedj Programmer Joined Aug 6, 2002 Messages 5,610 Session timeout in Tomcat context's web.xml : Code: <web-app> <session-config> <session-timeout>60</session-timeout> </session-config> ... </web-app> -------------------------------------------------- Free Database Connection Pooling Software http://www.primrose.org.uk Upvote 0 Downvote
Session timeout in Tomcat context's web.xml : Code: <web-app> <session-config> <session-timeout>60</session-timeout> </session-config> ... </web-app> -------------------------------------------------- Free Database Connection Pooling Software http://www.primrose.org.uk