0 Replies Latest reply on Apr 16, 2008 12:39 AM by norad2

    Session bean interaction

    norad2

      I have a page that needs to call two actions from two seperate session beans.


      
      <s:link value="#{eachAddress.addressName}" 
      
              id="displaySpecificAddressLink"
      
             action="#{AddressesHome.selectAddress(eachAddress)}"/>
      
      



      AddressesHome.selectAddress(eachAddress)} is one method, I also have an @Factory generated list that needs to be repopulated based on the selected address. (There are reasons this is not combined into one session bean)



      Is there a way for me to reference the second method from the first (Since I cant make them static).


      Is there a way to call 2 actions from the JSF?