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

Will Windows phone still receive notifications once app is un-installed

If an app registers for Push notifications on a Windows Phone 8. Later if the user un-installs the app will he/she still continue to receive notifications for the same app? Thanks!
user1122549
  • 664
  • 1
  • 13
  • 27
0
votes
2 answers

Null Exception in Azure Mobile service channel

I am doing the push notification tutorial on windows phone. At start there is no problem with pushing the notifications. However, after a few days I opened back the coding and got this error : System.NullReferenceException was unhandled by user…
0
votes
1 answer

Alert me Windows Phone Push Notifications In Azure Mobile Service

Basically my understanding of push notifications is that they can change tiles and display a message to the user when the app is closed. What I would like to know is if its the right way to go as the main control method in a turn based mobile game?…
john
  • 157
  • 1
  • 12
0
votes
1 answer

Is there way to handle Tile Notification Recieved in Windows Phone 8?

Now we can handle Raw and Toast notification revcieved event via: _httpChannel.HttpNotificationReceived += new EventHandler(httpChannel_HttpNotificationReceived); _httpChannel.ShellToastNotificationReceived…
airbai
  • 3,906
  • 5
  • 26
  • 30
0
votes
1 answer

how to tell the notification status of window phone MPNS

when send notification to window phone via mpns, it often response with http header "X-DeviceConnectionStatus=Inactive"! what happened in the window phone making mpns response like this? should i send the notification again?
user1556497
  • 125
  • 2
  • 6
0
votes
1 answer

Azure Mobile Services Toast Notification

Any ideas on why I can't see the toast notification in any phone? I can successfully receive and see the tile flip notifications but not for toast. In the logs I can see the toast as received status, I'm using a script to send the notification. And…
Keoz
  • 394
  • 2
  • 16
0
votes
1 answer

How to run some native code , while developing on PhoneGap/Cordova?

I am developing a PhoneGap/Cordova WP7 application. I need for this application , to have push notifications enabled however there is NO plugin for this yet. I wrote the code "native" in C# , for registering to my server for push etc etc. Now i…
user1498477
0
votes
1 answer

httpnotificationchannel same ChannelUri from two different apps in emulator

I'm new to windows phone development and have started working with push notifications within the emulator in visual studio 2012. We are having a strange problem where we have two apps in visual studio and when we start each one and call the…
user351711
  • 3,171
  • 5
  • 39
  • 74
0
votes
1 answer

How to use Push Notifications Service on windows phone 7.5 , with PhoneGap?

I am using PhoneGap to develop an application on iOS and windows phone 7.5 . I already succeeded on implementing push notifications on my iOS PhoneGap application , but i am having a hard time to do the same with the windows phone 7.5 one. Is there…
user1498477
0
votes
1 answer

windows 8 mobile custom authentication

We are just starting to look at adding a Windows 8 Mobile application in addition to our website and the app needs to be restricted to authenticated users only. Looking at the documentation it talks about authentication with Google, Facebook,…
user351711
  • 3,171
  • 5
  • 39
  • 74
0
votes
1 answer

Is there any alternative for MPNS in Windows Phone?

I want to support push notification for my Windows Phone app. Is there any alternative for Microsoft Push Notification Service? Something like MQTT etc. I have a similar app in Android where MQTT is used to send push notifications. I need the same…
Vivek
  • 1,823
  • 1
  • 19
  • 39
0
votes
1 answer

Toast notification in foreground

Should I get toast displayed by the OS when my app is running in the foreground? I can not get clear information about this. I think it's rather an issue.
awattar
  • 446
  • 5
  • 19
0
votes
2 answers

Windows Phone 8 Push Notification (MPNS) Server Code

Windows Phone 7 has the MpnsRecipe NuGet package which you can use to send push notification messages to the Microsoft Push Notification Service (MPNS) on the server side. However, this package has not been updated for Windows Phone 8.…
Muhammad Rehan Saeed
  • 35,627
  • 39
  • 202
  • 311
0
votes
1 answer

UrbanAirship dll for Windows Phone 8

Any one can you please point me where can i download the UrbanAirShip's Windows Phone 8 library. I have read the below documentation for Windows Phone 8's Push notification however i am not able to notice any link to dowload the dll for Windows…
David Bekham
  • 2,175
  • 3
  • 27
  • 56
0
votes
1 answer

Handling Toast and Raw Push Notifications

My WP7 app needs to handle different types of push notification. Some of these are only relevant when the app is running but one type serves as a prompt to the user to start the app as well as needing to be handled while the app is running. Hence,…
Kevan
  • 45
  • 5
1 2 3
14
15