문제

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