I'm creating an app in WPF and using Xaml Islands to add UWP look and feel to it.
I'd like to receive push notifications from Amazon SNS, using the Windows Push Notification Services (WNS). Following this article to create a notification channel, I tried to run the this code:
await PushNotificationChannelManager.CreatePushNotificationChannelForApplicationAsync();
But it failed with the following very verbose exception: Element not found. (0x80070490)
. I tried also to run it in a custom UWP component, but the result was the same.
So, my question is that, is it possible to receive push notifications from WNS with this kind of app type?