Tagged Questions

This exception will be thrown whenever the enduser fires a POST request on a view which does not exist anymore in the server side, because the session has been expired. The view states are by default stored in the session, so they are lost whenever the session expires. A POST request will be fired ...

learn more… | top users | synonyms

10
votes
5answers
18k views

Handling 'session expired' in JSF web application, running in JBoss AS 5

This question is related to my other question "How to redirect to Login page when Session is expired in Java web application?". Below is what I'm trying to do: I've a JSF web application running on ...
7
votes
1answer
15k views

javax.faces.application.ViewExpiredException: View could not be restored

I have written simple application with container-managed security. The problem is when I log in and open another page on which I logout, then I come back to first page and I click on any link etc or ...
5
votes
1answer
4k views

how to handle session expiration in JSF 2.0?

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 ...
5
votes
1answer
2k views

Issue with JSF ViewExpiredException and multiple error-page tag definitions in web.xml

I'm working on a JSF web application in which I need to bring up a "Session Expired" page if the view expires, but a general technical error page for all others. The application only goes to the ...
4
votes
2answers
941 views

ViewExpiredException on every navigation after migrating from JSF 1.2 to JSF 2.0

I'm attempting to migrate an existing JSF application from JSF 1.2 to JSF 2.0. I was using MyFaces 1.2.8 and want to use MyFaces 2.0.5. What I'm experiencing with MyFaces 2.0.5 is that the initially ...
4
votes
2answers
5k views

JSF: Cannot catch ViewExpiredException

I'm developing a JSF 2.0 application on Glassfish v3 and i'm trying to handle the ViewExpiredException. But whatever i do, i always get a Glassfish error report instead of my own error page. To ...
4
votes
1answer
2k views

viewExpiredException JSF

To handle viewExpiredException in JSF, I coded <error-page> <exception-type>javax.faces.application.ViewExpiredException</exception-type> ...
4
votes
5answers
4k views

Handling an expired ViewState in JSF and Richfaces

I have a series signup pages that build on each other. When the users session expires I have a Listener that cleans everything up on the server and that works great. But, if the user attempts to do ...
3
votes
1answer
1k views

ViewExpiredException after upgrade to jsf2

We recently upgraded a major platform from jsf 1.2 to 2.0. After upgrading we're getting several ViewExpiredException errors each hour. From reading up on the topic it seems that this is an expected ...
3
votes
4answers
1k views

jsf login times out

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 the session expires and a ...
2
votes
2answers
75 views

JSF - set STATE_SAVING_METHOD per-page

I would like to set a particular page (one that does not require a user to sign in to use) to have a STATE_SAVING_METHOD of client rather than server while the rest of the pages use server. Is there ...
2
votes
1answer
352 views

Tomcat 7.0.19 and Mojarra 2.1.2 ViewExpiredException

