Reputation: 1482
I have an app in windows phone marketplace and i have setted the push notifications with the code from http://msdn.microsoft.com/
public MainPage()
{
/// Holds the push channel that is created or found.
HttpNotificationChannel pushChannel;
// The name of our push channel.
string channelName = "ToastSampleChannel";
InitializeComponent();
// Try to find the push channel.
pushChannel = HttpNotificationChannel.Find(channelName);
// If the channel was not found, then create a new connection to the push service.
if (pushChannel == null)
{
pushChannel = new HttpNotificationChannel(channelName);
// Register for all the events before attempting to open the channel.
pushChannel.ChannelUriUpdated += new EventHandler<NotificationChannelUriEventArgs>(PushChannel_ChannelUriUpdated);
pushChannel.ErrorOccurred += new EventHandler<NotificationChannelErrorEventArgs>(PushChannel_ErrorOccurred);
// Register for this notification only if you need to receive the notifications while your application is running.
pushChannel.ShellToastNotificationReceived += new EventHandler<NotificationEventArgs>(PushChannel_ShellToastNotificationReceived);
pushChannel.Open();
// Bind this new channel for toast events.
pushChannel.BindToShellToast();
}
else
{
// The channel was already open, so just register for all the events.
pushChannel.ChannelUriUpdated += new EventHandler<NotificationChannelUriEventArgs>(PushChannel_ChannelUriUpdated);
pushChannel.ErrorOccurred += new EventHandler<NotificationChannelErrorEventArgs>(PushChannel_ErrorOccurred);
// Register for this notification only if you need to receive the notifications while your application is running.
pushChannel.ShellToastNotificationReceived += new EventHandler<NotificationEventArgs>(PushChannel_ShellToastNotificationReceived);
// Display the URI for testing purposes. Normally, the URI would be passed back to your web service at this point.
System.Diagnostics.Debug.WriteLine(pushChannel.ChannelUri.ToString());
MessageBox.Show(String.Format("Channel Uri is {0}",
pushChannel.ChannelUri.ToString()));
}
}
For some time the code was returning the uri, but after 2-3 months was returning null as pushChannel.ChannelUriUpdated never triggered! Can i do something to solve this problem?
Upvotes: 1
Views: 330
Reputation: 3324
You also need to check whether the pushChannel.ChannelUri
is null
and if it is you create a new channel.
Here is the code when pushChannel != null
, in your case this goes into the else
clause:
if (pushChannel.ChannelUri != null)
{
// This is raising my event to signal any subscribers
// that an new channelUri is available
RaiseGotPushUri(pushChannel.ChannelUri);
// Re-register the event handlers
pushChannel.ChannelUriUpdated += PushChannel_ChannelUriUpdated;
pushChannel.ShellToastNotificationReceived += PushChannel_ShellToastNotificationReceived;
pushChannel.ErrorOccurred += PushChannel_ErrorOccurred;
}
else
{
// If we never got the Uri back, unbind and reset everything...
// Dispose of the old channel
pushChannel.ChannelUriUpdated -= PushChannel_ChannelUriUpdated;
pushChannel.ShellToastNotificationReceived -= PushChannel_ShellToastNotificationReceived;
pushChannel.ErrorOccurred -= PushChannel_ErrorOccurred;
if (pushChannel.IsShellToastBound) pushChannel.UnbindToShellToast();
pushChannel.Close();
pushChannel.Dispose();
// ... and re-register the event handlers
pushChannel = new HttpNotificationChannel(channelName);//, _serviceName);
pushChannel.ChannelUriUpdated += PushChannel_ChannelUriUpdated;
pushChannel.ShellToastNotificationReceived += PushChannel_ShellToastNotificationReceived;
pushChannel.ErrorOccurred += PushChannel_ErrorOccurred;
// Ask for a new Uri
pushChannel.Open();
// Set the HttpNotificationChannel to handle the appropriate push notifications
pushChannel.BindToShellToast();
}
Upvotes: 1