1 Reply Latest reply on May 21, 2004 5:54 AM by adrian.brock

    Session Problems with jboss-3.2.3

    jdenny

      We are using jboss-3.2.3 to deploy our software. We are using stateful and stateless session bean, CMP and BMP beans in our software. The ear file could be deployed successfully and run. Our problem is that when the use access stateful session bean, the server swap some data between different sessions. This occurs after the system have running for a while. We moved our software to jboss-3.0.8_tomcat-4.1.24 and running without any problem. We want to know if we should configure the session in the jboss-3.2.3 to manage the session better. Please help and thanks in advance.

        • 1. Re: Session Problems with jboss-3.2.3

          Your session bean is not implemented correctly.

          In jboss-3.0.x it wasn't as efficient on pooling (it would generally throw away
          instances rather than return them to the pool).

          In jboss-3.2.x it generally returns instances to the pool - unless there is a RuntimeException

          Check your ejbPassivate and ejbRemove are implemented correctly.