Questions tagged [mpns]

Microsoft Push Notification Service is a service for Windows Phone which provides a resilient, dedicated, and persistent channel to send data to a Windows Phone app.

Microsoft Push Notification Service (MPNS) is a service for Windows Phone which provides a resilient, dedicated, and persistent channel to send data to a Windows Phone app.

The general flow of the service :

  1. An app requests a push notification URI from the Microsoft Push Notification Service (MPNS).

  2. The app sends the notification URI to a 3rd party server.

  3. The 3rd party server uses the notification URI to send a push notification to MPNS.

  4. MPNS routes the push notification to the app.

There are three types of push notifications that can be sent to a Windows Phone app :

  1. Toast Notification - Displays a toast notification if the app is not running. Tapping on that notification launches the app.

  2. Tile Notification - Visually updates the app's tile.

  3. Raw Notification - Delivers raw data to the app. Available only when the app in already running.

Microsoft Push Notification Service (MPNS) Documentation.

221 questions
0
votes
1 answer

push notifications in Windows Phone

I've implement a Project to send push notifications to a Windows phone application. The notification coming succesfully in the emulator or i'm running the app to send to a different emulator and the app to receive to another emulator and it Works…
Ruby Kousinovali
  • 337
  • 2
  • 20
0
votes
1 answer

IconicTile not getting updated in windows phone 8.0

I have defined IconicTile Template as default tile for my Application. Now I wish to update my tile with the notification count. So I have sent following parameters for the…
pratpor
  • 1,954
  • 1
  • 27
  • 46
0
votes
1 answer

Send IconicTile Notification in Windows Phone

I am trying to send Iconic Tile Notification from Server to Client using node2dm. Node2dm provides us with 'mpns' module which I am using to send Messages. I want my notification to look like the first tile in the image and not like the second…
pratpor
  • 1,954
  • 1
  • 27
  • 46
0
votes
1 answer

How to delete or workaround the wrong MPN certificates from my WP dev account

I have uploaded the wrong MPN certificates to my WP dev account at https://dev.windowsphone.com/en-us/Account/Certificates. Is there any way to fix this issue by deleting or workaround the WRONG MPN certificates? Microsoft guys told me that there is…
0
votes
1 answer

Payload error while using PHP to update live tiles windows phone 8

I'm having problems updating my live tiles using PHP via Push Notifications. For normal Toast Message there wasn't any error. But when I tried using the same coding, and change the phone target as well as the notification class. I got a payload…
Osirus
  • 264
  • 1
  • 2
  • 15
0
votes
1 answer

wp8 Handle raw push notification in more than one pages

I am developing a wp8 application and the need is the above: My server sends some raw push notifications that i can handle in my mainpage successful. But i have more pages so i need my app continue to get and handle notifications when the user is on…
kostas ch.
  • 1,960
  • 1
  • 17
  • 30
0
votes
1 answer

Phonegap Build. Windows Phone Push Notification Support

im currently using https://build.phonegap.com/plugins/324 plugin but it has no support for windows phone. is there any plugin out there that can be used in conjuction with phonegap build that supports notifications in windows?
0
votes
1 answer

Getting exception when creating HttpNotificationChannel, but works correctly when debugging step-by-step

I use the following code to create a push notification channel. The problem is that when I execute the code, most of the times (not always), this function throws System.NullReferenceException. However, if I set a breakpoint and debug it step by…
anderZubi
  • 6,414
  • 5
  • 37
  • 67
0
votes
2 answers

ShellToastNotificationReceived unable to change UI

I have registered for Push Notification services on my WP 8 App. when my app running on Background As Toast notification got it Update not only MVVM but also the View (UI) on the other hand of this when my app running in foreground As Toast…
Rehan Parvez
  • 143
  • 2
  • 17
0
votes
1 answer

Windows Phone Push Notifications without a web service

I'm planning to develop windows phone app which can send my PC clipboard to the phone. I want to use push notifications for this. I found this paragraph on the msdn windows phone documentation library After your Windows Phone client app has…
roryok
  • 9,325
  • 17
  • 71
  • 138
0
votes
1 answer

how to check if device is registered for windows phone push notification

I am using notification hub to register my windows phone device for push notification service.Once if I register my device and again if I register my device for push notification I am getting two notifications means a single device is registering…
Kuldeep Singh
  • 517
  • 6
  • 26
0
votes
1 answer

Notification on Lock Screen triggered by (remote) Push Notification?

is it possible to display something on the Windows Phone Lock Screen triggered by a push notification? According to this graphic, I understand that's it's only possible via local notifications, or am I getting something wrong? I would like my app to…
swalkner
  • 16,679
  • 31
  • 123
  • 210
0
votes
0 answers

Windows Phone notifications force device uri update

I have a question about Push Notifications. As far as I know, when the App starts, it checks if exists a push channel and, if not, it creates a new channel. Also there is an event which starts when the uri is changed. And this Uri gets expired after…
programmer23
  • 533
  • 4
  • 15
0
votes
1 answer

Registering on No-quota push notifications

On my WP8 app, I followed instructions from here to register on push notifications service MPNS.: HttpNotificationChannel pushChannel; // The name of our push channel = the CN from certificate string channelName = "CN-from-cert"; However, channel…
user969153
  • 568
  • 8
  • 25
0
votes
1 answer

Action="Clear" in windows phone push notification

I don't understand well the goal of Action="Clear" when sending XML to WP notification server. Example :
Christopher-BZC
  • 155
  • 1
  • 7