In the last couple of months, I’ve been busy participating in several national and international events talking about Azure Service Bus EAI/EDI services, or as we now know: BizTalk as PaaS (BizTalk on the cloud). You can find more information here.
There are several tools available in Windows Azure Service Bus EAI & EDI – April 2012 Release provided by Microsoft, so we can quickly and easily test our solutions; two of these tools are MessageReceiver and MessageSender.
With the MessageReceiver tool, we can use it to create our Queue and receive a message:
- MessageReceiver.exe <Your namespace> owner <Your issuer key> <Queue name> Create
The MessageSender tool is used to send messages to a deployed bridge endpoint using HTTP/REST.
- MessageSender.exe <Your namespace> <Your issuer key> <Your endpoint> <Path to sample file> application/xml
📝 One-Minute Brief
This post introduces two essential utility tools for developers working with Azure Service Bus (EAI/EDI Labs). The EAI Bridge Message Sender allows users to easily send messages to Azure Bridges with custom headers, while the Queue Message Receive Tool facilitates the retrieval and inspection of messages from Service Bus Queues. These tools simplify testing and debugging of cloud integration patterns without writing custom code.
Both tools are console applications that you can execute in Windows command line (CMD), which becomes a bit boring if we are constantly testing or making presentations of these features.
Therefore, to facilitate and expedite my presentations, I decided to create this “beautiful” application that joins these two tools and says goodbye to the annoying CMD.
EAI Bridge Message Sender and Queue Message Receive
EAI Bridge Message Sender and Queue Message Receive bring together these two console application tools: MessageReceiver and MessageSender in a single Windows Form Application, easily and fast to use, and where we store our default values (Service Bus namespace, Issuer Name, Issuer Key), so you don’t have to constantly enter this data.
This tool is no longer available.


2 thoughts on “EAI Bridge Message Sender and Queue Message Receive tool”