Question

I have a Windows Service that will be constantly waiting for a notification to do work.

All I can find in MSDN is how to set up push notifications for Store apps and mobile devices.

Is there a technology that would allow pushing to a Windows Service from Azure? The Windows Service will be running on Windows 7.

Was it helpful?

Solution

Using push services is not the greatest idea. Its really just meant for mobile and Win* store apps.

Look into using Azure Service Bus.

You could set up a queue and your windows service would just listen to that queue, and when it finds a message relevant to it, it will process it.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top