Do you need to do anything special in the server's configuration in order to get it to recognize a .jspf file? I have a file that I was including in my jsp page with the following code:
<jsp:include page="WEB-INF/inc/content/myPage.jsp" flush="true" />
This works just fine. But when I rename my included file to have the extension of .jspf (see below), everything between my <% %> tags show (e.g. import statements, java scriptlets, etc.).
<jsp:include page="WEB-INF/inc/content/myPage.jspf" flush="true" />
Does anyone have any idea why this is happening? I am using JBoss 4 with tomcat 5.