Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In simple program the login page write with JSF and other page with JSP Login accurate correct and main page is show but link for other page not work and log this:

ERROR:PWC6117 createAccount.jsp not found

I'm sure the path is correct and when press Ctrl intelliJ know it. I use Facelets and this is web.xml file:

<servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
</servlet>
<servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.jsf</url-pattern>
</servlet-mapping>
share|improve this question
Can you show us the link and the JSP source? – Paul Grime Sep 18 '11 at 8:46
sure!this is the link in main page <a href='createAccount.jsp'>Create New Account</a>. when I don't use jsf page all thing is right!please help!it's important for me!thanks very much – siavash90 Sep 18 '11 at 9:13

1 Answer

This error message is typical for embedded Jetty server which is not configured with JSP servlet. You have 2 options to solve this problem:

  • Configure Jetty to serve JSP as well.
  • Do not use JSP. Rename it to .html or .xhtml.
share|improve this answer
thanks very much! but how can Configure Jetty to serve JSP as well??? – siavash90 Sep 18 '11 at 11:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.