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.

有帮助吗?

解决方案

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.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top