2012-10-05 199 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 

是服務器關閉?我沒有使用任何證書。它變得有必要嗎?

它返回「超時」發送通知或打開一個新頻道!

回答