user2995902
user2995902

Reputation: 49

How to use MSMQ in Azure applications

My current example:

Machine A - PRIVATE queue name - AdminQueue
Machine B - PRIVATE queue name - ShippingOrders

I have a console application running in Machine-A which pushes messages to PRIVATE queue (machine B- ShippingOrders)

I have a WCF service application hosted in IIS to consume these messages from "ShippingOrders" and send response back to machine-A's AdminQueue.

Is it possible to consume message from Azure cloud application and send response back to AdminQueue? Is MSMQ available in Azure?

Upvotes: 1

Views: 5586

Answers (1)

Amor
Amor

Reputation: 8491

Is MSMQ available in Azure?

In Azure platform, we could create and use MSMQ on Azure Virtual Machine. You could check following document before using MSMQ on Azure VM.

Guidelines for Running MSMQ in Azure Virtual Machines

After published your application to Azure, I suggest you use Azure Storage Queue or Azure Service Bus Queue instead of MSMQ. Here are the differences between them. You could choose one of them to use.

Storage queues and Service Bus queues - compared and contrasted

Upvotes: 3

Related Questions