wcf 数据服务中 android 的推送通知
是否有任何示例代码或项目可用于在 C# 中实现 android 推送通知服务。 我想开发一个数据服务来向 android 手机发送通知,是否有任何 API 或 Helper 类可用于在 c# 中实现 android 推送通知。
is there any sample code or project available for implementing android push notification service in c#.
i want to develope a data service to send notification to android phones is there any API or Helper class available for implementing android push notification in c#.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我几乎可以肯定,WCF,尤其是 WCF 数据服务不是为 PUSH 通知设计的技术 - WCF 服务是为 PULL 场景(= 池化)设计的。唯一的例外是双工 WCF 服务,它会带来很大的复杂性并且不可互操作。 WCF 数据服务基于 REST / OData,不支持 PUSH。
I'm almost sure that WCF and especially WCF data services are not technologies designed for PUSH notifications - WCF services are designed for PULL scenarios (= pooling). The only exception are duplex WCF services which introduce large complexity and are not interoperable. WCF Data Services are based on REST / OData and doesn't support PUSH.
您可以在移动客户端中开发调度服务,以预定义的时间间隔从企业服务器获取数据,而不是将数据推送到移动设备。
Instead of pushing data to the mobile, you may develop a scheduling service in the mobile client that gets data from the enterprise server in a predefined interval.