Reputation: 3697
Can Azure Service Bus be set up to journal successfully received messages, like MSMQ can? If so, how?
Upvotes: 2
Views: 558
Reputation: 3231
While Azure Service Bus does not explicitly have a Journal sub-queue, this scenario is easily achievable by using a Topic and 2 Subscriptions. Service Bus support publish-subscribe patterns so you can create a Topic and have the same send APIs/semantics as a Queue and then create 2 subscriptions say called "Destination" and "Journal". By default Subscriptions have a TRUE filter so receive all messages sent to a Topic, and you can receive from these subscriptions just as you would from a Queue.
More details are available here: http://www.windowsazure.com/en-us/documentation/articles/service-bus-dotnet-how-to-use-topics-subscriptions/
Upvotes: 1