viewexpiredexception « Exception « JSF Q&A





1. jsf login times out    stackoverflow.com

Ok simple question. I have a JSF application, containing a login page. The problem is if the user loads the login page, leaves it for a while, then tries to login ...

2. com.sun.faces.enableRestoreView11Compatibility what use instead in JSF 1.2    stackoverflow.com

When I have javax.faces.application.ViewExpiredException I want to send user to login page. web.xml

...
    <context-param>
        <param-name>com.sun.faces.enableRestoreView11Compatibility</param-name>
        ...

3. JSF: numberOfViewsInSession vs numberOfLogicalViews and ViewExpiredException    stackoverflow.com

Mojarra Implementation of JSF 2 has the following params:

  • com.sun.faces.numberOfViewsInSession (default is 15)
  • com.sun.faces.numberOfLogicalViews (default is 15)
The documentation doesn't speak much about these. My app was having trouble with ViewExpiredException for some pages, ...

4. javax.faces.application.ViewExpiredException seemingly ignored    stackoverflow.com

I've put the following into my web.xml:

    <error-page>
    <exception-type>javax.faces.application.ViewExpiredException</exception-type>
    <location>/expiredIndex.jsf</location>
</error-page>
<error-page>
    <exception-type>java.lang.Throwable</exception-type>
    <location>/error.jsf</location>
</error-page>
<session-config>
    <session-timeout>1</session-timeout>
</session-config>
When ...

5. How to solve ViewExpiredException in JSF 1.2    stackoverflow.com

I have an application using JSF1.2 + Richfaces 3.3.3 Final, MyFaces 1.2.7, Spring + Hibernate and I get the below exception everytime when I clear the cache and cookies of the ...

6. ViewExpiredException    coderanch.com

7. ViewExpiredException: (Myfaces1.2.6 and Richfaces3.3.0) Possible problem and solution discussion.    coderanch.com

I have posted same article in Rich Faces forum, still waiting for answer. Anyways, what I found is related to Rich Faces class, but just want to confirm the usage of saving images in view state map. Please see below... We recently upgraded Rich Faces to 3.3.0 along with my faces 1.2.6. We were facing a problem that if we access ...

9. Getting ViewExpiredException    coderanch.com





10. JSF: viewExpiredException    coderanch.com