1 Reply Latest reply on Aug 18, 2006 4:40 PM by holyjoe

    Conversations discarded when redirecting

    holyjoe

      I'm using redirect-after-post, and I found that every request starts a new conversation, regardless of join=true on my Begins. Looking at the code for org.jboss.seam.core.Manager, I see a line at the end of restoreConversation() that reads:

      if ( ce.isRemoveAfterRedirect() )
      {
      setLongRunningConversation(false);
      }

      and it seems that later in storeConversation(), that causes the conversation to be ditched.

      How can I get my conversations to not be removed after redirect?

      Also, for my education, what is this flag used for? Why would one ever want to discard conversations this way?

      Thanks.