Azure Mobile Services push notifications channel creation fails after adding Private Networks capability in Windows 8 XAML store app

1

Azure Mobile Services push notifications have been working in my Windows 8 XAML Store app until I needed to access local network resources and had to add the Private Networks (Client & Server) capability. Now the application generates the error below when I try to acquire the push channel

  CurrentChannel =
                await PushNotificationChannelManager.CreatePushNotificationChannelForApplicationAsync();

            CurrentChannel.PushNotificationReceived += CurrentChannel_PushNotificationReceived;

A notification channel request for the provided application identifier is in progress. (Exception from HRESULT: 0x803E0103)

Any idea why I can't acquire the push channel with the Private Networks capability enabled?

Thanks, Mike

windows-8
winrt-xaml
azure-mobile-services
asked on Stack Overflow Jul 26, 2013 by MikeDouglasDev

1 Answer

0

I rebooted my computer and I can no longer reproduce the issue. I waited a few days to answer to make sure it didn't come back but it still working. So rebooting seemed to fix it.

Thanks, Mike

answered on Stack Overflow Jul 31, 2013 by MikeDouglasDev

User contributions licensed under CC BY-SA 3.0