Windows Phone 8推送通知推送通道始终创建新的通道uri

我想检查我的推送通知实现是否正确。

每次我打开我的应用程序(实际上我只在特定页面上注册推送通道,所以每次我从该页面来回移动)都会创建一个新的推送通道URI,我将其存储在我的移动服务数据库中以发送推送通知。 这对我来说似乎不正确,因为每次打开app / page时都会生成一个新的推送通道URI,因此通道URI列表会随着使用我的应用程序的每个设备而增长和增长。 我假设您创建了一个推送通道,存储通道URI并根据需要推送到它。 我会在这里注意到我正在使用原始推送通知。

我知道推送频道会经常过期,但对我来说,每次我退出应用程序/页面时都会发生这种情况,因此当调用onNavigateTo时,我会找到确实存在的推送频道,并始终创建新的频道URI。 它是否正确?

我的代码如下:

protected override void OnNavigatedTo(NavigationEventArgs e){registerPushChannel(); }

private void registerPushChannel() { // The name of our push channel. string channelName = "RawSampleChannel"; // Try to find the push channel. pushChannel = HttpNotificationChannel.Find(channelName); // If the channel was not found, then create a new connection to the push service. if (pushChannel == null) { pushChannel = new HttpNotificationChannel(channelName); // Register for all the events before attempting to open the channel. pushChannel.ChannelUriUpdated += new EventHandler(PushChannel_ChannelUriUpdated); pushChannel.ErrorOccurred += new EventHandler(PushChannel_ErrorOccurred); pushChannel.HttpNotificationReceived += new EventHandler(PushChannel_HttpNotificationReceived); pushChannel.Open(); } else { // The channel was already open, so just register for all the events. pushChannel.ChannelUriUpdated += new EventHandler(PushChannel_ChannelUriUpdated); pushChannel.ErrorOccurred += new EventHandler(PushChannel_ErrorOccurred); pushChannel.HttpNotificationReceived += new EventHandler(PushChannel_HttpNotificationReceived); // code which passes the new channel URI back to my web service } } protected override void OnNavigatedFrom(NavigationEventArgs e) { pushChannel.Close(); } 

因此,为了澄清,应用程序已打开,推送频道已注册,频道uri已保存在我的网络服务中。 然后,Web服务将通知发送到通道uri。 当我退出应用程序或页面并返回它时,找到了推送通道,但创建了一个新的通道uri,我再次保存到我的Web服务。 我的频道表实际上一直在增长和增长。

那么它应该如何与不断生成的新通道URI一起使用? 这对我来说没什么意义。 我不确定烤面包和磁贴通知是如何工作的,但我认为当应用关闭时通道URI需要是静态的,以便在应用关闭时继续接收通知,但也许这可能是bindtotoast和bindtotile等function我正在做的是正确的,因为它与原始通知有关。

你大部分都做对了。

推送通知是一件有趣的事情。
您创建一个频道,将其发送到您的服务器,然后服务器可以发送直到它失败(频道Uri过期或出现错误)。 此时,应用程序需要创建一个新的ChannelUri,然后在服务器上更新为该应用程序/设备存储的值。 然后,服务器将能够发送通知。

一些重点

  1. 当一个新的频道Uri被请求用于仍然有效的频道时,你将获得相同的频道。
  2. 当您要求新频道uri和当前频道已经过期时,您通常会返回相同的uri,但频道将重新播出。
  3. 如果没有像registerPushChannel方法那样运行代码,就无法知道某个频道是否已在应用中过期。 (除非您在后端跟踪此信息,并且应用程序会查询后端。)
  4. 没有办法告诉应用程序通道已过期,或告诉用户重新打开应用程序以使用推送基础架构重新建立通道连接。

尝试确保频道始终可用的标准方法是在应用启动时检查频道。
这就是你正在做的事情,你可能只是想确保你更新服务器记录而不仅仅是添加更多。