7 Replies Latest reply on Jun 23, 2008 8:34 AM by alllle

    action in h:commandLink and a:commandLink is not invoked

    alllle

      I have the following lines of code in my view.xhtml file next to each other:



      <s:link view="/view.xhtml" value="Assign" action="#{ims.browseAction.ajaxShowAssignList()}">
          </s:link>
          <br/>
      
          <h:form>
            <h:commandLink action="#{ims.browseAction.ajaxShowAssignList()}">Assign</h:commandLink>
          </h:form>
          <br/>
      




      ims.browseAction is a Stateless scope component. The action method ajaxShowAssignList() is invoked when the first link is clicked, while it is not for the second link. Same behavior for the a:commandLink from the RichFaces.


      There is no output from the h:messages and there is no error in the log file or console. I also tried it without surrounding <h:form> tag and it's the same.


      I have no idea why the method is not invoked. I don't know where to start to debug this problem since the code to handle invoking the action method is deeply embedded in the SEAM library.


      Please help, thanks.