Administration tools
Being able to view and administer messages in a production environment is mandatory, especially when things go wrong. Fortunately, there is a tool available named Service Bus Explorer, which allows you to connect to a Service Bus namespace and administer the message entities. It can be downloaded at https://code.msdn.microsoft.com/windowsazure/Service-Bus-Explorer-f2abca5a .
Scenario
In this code sample, we will use our fictitious company Sunny Electricals to add purchase orders received from our website to a Service Bus via a Logic App.
The Service Bus will be configured with two topics-one for purchase orders over $5000 and another topic for orders under $5000 to receive message from the Logic Apps.
Let's go ahead, step by step, to create the necessary artifacts for the Sunny Electricals purchase order solution. We will start with creating a new instance of Azure Service Bus namespace in the Azure Portal.
Log in to Azure portal using your official or personal Azure...