我已经使用通知发布了应用程序,从今天(也可能是明天)它停止工作,我无法使用以下方法创建新链接(对于新应用程序):
pushChannel = New HttpNotificationChannel(channelName)
' Register for all the events before attempting to open the channel.
AddHandler pushChannel.ChannelUriUpdated, AddressOf PushChannel_ChannelUriUpdated
AddHandler pushChannel.ErrorOccurred, AddressOf PushChannel_ErrorOccurred
pushChannel.Open()
' Bind this new channel for Tile events.
If Not pushChannel.IsShellToastBound Then
pushChannel.BindToShellToast()
End If
If Not pushChannel.IsShellTileBound Then
pushChannel.BindToShellTile()
End If
服务器是否已关闭?我不使用任何证书。它有必要吗?
返回“超时”以发送通知或打开新频道!
答案 0 :(得分:0)
我不知道您是否有足够的使用量来解决此问题,但每个订阅每天只能推送500个通知。如果你想要了解它,你需要设置一个经过身份验证的Web服务。 请参阅以下内容:
http://msdn.microsoft.com/en-us/library/windowsphone/develop/ff402558(v=vs.92)。
和
http://msdn.microsoft.com/en-us/library/windowsphone/develop/ff941099(v=vs.92).aspx