I want to make some kind of agent (windows service maybe) that will run in background on a server on-premises, and expose an endpoint in Azure Service Bus.
I have a worker role in Azure that once a day will send a message to the agent on-premises and the agent will make a web request to an internal service and return some data.
The problem is the agent will run on different customers premises ... how can the worker role send a message to the correct customer agent service and make the call?
I will guess maybe topics and subscriptions will do it?
There are two options for this:
I hope this helps ?