commandlink « Page « JSF Q&A





1. JSF commandLink not working on redirected error page    stackoverflow.com

I'm redirecting all exceptions to a simple error page with the following entry in my web.xml file:

<error-page>
  <exception-type>java.lang.Exception</exception-type>
  <location>/error.xhtml</location>
</error-page>
My error page contains:
<ice:form id="errorForm">
  <ice:outputText value="#{guiProps.UnknownError}"/><br/><br/>
  Click <ice:outputLink ...

4. h:commandLink and page Navigation    coderanch.com