1 2 Previous Next 18 Replies Latest reply on Apr 13, 2009 7:23 AM by ilya_shaikovsky

    Seam Conversation Issue with menu (possible)

    tony.herstell1

      Given menu:

      <s:fragment rendered="#{identity.loggedIn and s:hasRole('ADMINISTRATOR')}">
       <td/>
       <td class="menu_item">
       <rich:dropDownMenu styleClass="menu_item_text" selectedLabelClass="menu_selected_item_text"
       itemClass="menu_inner_item" value="#{messages.menu_administration}">
       <rich:menuItem submitMode="ajax" value="#{messages.menu_button_mailing_list_message}"
       action="#{mailingListController.enter}">
       <s:conversationPropagation type="none"/>
       </rich:menuItem>
       <rich:menuItem submitMode="ajax" value="#{messages.menu_button_user_list_message}"
       action="#{userListController.enter}">
       <s:conversationPropagation type="none"/>
       </rich:menuItem>
       </rich:dropDownMenu>
       </td>
       </s:fragment>
      


      conversationProp of none is supposed to suspend the current conversation and then start a new tempory conversation IF you are in a long running conversation.

      What I am seeing, using richMenu, is that I get an error:
      The conversation ended, timed out or was processing another request

      and I am dumped back to the main page...

      keen to see any answer to this...

      Also see:
      http://www.seamframework.org/Community/ConversationQuestion


        1 2 Previous Next