Hello all,
recently i solved my problems with tiles and the tomahawk extensions filter.
It throws the Exception "ExtensionsFilter not correctly configured. JSF
mapping missing...". The Problem is this:
the configuration in the web.xml references
<filter-mapping>
<filter-name>MyFacesExtensionsFilter</filter-name>
<url-pattern>/faces/myFacesExtensionResource/*</url-pattern>
</filter-mapping>
so the servlet mapping MUST contain also a /faces entry:
<servlet-mapping>
<servlet-name>FacesServlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
besides the other entry i have for *.faces:
<servlet-mapping>
<servlet-name>FacesServlet</servlet-name>
<url-pattern>*.faces</url-pattern>
</servlet-mapping>
it is also important to point to the servlet name instead of pointing
directly to an url:
<filter-mapping>
<filter-name>MyFacesExtensionsFilter</filter-name>
<servlet-name>FacesServlet</servlet-name>
</filter-mapping>
I have myfaces core 1.1.3 and tomahawk 1.1.2
Hope this post helps others having the same problem.
Good Luck,
Masiar
--
View this message in context:
http://www.nabble.com/Tiles-ExtensionsFilter-Problem-t1784816.html#a4861111
Sent from the MyFaces - Users forum at Nabble.com.