Hi, Class Conversation uses a thread-local variable to store the "current conversation". Thread-locals are pretty tricky to manage in a container environment; they need to be cleared at the end of each request as the same thread will be reused by the container.
Would storing this value in request scope be acceptable instead? Regards, Simon
