On Fri, Mar 14, 2014 at 3:04 PM, Akash Jain <akash.delh...@gmail.com> wrote:

>  I have following configuration in `web.xml` in tomcat 7. I am wondering if
> I can add any configurable parameter here, so that if user tries to do any
> operation post 30 minutes, I redirect the user to our home page.
>
>     <session-config>
>           <session-timeout>30</session-timeout>
>           <cookie-config>
>                   <domain>mydomain.mycompany.com</domain>
>                   <http-only>true</http-only>
>                   <secure>false</secure>
>           </cookie-config>
>           <tracking-mode>COOKIE</tracking-mode>
>     </session-config>
>

My first thought is you could catch the error in web.xml using an
error-page and error-code 408, and then use a location to redirect?

http://tomcat.apache.org/tomcat-7.0-doc/servletapi/javax/servlet/http/HttpServletResponse.html

Reply via email to