Hi,
I am able to listen to an Active MQ using "int-jms:message-driven-channel-adapter" and
"org.springframework.jms.connection.CachingConnect ionFactory" by providing the conection factory for Active MQ.
Below is the code:
<int-jms:message-driven-channel-adapter id="jmsList" destination-name="${test.queue.name}"
<bean class="org.springframework.jms.connection.CachingC onnectionFactory" id="conFact">
<constructor-arg ref="amqConFactory" />
</bean>
<amq:connectionFactory id="amqConFactory" brokerURL="${jms.brokerURL}" />
If I want to change from Active MQ to IBM MQ series, what all changes do I need to do? Any pointer will be helpful.
Thanks


Reply With Quote