"gavin.king(a)jboss.com" wrote : You have to go to URL of the form:
|
|
http://localhost:8080/myapp/foo.jsf
|
| Not:
|
|
http://localhost:8080/myapp/foo.jsp
|
| This is a standard JSF thing.
|
Why must I use:
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.jsf</url-pattern>
</servlet-mapping>
can't I just define:
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
and reference
http://localhost:8080/myapp/faces/foo.jsp
I have it with /faces/* and I get this error
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3980839#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...