3 Replies Latest reply on Jan 22, 2009 6:51 AM by joseberardo

    Concurrent call to conversation on orderingList

    joseberardo

      How can I prevent the "503 Concurrent call to conversation" error when the user done fast clicks to reorder the orderingList?

      Is the new rich:queue the solution?

      My view:

      <rich:orderingList valueChangeListener="#{perguntasAction.ordenarPerguntas}" value="#{perguntasAction.perguntas}" var="_pergunta">
       <s:convertEntity/>
       <rich:column>
       <f:facet name="header">Title</f:facet>
       <h:outputText value="#{_pergunta.titulo}" />
       </rich:column>
       <a4j:support event="onorderchanged" limitToList="true" ajaxSingle="true"/>
      </rich:orderingList>
      


      My bean is in Seam's conversation scope.