Ok, found the problem. The template.xhtml file contains
<h:form>
Welcome #{user.name}
| <h:outputLink value="main.seam">Search</h:outputLink>
| <h:outputLink
value="password.seam">Settings</h:outputLink>
| <h:commandLink
action="#{logout.logout}">Logout</h:commandLink>
</h:form>
this needs to change to
<h:form>
Welcome #{user.name}
| <h:outputLink value="/main.seam">Search</h:outputLink>
| <h:outputLink
value="/password.seam">Settings</h:outputLink>
| <h:commandLink
action="#{logout.logout}">Logout</h:commandLink>
</h:form>
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3972066#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...