I have spring integration pipeline that should publish a message to an ActiveMQ topic. I'm trying to configure de spring xml file with the following configuration
<bean id="myTopic" class="org.apache.activemq.command.ActiveMQTopic">
<constructor-arg value="topicMQ" />
</bean>
<si:channel id="myChannel" />
<jms:outbound-channel-adapter id="jmsOut" channel="myChannel" destination="myTopic" />
but the message is not published to the topic. Do you have any idea how to configure spring integration to publish a message to a JMS Topic? I'll look forward for your answers. Thank you, Florin