>... One question I would > have is this. My page has a jsp extension as opposed to a jsf extension. > Will the extensions filter still correctly operate under this condition?
Change the
<filter-mapping>
<filter-name>MyFacesExtensionsFilter</filter-name>
<url-pattern>*.jsf</url-pattern>
</filter-mapping>
to
<filter-mapping>
<filter-name>MyFacesExtensionsFilter</filter-name>
<url-pattern>*.jsp</url-pattern>
</filter-mapping>
as I changed to *.faces
Luiz Carlos Geron

