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?
A:
these are two different messaging systems that are incompatible with each other.
mateuszb
2010-02-15 06:52:25
A:
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
2010-02-15 10:13:35
A:
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
2010-03-01 17:10:36