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 Notification does not generate the ChannelUri while using on the device

I'm trying to implement push tile notifications in my application, to understand the working i have made a sample app by using code given in MSDN. Now my problem is when i run the application in the simulator everything goes fine, i even get the url…
Justice
  • 422
  • 2
  • 8
  • 21
0
votes
1 answer

How to send tile notification with parameters using push sharp in windows phone 8

I am sending notifications to Windows Phone 8 using Push Sharp. Using these notifications I want to update the Webportal URL which my app is using, if it is changed to some other URL. Firstly I tried it using toast notifications and was able to send…
Nitika
  • 103
  • 11
0
votes
1 answer

Toast notification disappears after 10 sec in windows phone 8

Toast notification disappears after 10 sec,if user does not tap on that and I am not able to get How to handle this, if user misses the notification. Requirement is that toast should not disappear untill user taps on it. One way of doing this is to…
Nitika
  • 103
  • 11
0
votes
1 answer

Windows Phone 7 Push Notification

I am developing an application which is Push Notification Enabled. I have a web service which sends me notification. I wrote the following code in order to implement the push notification in my WP7 app. Created a Uri from the below code …
Shafiq Abbas
  • 484
  • 1
  • 5
  • 18
0
votes
1 answer

Send push notifications for Windows Phone with a certificate?

I would like to send push notifications for Windows Phone. I have a sending program and client app, but now it works without a certificate. I want to use a certificate in order to avoid the limit of 500 pushes per day. What should I do to use a…
Jacek
  • 11,661
  • 23
  • 69
  • 123
0
votes
1 answer

MPNS Push notification server returns supressed as notification status

I'm trying to send push notifications to my widows phone 8 app (Tile notification). This is the response from MPNS: notification status : suppressed notificationChannelStatus :Active, deviceConnectionStatus:Connected. I have checked the server…
Prasanna Aarthi
  • 3,439
  • 4
  • 26
  • 48
0
votes
1 answer

Windows Phone Tile push notification does not receive?

Hi I am developing for Windows Phone 8. I need to send and receive tile push notification using PHP. The tile push notification is not received on my device. I am getting the error given below. Can anyone tell me why I am facing this…
user123
  • 183
  • 2
  • 18
0
votes
1 answer

How to test ChannelUri expiration scenarios on WP8?

I want to test if the manner in which i have handled the channelUri changes works fine. I have used the channelUriUpdated method to make note of any changes. Trouble is i am not sure when this method will get invoked during the normal course of…
user1122549
  • 664
  • 1
  • 13
  • 27
0
votes
1 answer

Windows phone 8 push notification how to use ChannelUpdatedUri to detect channel updates

I would like to know what is the clean & correct way to notify my WP8 app that the ChannelUri has changed? I read that i need to handle this in the ChannelUpdatedUri method. But i have a few queries here. Doesn't this require my app to be running…
user1122549
  • 664
  • 1
  • 13
  • 27
0
votes
1 answer

Windows phone 8 send image in tile notification

I want to send a tile notification from one device to another. Is it possible to send an image from the phone's isolated storage in a tile notification?
user2740785
  • 141
  • 1
  • 3
  • 9
0
votes
1 answer

Push notification handler on Windows Phone 8

Following this example (http://msdn.microsoft.com/en-us/library/windowsphone/develop/hh202967(v=vs.105).aspx) I have enabled my Windows Phone 8 app for push notifications. I can receive notifications and the callback method…
user826955
  • 3,137
  • 2
  • 30
  • 71
0
votes
1 answer

Tile notification for windows phone - invalid XML payload -

I send two push notifications a toast and a tile (just a count) the toast gets received:
Bran Gi
  • 147
  • 1
  • 9
0
votes
1 answer

Windows Phone 8 Raw Notification with Windows Azure Mobile Services

I'm trying to get a raw push notification to work from Azure Mobile Services to Windows Phone 8. I've only signed up with Windows Azure for the free mobile services which comes with the free 20mb database and free mobile services. The site to manage…
doktorg
  • 187
  • 1
  • 12
0
votes
0 answers

URI not received in Windows Phone 8 App having Push Notification Capability

I am using the following example for developing an app on Windows 8 Phone. using System; using System.Windows; using Microsoft.Phone.Controls; using Microsoft.Phone.Notification; namespace sdkRawNotificationCS { public partial class MainPage :…
Mayank
  • 1,099
  • 4
  • 17
  • 44
0
votes
2 answers

windows phone push notifications 406 not acceptable

I'm getting 406 Not Acceptable as response when I try to send a push notification, I understand the problem and I've fixed the code that was causing it but I'm not quite sure how to make the error go away, the server responds with 406 to every one…