Is there a way to play with and discover Azure Service Bus on the local emulator without registering to the real Azure Services?
I was following a tutorial on the use of the Azure Service Bus but at a certain point a Namespace
and an Issuer Name
and Key
is required. I don't have that data since I'm not registered to Azure Services and I don't want to do it now (I will get my trial when I will feel ready to develop/test something real).
Unfortunately there is not an emulated Azure Service Bus you can run locally. The Azure Service Bus requires an active Azure Subscription. You will need a trial, MSDN subscription, or pay for a pay-as-you go subscription. The relay itself is extremely cheap -
$0.01 per 10,000 messages
. Dive in and start experimenting with your Azure 90 day trial. If you run out of trial, I'm sure MS would work with you if you could justify the extension.One of the reasons I expect that it doesn't work without a subscription is that the service bus requires Azure ACS for authentication (this is the source of the
Issuer Name
andKey
you are looking for) which also lacks emulation to my knowledge.