I've been using the JSF 1.2 with the ViewHandler described in this answer : IceFaces Session Expiry causes an exception it was very useful because when the exception occurs the page is automatically regenerated, good for public pages. The problem is that it is not compatible with JSF 2.0. Does anybody have an idea how to make it work in JSF 2.0 or a replacement?

Thank you,

Alexandre.

link|improve this question
Why cant you migrate to JSF 2.0 the application? stackoverflow.com/questions/4441713/… – sfrj Oct 20 '11 at 19:50
I already migrated to JSF 2.0 but the solution I had in 1.2 doesn't work anymore! – Alexandre Lavoie Nov 9 '11 at 18:15
feedback

1 Answer

I think the JSF2 way is to provide your own exception handler.

In the exception handler, one can loop all unhandled exceptions, check for the ViewExpiredException, and remove it.

One an even populate the request params and navigate to a specific facelet, which can render the correct and informative page that makes use of those request params that are populated from the exception handler. Can even navigate to the login screen if you want.

Here's a such article describing how to implement it.

link|improve this answer
For sure this is a good way but in the context of a login screen that you only have it openned in the browser longer than the timeout, when you'll fill username / password boxes and hit login button, it turns into a ViewExpiredException... – Alexandre Lavoie Nov 9 '11 at 18:14
feedback

Your Answer

 
or
required, but never shown

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