[jboss-user] [JBoss Seam] - Re: Seam + Portlets + JSF + Facelets problem: Exception in P
andyd
do-not-reply at jboss.com
Fri Sep 15 20:46:04 EDT 2006
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#3972066
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3972066
More information about the jboss-user
mailing list