This appears to be caused by 3 bugs in the header2.jsp of the 3.1.1 starter's kit. The
navigation links are as follows:
| <a href="home.jsp">...</a>
| <a href="admin.jsp">...</a>
| <a href="monitor.jsp">...</a>
|
The problem is that web.xml specifies the following server mapping for the JSF Servlet:
| <servlet-mapping>
| <servlet-name>FacesServlet</servlet-name>
| <url-pattern>/faces/*</url-pattern>
| </servlet-mapping>
|
which means that the FacesServlet won't pick up the hrefs listed. Here's how the
code should read, and after I made these changes, they worked:
| <a href="faces/home.jsp">...</a>
| <a href="faces/admin.jsp">...</a>
| <a href="faces/monitor.jsp">...</a>
|
If there's other information known about this problem, I'd be happy to know.
Thanks,
Brad
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3957489#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...