Questions tagged [facesservlet]

`FacesServlet` is a servlet that manages the request processing lifecycle for web applications that are utilizing JavaServer Faces (JSF) to construct the user interface.

FacesServlet is a servlet that manages the request processing lifecycle for web applications that are utilizing JavaServer Faces (JSF) to construct the user interface.

20 questions
0
votes
1 answer

PWC1232: Exceeded maximum depth for nested request dispatches: 20 at org.apache.catalina.core.ApplicationDispatcher.doInvoke

I am using jsf 2.1 (mojara) with glassfish 3.1 , and my web .xml looks like : NewFile.xhtml Faces Servlet
Pratik Kar
  • 31
  • 10
0
votes
0 answers

How To Get Around FacesContext Being Null In Seperate Servlet - JSF

I am trying to internationalize my web application, so I am using a ResourceBundle and dynamically changing the locale using: FacesContext.getCurrentInstance() .getViewRoot().setLocale(locale); Which worked fine at first. But I am…
Jakeway
  • 241
  • 1
  • 2
  • 10
0
votes
1 answer

Java EE - Show page based on internal business logic

I'm implementing an enterprise application with Java EE on Glassfish server. I need to my application to execute some logic to show the proper output for a specific subset of URLs. Problem description: My web pages folder has this structure: Web…
sofask
  • 47
  • 8
0
votes
2 answers

Glassfish - Marking servlet FacesServlet as unavailable

When I startup my Glassfish 2.1 server, it seems to startup without problems, but when I try to access its Admin console I get the error: The requested resource (Servlet FacesServlet is not available) is not available. On its console and…
Henrique Ordine
  • 3,337
  • 4
  • 44
  • 70
0
votes
1 answer

decouple the page name from the file name in jsf web.xml

I would like the page generic.xhtml to be served in response to requests for specific1.xhtml, specific2.xhtml, etc... Is there some way to set up web.xml so that several requests map to a single file without doing a redirect? The specific.xhtml…
drawnonward
  • 53,459
  • 16
  • 107
  • 112
1
2