Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Azure Service Bus Emulator [closed]

I am developing a WebJob, which uses service bus queue, but I don't have an Azure account.

Does there exist some Service Bus emulator to test the webjob ? I need to take the queue input to simulate the [ServiceBusTrigger]

like image 828
Leandro Tuttini Avatar asked Mar 23 '16 12:03

Leandro Tuttini


People also ask

Is Microsoft Azure Service Bus deprecated?

This package has been deprecated. Please note, a newer package is available at https://nuget.org/packages/Azure.Messaging.ServiceBus as of 11/2020. While this package will continue to receive critical bug fixes, we strongly encourage you to upgrade.

How do I run Azure storage emulator as an administrator?

1. Click Start, point to All Programs, and then click Windows Azure SDK. 2. Right-click on Windows Azure SDK Command Prompt and then click Run as administrator.


1 Answers

As far as I know, there is no Service Bus emulator. A feedback on UserVoice is open at https://feedback.azure.com/forums/216926-service-bus/suggestions/2565564-provide-a-service-bus-emulator-on-a-local-computer and a GitHub issue at https://github.com/Azure/azure-service-bus/issues/223. Don't hesitate to upvote and subscribe to these feedback channels.

However, the Azure Storage Emulator includes an emulator for Azure Storage queues if this can be an alternative: https://azure.microsoft.com/en-us/documentation/articles/storage-use-emulator/

If your run your Web Job code locally, the WebJob trigger might be able to connect to the local Azure Storage Emulator. Please see https://azure.microsoft.com/en-us/documentation/articles/websites-dotnet-webjobs-sdk/#workerrole

like image 129
Benjamin Talmard Avatar answered Oct 03 '22 09:10

Benjamin Talmard