Please be sure you have the javax.faces.DEFAULT_SUFFIX context-param set in your web.xml file. For most JSP configurations, it would be set to ".jspx", and for most Facelets configurations, it would be set to ".xhtml". Eg:
Code:
<context-param>
<param-name>javax.faces.DEFAULT_SUFFIX</param-name>
<param-value>.jspx</param-value>
</context-param>