|
Well, the conversation context is only active during a servlet request (and not during HttpSessionListener.sessionDestroyed() notification). So you should not invoke a conversation scoped bean in the @PreDestroy method of another conversation scoped bean. However, you should get ContextNotActiveException instead of that IllegalStateException.
|