WPF / WCF Push Notification

后端 未结 2 898
别那么骄傲
别那么骄傲 2020-12-30 06:16

Does .NET 3.5 (WCF, or other) offer any type of push notification service?


I have a server and a client. I want a service to run on the server and if x happens

2条回答
  •  悲&欢浪女
    2020-12-30 06:26

    You don't need to use any call backs. You can use MSMQ with WCF. You can use the attached example I have made. If you sent it to be a public push server - i.e available via WebService - you will have to add a webservice that will use the MSMQ. The problem is that you will need to have an IIS installed on both the server and the client. If you use it internally then MSMQ will be enough. http://www.codeproject.com/KB/WCF/WcfMsmqServerPush.aspx

提交回复
热议问题