1 Reply Latest reply on May 11, 2003 5:42 AM by adrian.brock

    Only 1 MDB

    sysuser1

      I am using jboss version: jboss-3.0.6_tomcat-4.1.18.
      I have deployed a MDB in JBOSS and it works fine, but I only see one instance of it being created. It seems like there is no pool for this MDB. So, my app. server can only service one JMS message at any one time. It is serving all the 10000 messages sequentially with the same MDB instance.

      I have checked the configuration in standardjboss.xml
      and I see

      <container-name>Standard Message Driven Bean</container-name>
      ...
      <container-pool-conf> 100
      </container-pool-conf>

      Any clue? Also, I am having the same problem with stateless session bean.

      Thanks
      Kent

        • 1. Re: Only 1 MDB

          Try adding a
          System.out.println("here");
          to the top of onMessage.

          Your real problem is probably a lock on an
          EntitiyBean instance or something like that.

          Regards,
          Adrian