我已经使用通知发布了应用程序,并且从今天(也许明天)开始它停止工作,我无法使用以下方法创建新链接(用于新应用程序):
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
服务器宕机了吗?我不使用任何证书。有必要吗?
它返回“超时”以发送通知或打开新频道!