I have a login page that is not protected and is accessible via different navigation-cases.
The problem: many users access that login page and leave it open for a while before then sign in again. Boom! The terrible ViewExpiredException occurs! I would like to avoid the ViewExpiredException let them sign in again anyway. I don't want a workaround for all the views, but only the sign on page.
I can't migrate to JSF2 (for budget reasons).
I have this configuration:
javax.faces.STATE_SAVING_METHOD = server
that I can't change (we have a limited bandwith and mechanisms that block http request bigger than a small form page with very limited input fields.
Any idea?