Consider the following scenario. I am clicking the submit button of a JSF form, after the session has timed out(expired). The browser displays some exception message. "view context could not be restored"...

What I want to do is, to automatically redirect to the homepage of the website after the session has expired. What is the mechanism to do this? any help would be much appreciated. Thanks.

link|improve this question

feedback

1 Answer

up vote 16 down vote accepted

To handle the exception whenever the user invokes a POST request on a page while the HTTP session has been expired, add an <error-page> to the web.xml which catches the JSF ViewExpiredException and shows the home page.

<error-page>
    <exception-type>javax.faces.application.ViewExpiredException</exception-type>
    <location>/home.xhtml</location>
</error-page>

To avoid the exception by redirecting to the home page immediately when the HTTP session has been expired, add a HTML meta refresh tag to the <head>/<h:head> which goes to the home page when the session has been timed out.

<meta http-equiv="refresh" content="#{session.maxInactiveInterval};url=home.xhtml" />

(the HttpSession#getMaxInactiveInterval() returns the session timeout in seconds)


I would however display some informal message to the enduser that the enduser ended in the home page because the session has been expired so that it's clear to the enduser why the website behaved like that. You could achieve this by adding a request parameter to the home URL like so home.xhtml?reason=expired and then intercept on that like so:

<h:outputText value="Your session has been expired" rendered="#{param.reason == 'expired'}" />
link|improve this answer
Thank you @BalusC I added entry to the web.xml file like this <error-page> <exception-type>javax.faces.application.ViewExpiredException</exception-type> <location>/index.xhtml</location> </error-page>Still i get the exception from the glassfish server. HTTP Status 500 - **type** Exception report **message** **description** The server encountered an internal error () that prevented it from fulfilling this request. **exception** javax.faces.application.ViewExpiredException: viewId:/home.xhtml - View /home.xhtml could not be restored any suggestion pls? – selvin Feb 15 '11 at 6:31
Do you have another error pages in web.xml? – BalusC Feb 15 '11 at 12:30
No @BalusC I have no other error-page in web.xml file. I have configured both the welcome-file and the error-page as same.(index.xhtml). would that be a problem? shall i ask this as a seperate question to post more information regarding this? – selvin Feb 17 '11 at 4:26
Why the defined error page has no style or master layout??? – ehsun7b Feb 8 at 10:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.