tags:

views:

77

answers:

1

I am trying to use RabbitMQ in my C/C++ app, so far I have realized that using OpenAMQ's C Client is the only option, but OpenAMQ is AMQP 0-9 something and RabbitMQ server is 0-8. I have read somewhere that people were successful to do minor changes to RabbitMQ to make it work with OpenAMQ C lib.. can somebody experienced with this throw some light.

A: 

Look for the libRabbitMQ library as it is just what you need. http://lists.rabbitmq.com/pipermail/rabbitmq-discuss/2010-April/006797.html is about the C API. Go to this Web page hg.rabbitmq.com/rabbitmq-c/ for the code.

John Apps