Accessing the JSF UIViewRoot from a servlet filter??
Julien Martin
Ranch Hand
Joined: Apr 24, 2004
Posts: 383
posted
0
Hello,
I understand it is not possible to set the jsf UIViewroot locale from the servlet filter.
My problem is therefore as follows:
I know which locale the user needs from my servlet filter. How can I communicate to UIviewroot the locale I want from a servlet filter?
Any comment welcome.
Thanks in advance,
J.
Julien Martin
Ranch Hand
Joined: Apr 24, 2004
Posts: 383
posted
0
After some research I came to the conclusion that it is better to use a jsf phase listener instead of a servlet filter to meet my purpose.
J.
The problem with trying this kind of stuff from a Servlet Filter is that the FacesContext is constructed per-request by the FacesServlet. Since Servlet Filters on the inbound side are intended for doing things before the servlet (or JSP) is invoked, FacesServlet hasn't yet begun to construct the FacesContext.
Customer surveys are for companies who didn't pay proper attention to begin with.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.
subject: Accessing the JSF UIViewRoot from a servlet filter??