将 Microsoft 推送通知服务与 Windows Phone 结合使用
我正在考虑使用 Microsoft 推送通知服务
在 Window Phone 中创建一个简单的聊天应用程序。
我在 http://msdn 阅读了指南.microsoft.com/en-us/library/hh202967(v=VS.92).aspx 其中讨论了创建接收 Toast 通知的客户端应用程序。
这是我第一次开发移动应用程序,所以我不了解其中的一部分。
我的问题是,客户端(窗口电话)是否可以直接向其他客户端发送 toast
通知?我从 网络.看来我需要有云应用程序(可能是网络服务器?)来使用通知服务。
是否可以构建一个直接请求 MPNS 向其他 Windows Phone 应用程序发送通知的 Windows Phone 应用程序? (所以从上图中,“2”将直接指向微软推送通知服务)
如果不是,原因是什么?
I am thinking of a simple chat application in Window Phone using Microsoft Push Notification Service
.
I read a guide at http://msdn.microsoft.com/en-us/library/hh202967(v=VS.92).aspx which talks about creating a client application that receive toast notification.
This is a first time for me to develop a mobile application so I do not get some part of it.
The question that I have is, is it possible for a client (window phone) to send toast
notification directly to other client? I have found below image from the web. It seems that I need to have Cloud Application(probably webserver?) to play with notification service.
Would it be possible to build a Window phone application that directly request to MPNS to send notification to other window phone application? (so from the picture above, '2' will directly point to Microsoft Push Notification Service)
If it is not, what is the reason for that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对推送通知服务有很好的解释 这里。
来自上面的链接。
在您的情况下,您需要在设备之间进行通信,然后才能发送任何通知。这是为了知道你手机的uri。服务器必须为所有注册通知的设备存储这些 uri。这就是为什么您需要一个将 xml 发送到 MPNS 的应用程序。
There is a good explanation of the push notification service here.
From the above link.
In your case you'll need communication between your devices before any notifications can be sent. This is to know the uri of your phone. A server has to store these uris for all devices registered for notifications. This is why you'll need an application which sends the xml to the MPNS.