I want to use WCF + net.MSMQ, I'm not interested in Azure Service Bus or Azure queue, these things are too expensive and do not meet my requirements for setting up P2P services.
Reliability is also not a problem, the system has a built-in mechanism to check for missing messages - in case of a serious hardware failure.
Given that if I had a service inside the Web / Worker role with the following line of code, this would work, again the reliability of such a local storage:
MessageQueue.Create(newQueuePath, isTransactional)
Will the WCF MSMQ service call be made behind the load balancer from the external / internal endpoint?
source share