Hi Everyone, I've got some pages in JSF that the user does not need to be logged in to use, but they are still getting timed out and receiving ViewExpiredExceptions. Is there a good way to make a page independent of the JSF session data? I want users to be able to leave the page open forever and come back and ...
First I have to make my standard disclaimer: Writing your own security system is a Bad Thing. If you want to know more, I can point you to a long list of reasons why. However, JSF already knows about session objects. If you define a JSF backing bean in the faces-config file and give it the scope "session", JSF views can ...