Hi,
Your Faces Servlet is mapped to *.faces so if you want to map the extension filter to a url pattern you should be able to have this entry:
<filter-mapping>
<filter-name>MyFacesExtensionsFilter</filter-name>
<url-pattern>*.faces</url-pattern>
<url-pattern>*.faces</url-pattern>
</filter-mapping>
Jakob

