Questions tagged [wns]

The Windows Push Notification Services (WNS) enables third-party developers to send toast, tile, badge, and raw updates from their own cloud service. This provides a mechanism to deliver new updates to your users in a power-efficient and dependable way.

100 questions
0
votes
0 answers

unable to associate app with windows store for push notification

in order to enable and test windows notification service (WNS) over UWP - windows 10 i have a associate developer account in windows store but when i am trying to choose option by right clicking on windows project and selecting Store -> Associate…
Hunt
  • 8,215
  • 28
  • 116
  • 256
0
votes
1 answer

UWP Push In Foreground and Background

I'm having the following problem with UWP push notifications. Scenario: Foreground registers a background task for push notifications but also wants to be notified of incoming pushes so it gets a channel, updates the server with the channel then…
Justin Horst
  • 201
  • 1
  • 9
0
votes
1 answer

Where can I register for WNS in Windows Developer Center

I want to know how to enable Windows Notification Services for UWP apps.
Rian Finnegan
  • 192
  • 1
  • 8
0
votes
1 answer

UWP PushNotificationTrigger won't trigger background task

I am trying to develop a Windows 10 UWP app that has a background task to be triggered by a Raw Pushnotification trigger. As a test, I also have a handler on the app to see if the Raw Notification is actually pushing properly and it worked. Here…
dreamfly
  • 381
  • 1
  • 4
  • 12
0
votes
1 answer

Registering channel uri with cloud service

According to this video (between times 9:40 and 12:50) https://youtu.be/GwoAjG_tgGQ?t=9m40s The presenter explains how to get the channel uri in Step 1. and then Step 2 is how to register with the cloud service. However I'm not clear about the…
erotavlas
  • 4,274
  • 4
  • 45
  • 104
0
votes
1 answer

CreatePushNotificationChannelForApplicationAsync gets 0x880403E8

Trying Windows Notification Service on the windows 10 desktop. This line gets 0x880403E8 on "Local Machine" but works perfectly on "mobile emulator". var channel = await…
dreamfly
  • 381
  • 1
  • 4
  • 12
0
votes
1 answer

Payload for sending push notifications to Windows 10 (mobile) devices with Azure notifcation hub

What is the payload to send push notification to Windows 10 (mobile) devices without showing a message to the user (silent push)? All i need to deliver within the push is a custom parameter.
0
votes
0 answers

Not receiving push notification for windows native app

I am developing a winrt Windows 8.1 app with PHP services. Using the code given in the link ( https://www.codeproject.com/Articles/1089935/Send-Push-Notifications-to-Windows-Phone-App-Using ) we have developed the push notification service both in…
0
votes
0 answers

Revoke Push Notification

I sent a push notification to a Windows 10 Mobile device via the Windows Push Notification Service. https://msdn.microsoft.com/en-us/windows/uwp/controls-and-patterns/tiles-and-notifications-windows-push-notification-services--wns--overview How can…
mjw
  • 400
  • 4
  • 20
0
votes
1 answer

Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG)) in UWP Background process registration

While trying to register a background task in windows uwp, I am facing the following error at task2.Register(); Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG)) Here is my code: private async void…
yOwrld
  • 3
  • 3
0
votes
1 answer

UWP push notifications without WNS

Is there any way for a LoB UWP app to receive push notifications without using WNS or being registered to the Store, e.g., from a local server?
lcsondes
  • 484
  • 4
  • 16
0
votes
2 answers

How to handle a notification when app is not active?

I am doing push notifications in Windows 10 universal using C# and XAML. Everything is working perfectly. When I receive a notification and the app is running I use this function to do something when the notification comes in. private async void…
0
votes
1 answer

why can't I send WNS toast notification from c# to windows phone 8.1

I have followed these two guides: https://msdn.microsoft.com/en-us/library/windows/apps/hh202945(v=vs.105).aspx https://msdn.microsoft.com/library/windows/apps/xaml/hh868252 The resulting code is the following. Despite it all seems right, it returns…
user2485309
  • 145
  • 1
  • 6
0
votes
1 answer

how to group all toast notifications from one app in windows 10 action center

In window universal apps, using WNS(windows notification service) is there any way to group all toast notifications sent from one app inside the action center just like how all unread whatsapp conversations are shown as one notification in…
0
votes
1 answer

Enable Push Notifications for Enterprise Application

I'm new to Windows Phone 8.1 development. I have developed a Windows app for Windows Phone 8.1 using Visual Studio 2013 and enabled push notifications into it using WNS service, but WNS is only available for Windows Store apps not for enterprise…