1 2 3 Previous Next 32 Replies Latest reply on Jul 13, 2006 1:04 PM by gavin.king Go to original post
      • 30. Re: Beginning conversations in @Factory methods
        gavin.king

        By "stateless", I don't really mean using a SLSB, I mean using only request-scoped state, and passing state as request parameters (like the blog example does).

        • 31. Re: Beginning conversations in @Factory methods
          iradix

           

          By "stateless", I don't really mean using a SLSB, I mean using only request-scoped state, and passing state as request parameters (like the blog example does).


          I'll check out the blog example, but I'd imagine that does bypass the usage of a DataTable. Seems a shame since at first glance that was one of my favorite JSF features. Any thoughts on using PAGE scope and reattaching the selected object in a method anotated @DataModelSelection?

          Also, I've used the @End(beforeRedirect=true) feature and it works great.... except that in the endConversation(boolean beforeRedirect) method of ConversationInterceptor, you have:

          Manager.instance().endConversation(false)


          rather than

          Manager.instance().endConversation(beforeRedirect)


          After the change it does exactly what I was looking for though so thanks again.

          -Dave

          • 32. Re: Beginning conversations in @Factory methods
            gavin.king

            oops, thanks

            1 2 3 Previous Next