2012-10-05 201 views
1

使用我已经发布了使用的通知,自今日(和也许明天)将停止工作的应用程序,我不能创建新的链接(新应用程式):推送通知下

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 

是服务器关闭?我没有使用任何证书。它变得有必要吗?

它返回“超时”发送通知或打开一个新频道!

回答