I am currently using JMS 2.0 with Artemis 1.2.0 in a Java EE 7 application, and I would like to perform some integration tasks with Camel.
Currently, checking the documentation for camel-jms, there is no mention of how to use the common camel JMS component to create and consume messages to any JMS 2.0 compatible browser.
The only example of component documentation is setting up an ActiveMQ factory connection with its specialized ActiveMQ component using Spring DSL. How to set up a connection for Camel JMS to connect to an Artemis instance?
Keep in mind that although Artemis is compatible with ActiveMQ 5.x, Iām going to use the Camel route to publish and subscribe to shared long-lasting topics, so I need to set up an Artemis connection and run it as a publisher and a long-lived subscriber (only supported in JMS 2.0, ActiveMQ only supports JMS 1.1).
Thanks!
source
share