1 Reply Latest reply on Jul 19, 2005 11:07 PM by toeev

    Problem receiving messages from queue/A on a remote host

    toeev

      Hi all,

      I've gone through http://www.jboss.org/wiki/Wiki.jsp?page=HowDoIConfigureAnMDBToTalkToARemoteQueue but my MDB refuses to receive messages when queue/A is on a remote host. My environment is:

      mdbhost - Win XP; JBoss 4.0.1
      queuehost - Win XP; JBoss 4.0.1

      With TRACE enabled on both the mdbhost and queuehost I get no error messages when the MDB is deployed. But when I go to the jmx-console on queuehost there are no receivers listed for queue/A. I can send messages to the queue via a small client but they are not received by the MDB.

      If I change my configuration so the MDB receives messages from queue/A on mdbhost (i.e. MDB and queue/A are in the same JBoss) then everything works fine. When I go to the jmx-console on mdbhost there is a receiver listed for queue/A. I can send messages to the queue via a small client and they are received by the MDB.

      So it seems as though there's something wrong with receiving message from a remote host. Does anyone have some experience with this particular problem? Am I missing some bit of config? Is there a way to determine what's missing?

      Thanks.

      My config files are below:

      remote-jms-ds.xml:

      <server>
       <!-- The JMS provider loader -->
       <mbean code="org.jboss.jms.jndi.JMSProviderLoader" name="jboss.mq:service=JMSProviderLoader,name=RemoteJMSProvider,server=remotehost">
      
       <attribute name="ProviderName">RemoteJMSProvider</attribute>
      
       <attribute name="ProviderAdapterClass">org.jboss.jms.jndi.JNDIProviderAdapter</attribute>
      
       <!-- The queue connection factory -->
       <attribute name="QueueFactoryRef">java:/XAConnectionFactory</attribute>
      
       <!-- The topic factory -->
       <attribute name="TopicFactoryRef">java:/XAConnectionFactory</attribute>
      
       <!-- If I change java.naming.provider.url=localhost:1099 here everything works. -->
       <attribute name="Properties">
       java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
       java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces
       java.naming.provider.url=remotehost:1099
       </attribute>
       </mbean>
      </server>
      


      jboss.xml:
      <jboss>
       <enterprise-beans>
      
       <session>
       </session>
      
       <message-driven>
       <ejb-name>SubscribedToRemoteQueueMDB</ejb-name>
       <destination-jndi-name>queue/A</destination-jndi-name>
       <invoker-bindings>
       <invoker> <invoker-proxy-binding-name>remote-mdb-invoker</invoker-proxy-binding-name>
       </invoker>
       </invoker-bindings>
       </message-driven>
       </enterprise-beans>
      
       <resource-managers>
       </resource-managers>
      
       <invoker-proxy-bindings>
       <invoker-proxy-binding>
       <name>remote-mdb-invoker</name>
       <invoker-mbean>remote-invoker-mbean</invoker-mbean>
       <proxy-factory>org.jboss.ejb.plugins.jms.JMSContainerInvoker</proxy-factory>
       <proxy-factory-config>
       <JMSProviderAdapterJNDI>RemoteJMSProvider</JMSProviderAdapterJNDI>
       <ServerSessionPoolFactoryJNDI>StdJMSPool</ServerSessionPoolFactoryJNDI>
       <MinimumSize>1</MinimumSize>
       <KeepAliveMillis>30000</KeepAliveMillis>
       <MaximumSize>15</MaximumSize>
       <MaxMessages>1</MaxMessages>
       <MDBConfig>
       <ReconnectIntervalSec>10</ReconnectIntervalSec>
       <DLQConfig>
       <DestinationQueue>queue/DLQ</DestinationQueue>
       <MaxTimesRedelivered>10</MaxTimesRedelivered>
       <TimeToLive>0</TimeToLive>
       </DLQConfig>
       </MDBConfig>
       </proxy-factory-config>
       </invoker-proxy-binding>
       </invoker-proxy-bindings>
      </jboss>
      


      ejb-jar.xml:
      <ejb-jar >
       <enterprise-beans>
      
       <session >
       </session>
      
       <message-driven >
       <ejb-name>SubscribedToRemoteTopicMDB</ejb-name>
      
       <ejb-class>com.SubscribedToRemoteTopicMDB</ejb-class>
      
       <transaction-type>Container</transaction-type>
       <acknowledge-mode>Auto-acknowledge</acknowledge-mode>
       <message-driven-destination>
       <destination-type>javax.jms.Queue</destination-type>
       </message-driven-destination>
      
       </message-driven>
       </enterprise-beans>
      
       <assembly-descriptor >
       </assembly-descriptor>
      
      </ejb-jar>
      


      jbossmq-destinations-service.xml:
       <mbean code="org.jboss.mq.server.jmx.Queue"
       name="jboss.mq.destination:service=Queue,name=A">
       <depends optional-attribute-name="DestinationManager">jboss.mq:service=DestinationManager</depends>
       </mbean>
      


      server.log (deploying the MDB):
      15:43:38,453 DEBUG [EjbModule] startService, starting container: SubscribedToRemoteQueueMDB
      15:43:38,453 DEBUG [ServiceController] starting service jboss.j2ee:jndiName=local/SubscribedToRemoteQueueMDB,service=EJB
      15:43:38,453 DEBUG [MessageDrivenContainer] Starting jboss.j2ee:jndiName=local/SubscribedToRemoteQueueMDB,service=EJB
      15:43:38,453 DEBUG [MessageDrivenContainer] Begin java:comp/env for EJB: SubscribedToRemoteQueueMDB
      15:43:38,453 DEBUG [MessageDrivenContainer] TCL: org.jboss.util.loading.DelegatingClassLoader@5b55a9
      15:43:38,453 DEBUG [MessageDrivenContainer] Unable to retrieve orbjavax.management.InstanceNotFoundException: jboss:service=CorbaORB is not registered.
      15:43:38,468 DEBUG [MessageDrivenContainer] End java:comp/env for EJB: SubscribedToRemoteQueueMDB
      15:43:38,468 DEBUG [BaseLocalProxyFactory] SubscribedToRemoteQueueMDB cannot be Bound, doesn't have local and local home interfaces
      15:43:38,468 DEBUG [ServiceController] starting service jboss.j2ee:jndiName=local/SubscribedToRemoteQueueMDB,plugin=pool,service=EJB
      15:43:38,468 DEBUG [MessageDrivenInstancePool] Starting jboss.j2ee:jndiName=local/SubscribedToRemoteQueueMDB,plugin=pool,service=EJB
      15:43:38,468 DEBUG [MessageDrivenInstancePool] Started jboss.j2ee:jndiName=local/SubscribedToRemoteQueueMDB,plugin=pool,service=EJB
      15:43:38,468 DEBUG [ServiceController] Starting dependent components for: jboss.j2ee:jndiName=local/SubscribedToRemoteQueueMDB,plugin=pool,service=EJB dependent components: []
      15:43:38,468 DEBUG [CachedConnectionInterceptor] start called in CachedConnectionInterceptor
      15:43:38,468 DEBUG [ServiceController] starting service jboss.j2ee:binding=remote-mdb-invoker,jndiName=local/SubscribedToRemoteQueueMDB,plugin=invoker,service=EJB
      15:43:38,468 DEBUG [JMSContainerInvoker] Starting jboss.j2ee:binding=remote-mdb-invoker,jndiName=local/SubscribedToRemoteQueueMDB,plugin=invoker,service=EJB
      15:43:38,468 DEBUG [JMSContainerInvoker] Initializing
      15:43:38,468 DEBUG [JMSContainerInvoker] Looking up provider adapter: java:/RemoteJMSProvider
      15:43:38,468 DEBUG [JMSContainerInvoker] Provider adapter: org.jboss.jms.jndi.JNDIProviderAdapter@2d5534
      15:43:38,468 DEBUG [DLQHandler] Creating DLQHandler
      15:43:38,468 DEBUG [DLQHandler] Using factory: org.jboss.mq.SpyXAConnectionFactory@302df5
      15:43:38,468 DEBUG [DLQHandler] Created connection: Connection@15137136[token=ConnectionToken:null/be2130b3ee803b3296585c7ec701419b rcvstate=STOPPED]
      15:43:38,640 DEBUG [SpyDestinationObjectFactory] SpyDestinationObjectFactory->getObjectInstance()
      15:43:38,640 DEBUG [DLQHandler] Using Queue: QUEUE.DLQ
      15:43:38,640 DEBUG [DLQHandler] Created DLQHandler
      15:43:38,640 DEBUG [JMSContainerInvoker] context: javax.naming.InitialContext@7103af
      15:43:38,640 DEBUG [JMSContainerInvoker] jndiSuffix: A
      15:43:38,640 DEBUG [JMSContainerInvoker] Got destination type Queue for SubscribedToRemoteQueueMDB
      15:43:38,640 DEBUG [ConnectionFactoryHelper] using connection factory: org.jboss.mq.SpyXAConnectionFactory@302df5
      15:43:38,640 DEBUG [ConnectionFactoryHelper] using username/password: null/null
      15:43:38,640 DEBUG [ConnectionFactoryHelper] created XAQueueConnection: Connection@27847924[token=ConnectionToken:null/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]
      15:43:38,640 DEBUG [JMSContainerInvoker] Using client id: null
      15:43:38,640 DEBUG [SpyDestinationObjectFactory] SpyDestinationObjectFactory->getObjectInstance()
      15:43:38,640 DEBUG [JMSContainerInvoker] looking up session pool factory: java:/StdJMSPool
      15:43:38,640 DEBUG [StdServerSessionPool] initializing with connection: Connection@27847924[token=ConnectionToken:null/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]
      15:43:38,640 DEBUG [StdServerSession] initializing (pool, session, xaSession, useLocalTX): org.jboss.jms.asf.StdServerSessionPool@b2db5b, SpySession@9336124[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], SpySession@9336124[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], false
      15:43:38,640 DEBUG [StdServerSessionPool] added server session to the pool: org.jboss.jms.asf.StdServerSession@5f33b8
      15:43:38,640 DEBUG [StdServerSessionPool] initializing with connection: Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]
      15:43:38,640 DEBUG [StdServerSession] initializing (pool, session, xaSession, useLocalTX): org.jboss.jms.asf.StdServerSessionPool@b2db5b, SpySession@26294606[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], SpySession@26294606[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], false
      15:43:38,640 DEBUG [StdServerSessionPool] added server session to the pool: org.jboss.jms.asf.StdServerSession@149494e
      15:43:38,640 DEBUG [StdServerSessionPool] initializing with connection: Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]
      15:43:38,640 DEBUG [StdServerSession] initializing (pool, session, xaSession, useLocalTX): org.jboss.jms.asf.StdServerSessionPool@b2db5b, SpySession@13633191[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], SpySession@13633191[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], false
      15:43:38,640 DEBUG [StdServerSessionPool] added server session to the pool: org.jboss.jms.asf.StdServerSession@164f8d4
      15:43:38,640 DEBUG [StdServerSessionPool] initializing with connection: Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]
      15:43:38,640 DEBUG [StdServerSession] initializing (pool, session, xaSession, useLocalTX): org.jboss.jms.asf.StdServerSessionPool@b2db5b, SpySession@15703296[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], SpySession@15703296[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], false
      15:43:38,640 DEBUG [StdServerSessionPool] added server session to the pool: org.jboss.jms.asf.StdServerSession@12c937c
      15:43:38,640 DEBUG [StdServerSessionPool] initializing with connection: Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]
      15:43:38,656 DEBUG [StdServerSession] initializing (pool, session, xaSession, useLocalTX): org.jboss.jms.asf.StdServerSessionPool@b2db5b, SpySession@20778986[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], SpySession@20778986[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], false
      15:43:38,656 DEBUG [StdServerSessionPool] added server session to the pool: org.jboss.jms.asf.StdServerSession@1dffb78
      15:43:38,656 DEBUG [StdServerSessionPool] initializing with connection: Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]
      15:43:38,656 DEBUG [StdServerSession] initializing (pool, session, xaSession, useLocalTX): org.jboss.jms.asf.StdServerSessionPool@b2db5b, SpySession@2968702[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], SpySession@2968702[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], false
      15:43:38,656 DEBUG [StdServerSessionPool] added server session to the pool: org.jboss.jms.asf.StdServerSession@1f920cf
      15:43:38,656 DEBUG [StdServerSessionPool] initializing with connection: Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]
      15:43:38,656 DEBUG [StdServerSession] initializing (pool, session, xaSession, useLocalTX): org.jboss.jms.asf.StdServerSessionPool@b2db5b, SpySession@19401861[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], SpySession@19401861[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], false
      15:43:38,656 DEBUG [StdServerSessionPool] added server session to the pool: org.jboss.jms.asf.StdServerSession@4e229e
      15:43:38,656 DEBUG [StdServerSessionPool] initializing with connection: Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]
      15:43:38,656 DEBUG [StdServerSession] initializing (pool, session, xaSession, useLocalTX): org.jboss.jms.asf.StdServerSessionPool@b2db5b, SpySession@22760265[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], SpySession@22760265[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], false
      15:43:38,656 DEBUG [StdServerSessionPool] added server session to the pool: org.jboss.jms.asf.StdServerSession@abaf8c
      15:43:38,656 DEBUG [StdServerSessionPool] initializing with connection: Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]
      15:43:38,656 DEBUG [StdServerSession] initializing (pool, session, xaSession, useLocalTX): org.jboss.jms.asf.StdServerSessionPool@b2db5b, SpySession@13048832[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], SpySession@13048832[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], false
      15:43:38,656 DEBUG [StdServerSessionPool] added server session to the pool: org.jboss.jms.asf.StdServerSession@1ff8506
      15:43:38,656 DEBUG [StdServerSessionPool] initializing with connection: Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]
      15:43:38,656 DEBUG [StdServerSession] initializing (pool, session, xaSession, useLocalTX): org.jboss.jms.asf.StdServerSessionPool@b2db5b, SpySession@23198941[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], SpySession@23198941[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], false
      15:43:38,656 DEBUG [StdServerSessionPool] added server session to the pool: org.jboss.jms.asf.StdServerSession@20224a
      15:43:38,656 DEBUG [StdServerSessionPool] initializing with connection: Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]
      15:43:38,656 DEBUG [StdServerSession] initializing (pool, session, xaSession, useLocalTX): org.jboss.jms.asf.StdServerSessionPool@b2db5b, SpySession@19413030[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], SpySession@19413030[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], false
      15:43:38,671 DEBUG [StdServerSessionPool] added server session to the pool: org.jboss.jms.asf.StdServerSession@17e7691
      15:43:38,671 DEBUG [StdServerSessionPool] initializing with connection: Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]
      15:43:38,671 DEBUG [StdServerSession] initializing (pool, session, xaSession, useLocalTX): org.jboss.jms.asf.StdServerSessionPool@b2db5b, SpySession@6223775[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], SpySession@6223775[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], false
      15:43:38,671 DEBUG [StdServerSessionPool] added server session to the pool: org.jboss.jms.asf.StdServerSession@d2fb67
      15:43:38,671 DEBUG [StdServerSessionPool] initializing with connection: Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]
      15:43:38,671 DEBUG [StdServerSession] initializing (pool, session, xaSession, useLocalTX): org.jboss.jms.asf.StdServerSessionPool@b2db5b, SpySession@8782613[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], SpySession@8782613[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], false
      15:43:38,671 DEBUG [StdServerSessionPool] added server session to the pool: org.jboss.jms.asf.StdServerSession@346239
      15:43:38,671 DEBUG [StdServerSessionPool] initializing with connection: Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]
      15:43:38,671 DEBUG [StdServerSession] initializing (pool, session, xaSession, useLocalTX): org.jboss.jms.asf.StdServerSessionPool@b2db5b, SpySession@19902060[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], SpySession@19902060[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], false
      15:43:38,671 DEBUG [StdServerSessionPool] added server session to the pool: org.jboss.jms.asf.StdServerSession@1643e4b
      15:43:38,671 DEBUG [StdServerSessionPool] initializing with connection: Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]
      15:43:38,671 DEBUG [StdServerSession] initializing (pool, session, xaSession, useLocalTX): org.jboss.jms.asf.StdServerSessionPool@b2db5b, SpySession@5158001[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], SpySession@5158001[tx=true txid=null XA RUNNING connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]], false
      15:43:38,671 DEBUG [StdServerSessionPool] added server session to the pool: org.jboss.jms.asf.StdServerSession@1286c00
      15:43:38,671 DEBUG [StdServerSessionPool] Server Session pool set up
      15:43:38,671 DEBUG [JMSContainerInvoker] Server session pool: org.jboss.jms.asf.StdServerSessionPool@b2db5b
      15:43:38,671 DEBUG [SecurityManager] No SecurityMetadadata was available for A using default security config
      15:43:38,671 DEBUG [JMSContainerInvoker] Connection consumer: SpyConnectionConsumer[sub=Subscription[subId=-2147483648connection=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df destination=QUEUE.A messageSelector=null Local Create] messages=0 waitingForMessage=false internalThread=Thread[Connection Consumer for dest Subscription[subId=-2147483648connection=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df destination=QUEUE.A messageSelector=null Local Create] id=3,5,jboss] sessionPool=org.jboss.jms.asf.StdServerSessionPool@b2db5b connection=Connection@27847924[token=ConnectionToken:ID:3/810a6142116a436f7942310dd0d9b1df rcvstate=STOPPED]]
      15:43:38,671 DEBUG [JMSContainerInvoker] Initialized with config org.jboss.ejb.plugins.jms.JMSContainerInvoker@cf70f{ maxMessagesNr=1, maxPoolSize=15, reconnectInterval=10000, providerAdapterJNDI=java:/RemoteJMSProvider, serverSessionPoolFactoryJNDI=java:/StdJMSPool, acknowledgeMode=2, isContainerManagedTx=true, isNotSupportedTx=false, useDLQ=true, dlqHandler=org.jboss.ejb.plugins.jms.DLQHandler@1301061{ destinationJNDI=queue/DLQ, maxResent=10, timeToLive=0 }, destinationJNDI=queue/A }
      15:43:38,671 DEBUG [DLQHandler] Starting DLQHandler
      15:43:38,671 DEBUG [DLQHandler] Started DLQHandler
      15:43:38,671 DEBUG [JMSContainerInvoker] Started jboss.j2ee:binding=remote-mdb-invoker,jndiName=local/SubscribedToRemoteQueueMDB,plugin=invoker,service=EJB
      15:43:38,671 DEBUG [ServiceController] Starting dependent components for: jboss.j2ee:binding=remote-mdb-invoker,jndiName=local/SubscribedToRemoteQueueMDB,plugin=invoker,service=EJB dependent components: []
      15:43:38,671 DEBUG [MessageDrivenContainer] Started jboss.j2ee:jndiName=local/SubscribedToRemoteQueueMDB,service=EJB
      15:43:38,671 DEBUG [ServiceController] Starting dependent components for: jboss.j2ee:jndiName=local/SubscribedToRemoteQueueMDB,service=EJB dependent components: []