1 Reply Latest reply on Jan 12, 2007 11:16 AM by theute

    Unable to determine FaceServlet mapping for servlet path 'nu

    newto23

      Hi,

      I have my Sun JSF war application deployed successfully in my JBoss portal server version 2.4.1 as a portlet.

      But, My portlet comes as a blank page, and I get the following warning message from the Portal Server.

      10:53:39,676 WARN [ViewHandlerImpl] Unable to determine FaceServlet mapping for servlet path 'null'.


      My web.xml file has the JSF configurations as,

      <context-param>
       <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
       <param-value>server</param-value>
       </context-param>
      
       <context-param>
       <param-name>javax.faces.CONFIG_FILES</param-name>
       <param-value>/WEB-INF/faces-config.xml</param-value>
       </context-param>
      
       <listener>
       <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
       </listener>
      
       <!-- Faces Servlet and Mapping -->
       <servlet>
       <servlet-name>Faces Servlet</servlet-name>
       <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
       <load-on-startup> 1 </load-on-startup>
       </servlet>
      
       <servlet-mapping>
       <servlet-name>Faces Servlet</servlet-name>
       <url-pattern>*.jsf</url-pattern>
       </servlet-mapping>


      Please help me to resolve this.

      Thanks.