当前位置: 代码迷 >> Windows Mobile >> 推送通知的异常
  详细解决方案

推送通知的异常

热度:110   发布时间:2016-04-25 07:26:21.0
推送通知的错误
channel.Open();
错误提示“The maximum number of channels have already been opened on this device.  A channel must be removed before a new one can be opened.”
我只在页面的loaded事件中写了一个channel,并且也写了判断处理
channel = HttpNotificationChannel.Find(channelname);
       if (channel == null)
问题可能出在哪里,求解啊

------解决方案--------------------
其他App占用了推送通道。
在手机的设置里把不想用的关了。
好像一个手机只支持15个推送通道。
------解决方案--------------------
引用:
引用:模拟器重启还是这问题?
试过N多次了,ShellToastNotificationReceived和HttpNotificationReceived用一个channel是可以的吧

可以,本来就应该是一个的。

那你把代码发下看看
  相关解决方案