An exception type that is commonly thrown by the JavaServer Faces (JSF) framework

learn more… | top users | synonyms

0
votes
1answer
75 views

Unexpected error forwarding or redirecting to login page

I have a JSF app running on GlassFish 3.1.2.2 with Mojarra 2.1.21 and OmniFaces 1.4.1 to handle Ajax errors. The app has both protected and public areas, using form-based-authentication (on a JSF ...
0
votes
1answer
74 views

Difference between Session Expired and ViewExpiredException

I've come across many solutions for the two 'huge' problems Session Expired ViewExpiredException My Question: What is the difference between them? I'm using WAS and I observed Restarting the ...
0
votes
1answer
71 views

NullPointerException while resolving navigation case on a ViewExpiredException

I've created a custom exception handler which should navigate to a specific view on a ViewExpiredException. ExceptionQueuedEventContext context = (ExceptionQueuedEventContext) event.getSource(); ...
1
vote
1answer
163 views

JSF 2.1 + CDI handling ActionEvent throws ViewExpiredException

I'am trying to run simple example of my web app. I'am using JSF + CDI bean. My facelet: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...
0
votes
1answer
219 views

Websphere Portal JSF 2 session timeout page with button when clicked causes View Expired Exception

I'm using Websphere Portal 8 with Primefaces 3.5. The requirement is that when the session times out, the user is redirected to a session timeout page which has a button on it that when clicked takes ...
0
votes
1answer
219 views

How to handle ViewExpiredException by showing JavaScript alert?

I've read the question Handle ViewExireException/ajax and display a Primefaces dialog and the answer from BalusC. I'd want to handle the ViewExpiredException by showing the alert with information to ...
2
votes
1answer
405 views

Handling ViewExpiredException (JSF 2.1, Seam2 , Primefaces 3.4.1, Omnifaces 1.3)

I am having terrible problems trying to handle ViewexpiredException correctly using the frameworks JSF 2.1, Seam 2.3, Primefaces 3.4.1, Omnifaces 1.3. Here you can see a full explanation of my ...
0
votes
2answers
738 views

Handle ViewExireException/ajax and display a Primefaces dialog

I don't redirect or forward my user to another page. So when the my SessionExpiredExceptionHandler (extends ExceptionHandlerWrapper) handles the ViewExireException. I want the user to stay on the same ...
0
votes
0answers
167 views

Glassfish Server Session invalidate

I have deployed my web application on Glashfish 3.2.1. I have set the session timeout to be 30 minutes in the web.xml. My application has a login page and once this user is authenticated(password ...
0
votes
0answers
143 views

viewExpiredException after login JSF2

I'm using jboss as7.1 web server, and I built an application in Java, with Eclipse Indigo, using JSF 2 (Mojarra). When I execute locally the application, on my pc, there aren't errors. When, instead, ...
-3
votes
1answer
262 views

ViewExpiredException not thrown on ajax request if JSF page is protected by j_security_check - Follow up

ViewExpiredException not thrown on ajax request if JSF page is protected by j_security_check provides the solution when the login page is the JSF page. But what if the login page is a JSP page? I ...
0
votes
0answers
111 views

Getting View Expired Exception during Perfromance test[RPT]

I am getting following error while Performance testing of my application. javax.faces.application.ViewExpiredException`. No saved view state could be found for the view identifier. I am using ...
0
votes
0answers
107 views

JSF2.0 NPE on RenderResponsePhase when session is expired (viewRoot is null)

My application uses JSF 2.0.6 and RichFaces 4.1.0. I implemented an ExceptionHandler which normally displays all exception in popup windows, and is working fine. But something goes wrong when I ...
1
vote
1answer
250 views

ViewExpiredException - why different behaviour?

I have a JSF 2 application and configured the following in web.xml: <error-page> <exception-type>javax.faces.application.ViewExpiredException</exception-type> ...
0
votes
0answers
225 views

Testing a JSF Application with JMeter

I am a trying to execute a test script for a JSF application. I have followed the steps in from the below link: wiki.apache.org/myfaces/PerformanceTestingWithJMeter My script is navigating through 5 ...
2
votes
1answer
1k views

Object doesn't support this property or method with primefaces omnifaces timeout combination

Setup: JSF, PrimeFaces 3.2, Omnifaces 1.1, JBoss AS 7.1.1, Final, Mojarra 2.1.7 I have a simple page (listed below) and I have set up omnifaces to deal with ViewExpiredExceptions for ajax calls. When ...
1
vote
2answers
346 views

Can you POST to JSF2 page with an expired session?

I have been using JSF1.2 for login pages. If the user sits on the login page for too long (timeout situatation) and then tries to enter the id and password it fails with ViewExpired error (even ...
0
votes
1answer
218 views

rich:fileUpload ViewExpiredException

Im using rich:fileUpload: <rich:fileUpload id="upload" addLabel="Add File" clearAllLabel="Delete Files" deleteLabel="Remove" uploadLabel="Process Fle" doneLabel="Processed file" ...
2
votes
1answer
1k views

ViewExpiredException not thrown on ajax request if JSF page is protected by j_security_check

I have a JSF page which is not protected by j_security_check. I perform the following steps: Open the JSF page in a browser. Restart the server. Click a command button on the JSF page to initiate ...
1
vote
1answer
649 views

Simple jsf2.0 application : javax.faces.application.ViewExpiredException View could not be restored

In a simple jsf2.0 application,I am getting this exception :javax.faces.application.ViewExpiredException View could not be restored. In console I am getting following error: ...
1
vote
1answer
403 views

Handling ViewExpiredException on login page using a custom ViewHandler

In my web app, when the session expires and a user initiates a request (full page or AJAX), the user is redirected to the login page with a message that the session expired. The problem is, when the ...
0
votes
1answer
414 views

javax.faces.application.ViewExpiredException: During load test

We are Using SUN JSF 1.2, WebSphere 7.0 for our application, we are getting ViewExpiredException only during the load testing I have gone through the below link ...
3
votes
3answers
8k views

Session timeout and ViewExpiredException handling on JSF/PrimeFaces ajax request

I find this article to be useful for non-ajax request How to handle session expiration and ViewExpiredException in JSF 2? but I can't make use of this when I am submitting using an AJAX call. Suppose ...
0
votes
1answer
287 views

define error pages location jsf 2

I am trying to redirect my user to the login page when the session expires. I followed the instructions on this link how to handle session expiration in JSF 2.0? and it works, except for the fact that ...
0
votes
2answers
895 views

ViewExpiredException in landing page of a JSF application

I have an application built using JSF1.2. I have a home page which has a set of command links. After I deploy the application , when open the home page and click on any of these menu links - I get the ...
0
votes
0answers
433 views

JSF 2.0; Navigation between ViewScope and RequestScrope throws ViewExpiredException

I've got two pages on my JSF application. page1 is requestscoped and has a form on its site page2 is viewscoped and shows the values from page1 which are entered From page1 to page2 i'm using ...
0
votes
1answer
282 views

Login required twice after logging out due to ViewExpiredException

I have a JSF page on Websphere Process Server (on top of WAS 7) which has ViewExpiredException. When this happens I want the user to be logged out and then logged back in I've set up a redirect on ...
1
vote
0answers
389 views

jsf viewexpiredexception faces-redirect not working

I have a filter that if the session has expired and the method is POST, then adds the faces-redirect param to the url and makes the browswer not to cache the page, in order to avoid the ...
1
vote
2answers
2k 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 ...
0
votes
1answer
879 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
1answer
1k 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
160 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
1k 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. ...
2
votes
2answers
287 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
0answers
388 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 ...
2
votes
1answer
4k 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 ...
1
vote
1answer
606 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 ...
3
votes
2answers
4k 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 ...
0
votes
2answers
555 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]] ...
1
vote
1answer
2k 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 ...
0
votes
2answers
3k 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 ...
2
votes
1answer
683 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
761 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 ...
0
votes
1answer
345 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 ...
2
votes
1answer
1k 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
979 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
1k 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> ...
4
votes
2answers
2k 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 ...
2
votes
1answer
1k views

Preventing ViewExpiredException when clicking broswer back button after session invalidation

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 am trying to do the same with JSF (based on this question: ...
3
votes
1answer
2k 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 2