2

We have C++ Software that needs to send message via RabbitMQ broker, has somebody tried ActiveMQ CPP lib (CMS) to send/receive messages to RabbitMQ broker?

Hacker_PK
  • 247
  • 1
  • 5
  • 6

3 Answers3

3

the CMS API is a generic API for messaging which supports a number of different providers. There's nothing stopping someone implementing the CMS API on top of some AMQP C client library for example.

However since CMS supports Stomp it should be possible to communicate with RabbitMQ as well as pretty much any other JMS provider via StompConnect

James Strachan
  • 9,168
  • 34
  • 31
1

You can expose RabbitMQ using the STOMP protocol. That means that you can interact (consume/produce) with RabbitMQ with clients written in any platform (even using Telnet).

Henryk Konsek
  • 9,016
  • 5
  • 32
  • 41
-2

these are two different messaging systems that are incompatible with each other.

invalidopcode
  • 97
  • 1
  • 7