I've built this sample: Getting Started With RabbitMQ in .net, but made 2 programs:
- one-publisher
- one-subscriber
I'm 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?