| Author |
Faces page as an index page
|
Hussein Baghdadi
clojure forum advocate
Bartender
Joined: Nov 08, 2003
Posts: 3359
|
|
Hi. My application main page is JSF based. This page is secured with JEE form authentication. A snippet from main.faces Now, I entered the URL in the browser: http://host/app/main.faces I got the authentication form, I filled it. The container forwards the request to main.faces but nothing is displayed. I created a phase listener to run on RESTORE_VIEW event, this listener gets the role from the request and saves it in one of the bean properties. And yes, the bean is session scoped. How to overcome this? Thanks.
|
 |
Tim Holloway
Saloon Keeper
Joined: Jun 25, 2001
Posts: 14487
|
|
My experience with JSF is that the "hello page" mechanism doesn't carry sufficient context to invoke a JSF page. I suppose if I was really ambitious, I'd work out all the details, but in practice, what I do is make my hello page a plain JSP and have it do a redirect to the JSF page. This works even with the extra context rewiring that you get when using a form-based container authentication.
|
Customer surveys are for companies who didn't pay proper attention to begin with.
|
 |
 |
|
|
subject: Faces page as an index page
|
|
|