0 Replies Latest reply on Feb 12, 2008 2:05 PM by reind

    Custom Servlet and Conversation Propagation

    reind

      I have a custom servlet in my application where I'd like the conversation to span the whole session.

      I want all my entities managed for the duration of the http session. I'd use @PersistenceContext(EXTENDED), but this would only work if I merged all entity references that I got from other seam components (which use the SMPC).

      I'd also prefer to avoid having to manage a 'cid' request parameter. Is there anyway I can tie a conversation to a session variable? Or would I be better off using another approach?