Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Ive built this sample: http://simonwdixon.wordpress.com/2011/05/08/getting-started-with-rabbitmq-in-dotnet/ , but made 2 programs: one-publisher, another- subscriber. Im using BasicPublish to publish and BasicAck to listen as in example. If i run one publisher and several subscribers-on every "send message" from publisher- only one subscriber gets it. So that there is some order(as subscribers were started) in which publisher sends message to subscribers, and i want to send one message to all subscribers. What is wrong with that sample? May be you can provide working sample of publisher/subscribers message exchange via RabbitMq?

share|improve this question

closed as not constructive by casperOne Mar 15 '12 at 18:12

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

3 Answers

up vote 5 down vote accepted

The example you link to uses simple queueing without an exchange, which ensures that only a single consumer will handle the message. To support pub/sub in RabbitMQ, you need to first create an Exchange, and then have each subscriber bind a Queue on that Exchange. The producer then sends messages to the Exchange, which will publish the message to each Queue that has been bound to it (at least with the simple Fanout exchange type. Routing can be achieved with Direct and Topic exchanges.)

For a Java sample (which could be converted to C# pretty easily) please see here.

share|improve this answer
Just changed that java code to c# and it worked. Thank you. – 0x49D1 May 29 '11 at 10:00

I've added a new tutorial about this http://simonwdixon.wordpress.com/2011/05/19/getting-started-with-rabbitmq-in-net-%E2%80%93-part-3/

share|improve this answer
Thank you - so far your example is the only one I've seen that does asynchronous subscriptions in .NET. Calling Invoke on a delegate seems "retro" - is there a better way? – TrueWill Oct 12 '11 at 16:37

There are also some official sources now.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.