1 Reply Latest reply on Mar 25, 2003 12:00 PM by adrian.brock

    Sharing single JMS across EJBs & JMS-RA?

    paulbandler

      Can many MDB instances share the same JMS connection such that there is just one exception handler invoked to handle communication failure and recovery processing with the link to the (remote) JMS server goes down?

      I had thought that the JCA based JMS-RA would help achieve this but I don't see how this can be as all clients seem to have to obtain and hold their own connection handle (and therefore I assume have separate connection exception handlers)...

        • 1. Re: Sharing single JMS across EJBs & JMS-RA?

          The JCA pooling is done at the session level.
          Each MDB does create its own connection.

          It might be possible to share the connection
          providing the meta data is the same, i.e.
          same JMS provider, same user/password/clientid,
          same xa/non-xa, same dlq handler

          If you are interested in trying to
          implement this, the default implementation is
          org.jboss.ejb.plugins.jms.JMSContainerInvoker
          it is configured using standardjboss.xml or jboss.xml

          Regards,
          Adrian