On 8/10/06, Sköldheimer Fredrik <[EMAIL PROTECTED]> wrote:
<!-- extension mapping for adding <script/>, <link/>, and other resource tags to
JSF-pages -->
<filter-mapping>
<filter-name>MyFacesExtensionsFilter</filter-name>
<!-- servlet-name must match the name of your javax.faces.webapp.FacesServlet
entry -->
<servlet-name>Faces Servlet</servlet-name>
</filter-mapping>
<servlet-mapping>
<servlet-name>FacesServlet</servlet-name>
<url-pattern>*.jsf</url-pattern>
</servlet-mapping>
Feels like I'm missing something important. But what?
To quote the comment above -- "servlet-name must match the name of
your javax.faces.webapp.FacesServlet entry"
You have "Faces Servlet" with a space for the filter and
"FacesServlet" without a space for the servlet.