I was using Tomcat 6.0.26 with my project since long time. Now, I need to use EL 2.2 in this project so I moved it to Tomcat 7.0.19 with no other changes (Using Mojarra 2.1.2-b04 with RichFaces ...
2
votes
1answer
351 views

JSF 2.0 ViewExpiredException on Glassfish 3.1 when using iframe in Safari

I have a JSF 2.0 web application running on glassfish 3.1 that is working fine on IE, FF, Safari and Chrome. When I added the url of my website inside a iframe of another website then I am getting ...
2
votes
1answer
253 views

JSF 2.0 ViewExpiredException

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 ...
2
votes
1answer
1k views

javax.faces.application.ViewExpiredException and error page not working

I set up my web app as follows: <error-page> <exception-type>javax.faces.application.ViewExpiredException</exception-type> ...
2
votes
1answer
806 views

Cleanly handle session timeout with Java EE 6

I've got a fairly simple web application deployed in GlassFish 3.0.1. I'm using regular FORM based authentication and have the application secured using a JDBC realm. The view is handled by JSF 2 ...
1
vote
1answer
36 views

jsf spring security session timeout viewExpiredException

I have the following problem with the timeouts in Spring Security with JSF: I've customized the sessionmanagement filter so that the user is redirected to the invalidSessionUrl just if the requested ...
1
vote
0answers
111 views

Invoking multiple ajax requests on the same view in a portlet leads to ViewExpiredException

I am working in Portal application build using JSF and Ajax. All the pagecodes are in request scope. We have a page with 2 portlets and in one of the portlet we use ajax to rerender components. When ...
1
vote
1answer
105 views

JSF wrong redirection when catching ViewExpiredException

So I have a ViewExpiredException Handler and works fine. Now, when I launch the web-app my URL looks like www.myApp.com/TestFaces/ and this presents the first page which is the login page. If for any ...
1
vote
1answer
349 views

Check if session exists JSF

I have a login page where I have a User bean to authenticate username and password for a person. This Bean is Session Scoped. If someone writes a URL and tries to jump the login page, how can I check ...
1
vote
1answer
371 views

Handling ViewExpiredException depending on the current view

I am using JSF 2.0 and Primefaces in my project. I have two xhtml pages namely Cars.xhtml and Bikes.xhtml. I am using ViewScoped backing beans. Currently If get view expired exception from any of ...
1
vote
1answer
222 views

What will be the best way of saving faces messages after redirection due to ViewExpiredException?

I followed the following article to deal with ViewExpiredException - Dealing Gracefully with ViewExpiredException in JSF2 It does what it is supposed to do. But I wanted to have some FacesMessage ...
1
vote
2answers
759 views

JSF 2 Session Beans Problems

I have a JSF 2.1 (MyFaces) app running using several Session Beans (All the beans are session beans). The timeout is defined in web.xml as such: <session-config> ...
1
vote
1answer
356 views

Preventing Session Fixation on JSF

I am trying to figure out how to prevent Session Fixation on an JSF login form in Glassfish 3.1. It was easy to do with Servlets, so I try to do the same on JSF (based on what is here): FacesContext ...
1
vote
0answers
773 views

JSF 2.0 Custom Exception Handler - ViewHandler is not redirecting in Weld Application

I use the by Ed Burns suggested custom exception handler to display an error page whenever a specific exception occurs. I also try do display an error page when the context is not active. However, ...
1
vote
2answers
749 views

javax.faces.application.ViewExpiredException: View could not be restored

i've created this webpage using jsf,prettyfaces and hibernate i looked around and most people says that this error is because of cache most of them found this error after login,logout and try to login ...
1
vote
1answer
3k views

javax.faces.application.ViewExpiredException seemingly ignored

I've put the following into my web.xml: <error-page> <exception-type>javax.faces.application.ViewExpiredException</exception-type> ...
0
votes
1answer
68 views

View could not be restored after clicking button that runs a JS function which clears the form

I'm having an issue with a form that I have. The form allows users to enter info into some textboxes and then there are 2 buttons - Search and Reset. Form code: <h:outputText value="Search by ...
0
votes
0answers
154 views

PrimeFaces 3.0 + Mojarra 2.1.6 javascript ajax package jsf.ajax.* not available - ViewExpiredException

I've tried to investigate the problem but haven't found solution at all. I use primefaces datatable with pagination. I wrote and exception handler for viewexpiredexception error as Ed Burns suggested ...
0
votes
0answers
49 views

Exception occurs in IE only

I developed a website in JSF 2. But one page 'showroom' gives an exception in Internet Explorer when if I try to do the same thing in Google Chrome everything runs ok. I cannot say more about this ...
0
votes
1answer
113 views

JSF - Keep a session alive for an indefinite amount of time

Is there a way to keep a page's session active without resorting to sending the state to the client? I'm not able to set the STATE_SAVING_METHOD to client and I'd prefer to not use the a4j:keepalive. ...
0
votes
1answer
192 views

How to solve ViewExpiredException in JSF 1.2

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 browser and login again ...
0
votes
2answers
149 views

jsf page could not be restored

I get this error when I click on a selectBooleanCheckBox. What should I do? 10:36:03,105 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/snsEJBwm].[Faces Servlet]] ...
0
votes
0answers
149 views

JSF 1.2 : Routing the errors to the proper error pages [closed]

Possible Duplicate: Issue with JSF ViewExpiredException and multiple error-page tag definitions in web.xml <error-page> ...
0
votes
2answers
400 views

ViewExpiredException, Page could not be restored

I've tried to follow different posts on how to handle the ViewExpiredException in Mojarra 2.1.0 (with RichFaces 4) on GlassFish 3.1. But what I define in web.xml doesn't seams to have any effect. I ...
0
votes
1answer
199 views

ViewExpiredException after upgrading to JBoss AS 7

after upgrading to JBoss AS 7, suddenly the POST request of the first login page of our application results in a ViewExpiredException. Everything worked fine under JBoss AS 6. Since the classloading ...
0
votes
0answers
275 views

Glassfish 3.1, Conversations, and Exception Handling

I have a webapp that uses conversations profusely. One of the operative requirements was the ability for a single user to have multiple browser windows open, sharing session information, but also ...
0
votes
3answers
1k views

ViewExpiredException in JSF

I am using JSF and have javax.faces.STATE_SAVING_METHOD to client in web.xml. What I want to happen is, when session times out and I try to redirect to another page, it must redirect to ...
0
votes
1answer
2k views

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

When I have javax.faces.application.ViewExpiredException I want to send user to login page. web.xml ... <context-param> ...