2
votes

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?

3

3 Answers

3
votes

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

1
votes

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).

-2
votes

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