1 Reply Latest reply on Jul 4, 2009 6:48 PM by holgerprause

    starting separate conversation in one page

      Hello,


      I want always to start a new conversation when a action is called.
      I found no way to do this.


      Its important that the conversations are not nested so they are independent from each other.
      Is something like this possible or do i need a parent conversation and nest my conversations.


      Thx very much,
      Bye

        • 1. Re: starting separate conversation in one page

          Ok i got i with some thinking.


          1)annotate the action method(s) with


          @Begin


          to tell seam to turn your temporary conversation into a long running conversation for each of your request





          Then in jsf turn proagation to none and each request will spawn a separate long running conversation.




          <s:conversationPropagation type="none">
          </s:conversationPropagation>




          Seems to work for me - any mistunderstanding i have (to the seam experts)?