I'm new to Azure Service Bus and have created successful pocs for creating a topic and a separate subscriber application to receive its message.
Based on this article, I quote: "A topic can have up to 2,000 subscriptions associated with it, each of which gets independent copies of all messages sent to the topic. One or more subscribers can independently subscribe to a subscription and compete for messages from it."
http://convective.wordpress.com/2011/06/08/windows-azure-appfabric-service-bus-queues-and-topics/
What I'm interested to do is to expand this for multiple applications to independently subscribe to the same topic, but not compete for them.
My current poc has one sender and two separate applications subscribed to the same topic and subscription. The behavior that I'm seeing is that if I post one message from the sender, either one of the two running subscribing applications will receive it; but not the other.
My question is if multiple, independent applications can receive the same topic message? Any advice would be greatly appreciated!