I have an embedded device which needs to have an event triggered (sensor) by pressing a button on a website. This device will most often be behind a firewall on a local network.
I have been told that Service Bus Queues is the best way to enable me to send a command to a device behind a firewall.
- Is Service Bus Queues the best option, or should I be looking at other options?
- What protocol/interface is being used? Can this be done via a REST API Interface or do I need to use something like AMQP? I'd prefer REST API if possible as I have this working with Service Bus Event Hubs already.
- Are there any code examples or other resources I can use to learn more about this method and implement it my self?
Any assistance with this requirement is greatly appreciated!