0

I have a HornetQ project on JBoss 6 using JDK-6, and an ActiveMQ project on WildFly 18 using JDK-11. Can I access the HornetQ topic in the ActiveMQ project or vice versa?

Justin Bertram
  • 29,372
  • 4
  • 21
  • 43
Rishi Gautam
  • 1,948
  • 3
  • 21
  • 31

1 Answers1

0

If you're using ActiveMQ Artemis embedded in WildFly 18 then you should be able to connect to it from your HornetQ client because ActiveMQ Artemis is based on the HornetQ code-base and has maintained backwards compatibility with older HornetQ clients.

However, you will not be able to use the ActiveMQ Artemis JMS client to talk to HornetQ.

Justin Bertram
  • 29,372
  • 4
  • 21
  • 43