1 Reply Latest reply on May 10, 2011 8:15 AM by greyfairer2

    JMS Bridge from JBoss.4.2.2 to JBoss.6.0.0

    nexus42

      I need to pass jms messages from JBossMQ queue on jboss-4.2.2.GA to hornetq queue on jboss-6.0.0.Final. Both jboss serveres are bound to the same IP. Unfortunately, after reading pretty much anything I could find about hornetq jms bridges I get only following message (even though I'm logging everything down to trace level):

       

      09:35:28,805 WARNING [org.hornetq.jms.bridge.impl.JMSBridgeImpl] Failed to start bridge

      09:35:28,806 WARNING [org.hornetq.jms.bridge.impl.JMSBridgeImpl] Will retry after a pause of 5000 ms

      09:35:33,877 INFO  [org.hornetq.jms.bridge.impl.JMSBridgeImpl] Failed to set up JMS bridge connections. Most probably the source or target servers are unavailable. Will retry after a pause of 5000 ms

       

      Here is my jms-bridge-jboss-beans.xml

       

      <?xml version="1.0" encoding="UTF-8"?>
      
      <deployment xmlns="urn:jboss:bean-deployer:2.0">
      
             <bean name="JMSBridge" class="org.hornetq.jms.bridge.impl.JMSBridgeImpl">
                 <!-- HornetQ must be started before the bridge -->
                 <depends>HornetQServer</depends>
                 <constructor>
                     <!-- Source ConnectionFactory Factory -->
                     <parameter>
                         <inject bean="SourceCFF"/>
                     </parameter>
                     <!-- Target ConnectionFactory Factory -->
                     <parameter>
                         <inject bean="TargetCFF"/>
                     </parameter>
                     <!-- Source DestinationFactory -->
                     <parameter>
                         <inject bean="SourceDestinationFactory"/>
                     </parameter>
                     <!-- Target DestinationFactory -->
                     <parameter>
                         <inject bean="TargetDestinationFactory"/>
                     </parameter>
                     <!-- Source username (no username here) -->
                     <parameter><null /></parameter>
                     <!-- Source password (no password here)-->
                     <parameter><null /></parameter>
                     <!-- Target username (no username here)-->
                     <parameter><null /></parameter>
                     <!-- Target password (no password here)-->
                     <parameter><null /></parameter>
                     <!-- Selector -->
                     <parameter><null /></parameter>
                     <!-- Interval to retry in case of failure (in ms) -->
                     <parameter>5000</parameter>
                     <!-- Maximum number of retries to connect to the source and target -->
                     <parameter>10</parameter>
                     <!-- Quality of service -->
                     <parameter>ONCE_AND_ONLY_ONCE</parameter>
                     <!-- Maximum batch size -->
                     <parameter>1</parameter>
                     <!-- Maximum batch time (-1 means infinite) -->
                     <parameter>-1</parameter>
                     <!-- Subscription name (no subscription name here)-->
                     <parameter><null /></parameter>
                     <!-- client ID  (no client ID here)-->
                     <parameter><null /></parameter>
                     <!-- concatenate JMS messageID to the target's message header -->
                     <parameter>true</parameter>
                     <!-- register the JMS Bridge in the AS MBeanServer -->
                     <parameter>
      
      
                         <inject bean="TheMBeanServer"/>
                     </parameter>
                     <parameter>org.hornetq:service=JMSBridge</parameter>
                 </constructor>
                 <property name="transactionManager">
                     <inject bean="RealTransactionManager"/>
                 </property>
                <!--<property name="transactionManagerLocatorClass">org.hornetq.integration.jboss.tm.JBoss5TransactionManagerLocator</property>
                <property name="transactionManagerLocatorMethod">getTm</property>-->
             </bean>
      
             <!-- SourceCFF describes the ConnectionFactory used to connect to the source destination -->
             <bean name="SourceCFF" class="org.hornetq.jms.bridge.impl.JNDIConnectionFactoryFactory">
                 <constructor>
                     <parameter>
                         <inject bean="SourceJNDI" />
                     </parameter>
                     <parameter>/QueueConnectionFactory</parameter> <!-- I tried also /ConnectionFactory -->
                 </constructor>  
             </bean>
      
             <!-- TargetCFF describes the ConnectionFactory used to connect to the target destination -->
             <bean name="TargetCFF" class="org.hornetq.jms.bridge.impl.JNDIConnectionFactoryFactory">
                 <constructor>
                     <parameter>
                         <inject bean="TargetJNDI" />
                     </parameter>
                     <parameter>/ConnectionFactory</parameter> <!--Sneak-->
                 </constructor>  
             </bean>
      
             <!-- SourceDestinationFactory describes the Destination used as the source -->
             <bean name="SourceDestinationFactory" class="org.hornetq.jms.bridge.impl.JNDIDestinationFactory">
                 <constructor>
                     <parameter>
                         <inject bean="SourceJNDI" />
                     </parameter>
                     <parameter>/queue/StufflerBridgeQueue</parameter>
                 </constructor>  
             </bean>
      
             <!-- TargetDestinationFactory describes the Destination used as the target -->
             <bean name="TargetDestinationFactory" class="org.hornetq.jms.bridge.impl.JNDIDestinationFactory">
                 <constructor>
                     <parameter>
                         <inject bean="TargetJNDI" />
                     </parameter>
                     <parameter>/queue/SneakQueue</parameter>
                 </constructor>  
             </bean>
      
             <!-- JNDI is a Hashtable containing the JNDI properties required -->
             <!-- to connect to the sources and targets JMS resrouces         -->
      
              <!-- TARGA -->
            <bean name="SourceJNDI" class="java.util.Hashtable">
               <constructor class="java.util.Map">
                  <map class="java.util.Hashtable" keyClass="java.lang.String"
                                                   valueClass="java.lang.String">
                     <entry>
                        <key>java.naming.factory.initial</key>
                        <value>org.jnp.interfaces.NamingContextFactory</value>
                     </entry>
                     <entry>
                        <key>java.naming.provider.url</key>
                        <value>jnp://localhost:1799</value>
                     </entry>
                     <entry>
                        <key>java.naming.factory.url.pkgs</key>
                        <value>org.jboss.naming:org.jnp.interfaces</value>
                     </entry>
                     <entry>
                        <key>jnp.timeout</key>
                        <value>5000</value>
                     </entry>
                     <entry>
                        <key>jnp.sotimeout</key>
                        <value>5000</value>
                     </entry>
                  </map>
               </constructor>
            </bean>
      
            <bean name="TargetJNDI" class="java.util.Hashtable">
               <constructor class="java.util.Map">
                  <map class="java.util.Hashtable" keyClass="java.lang.String"
                                                   valueClass="java.lang.String">
                     <entry>
                        <key>java.naming.factory.initial</key>
                        <value>org.jnp.interfaces.NamingContextFactory</value>
                     </entry>
                     <entry>
                        <key>java.naming.provider.url</key>
                        <value>jnp://localhost:1299</value>
                     </entry>
                     <entry>
                        <key>java.naming.factory.url.pkgs</key>
                        <value>org.jboss.naming:org.jnp.interfaces</value>
                     </entry>
                     <entry>
                        <key>jnp.timeout</key>
                        <value>5000</value>
                     </entry>
                     <entry>
                        <key>jnp.sotimeout</key>
                        <value>5000</value>
                     </entry>
                  </map>
               </constructor>
            </bean>
      
            <bean name="TheMBeanServer" class="javax.management.MBeanServer">
               <constructor factoryClass="org.jboss.mx.util.MBeanServerLocator"
                            factoryMethod="locateJBoss"/>
            </bean>
      
      </deployment>
      

       

      I left hornetq-configuration.xml with default values although I'm not sure about the port number:

      <connector name="netty">
           <factory-class>org.hornetq.core.remoting.impl.netty.NettyConnectorFactory</factory-class>
           <param key="host"  value="${jboss.bind.address:localhost}"/>
           <param key="port"  value="${hornetq.remoting.netty.port:5445}"/>
      </connector>
      

       

      When server starts the following message is displayed:

      (HDScanner) replacing ${hornetq.remoting.netty.port:5445} with 5645

      I'm not sure what port shoud I set so that jbossmq could access it...

       

      I added jboss-mq-client.jar to JBoss6 libs and hronetq libs to JBoss4.

      When I change source queue to another JBoss6 instance the jms bridge starts properly.

       

      Any ideas what am I doing wrong?

        • 1. JMS Bridge from JBoss.4.2.2 to JBoss.6.0.0
          greyfairer2

          Hi there,

           

          The JMS Bridge pulls messages from your JBossMQ to the HornetQ. The JBossMQ server does not need to connect to hornetq directly.

          Normally you'll need to use /ConnectionFactory as SourceCFF. You can check using e.g. HermesJMS if the SourceJNDI properties are correct. E.g. are you sure the provider URL is correct for JBossMQ?

           

          Further, if the JMS Bridge is running on the same JBoss instance as the target Queue, you don't need TargetJNDI properties.

           

            <bean name="TargetCFF" class="org.hornetq.jms.bridge.impl.JNDIConnectionFactoryFactory">

              <constructor>

                <parameter><null /></parameter>

                <parameter>/ConnectionFactory</parameter>

              </constructor> 

            </bean>

           

           

            <bean name="TargetDestinationFactory" class="org.hornetq.jms.bridge.impl.JNDIDestinationFactory">

              <constructor>

                <parameter><null/></parameter>

                <parameter>/queue/SneakQueue</parameter>

              </constructor> 

            </bean>