You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@activemq.apache.org by Kai B <ka...@kewill.com> on 2015/12/15 15:50:08 UTC

Re: JMS to JMS Bridge

I think the solution is simply to create an explicit ConnectionFactory and
set it as the localQueueConnectionFactory on the bridge:

    <bean id="localConnectionFactory"
class="org.apache.activemq.ActiveMQConnectionFactory">
        <property name="brokerURL" value="vm://localhost?create=false" />
        <property name="userName" value="${activemq.username}" />
        <property name="password" value="${activemq.password}" />
    </bean>

...

    <jmsQueueConnector
outboundQueueConnectionFactory="#remoteConnectionFactory"
localQueueConnectionFactory="#localConnectionFactory">
...







--
View this message in context: http://activemq.2283324.n4.nabble.com/JMS-to-JMS-Bridge-tp4679181p4704980.html
Sent from the ActiveMQ - User mailing list archive at Nabble.com.