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
3
votes
3 answers

Wp7:Push notification channel URI is null

We are trying to test push notifications, using the latest code from the documentation How to: Set Up a Notification Channel for Windows Phone public HttpNotificationChannel myChannel; public void CreatingANotificationChannel() { myChannel =…
Mansinh
  • 1,365
  • 4
  • 19
  • 47
3
votes
2 answers

Windows Phone navigate to a certain page in app when Toast notification is tapped

I want to open a certain page in Windows Phone application when the user taps on a received toast notification. I guess there may be an event handler for it and I can navigate the app to this page inside this handler. Actually I am not sure about…
moztemur
  • 941
  • 1
  • 9
  • 22
3
votes
1 answer

MPNS sending pushing forbidden response 403

I want to use MPNS in my windows phone app and we are going to authenticate the webservice which is sending the push to clients. I have the done the all steps that are needed for MPNS authentication. Uploaded the certificates on my WindowsPhone…
Arslan Pervaiz
  • 1,575
  • 4
  • 29
  • 62
3
votes
1 answer

Localizable push notifications

I want to localizate a Tile and Content for Toast push notification. Can I get localizated string from application when I getting a new push notification? (NOT in server side)
Roman Golenok
  • 1,427
  • 9
  • 26
3
votes
2 answers

Microsoft Push Notification Service And Windows Phone 7/8

I have few questions regarding MPNS(Microsoft Push Notification Service) For Windows Phone. As we know there are three types of Push Notifications in windows phone Toast Notification Shell Tile Notification Raw Data Notification Can we show Toast…
Arslan Pervaiz
  • 1,575
  • 4
  • 29
  • 62
3
votes
2 answers

Windows Phone Tile Notification - URI for image stored in Shared/ShellContent

I have an application which leverages push notification. When the application receives tile notifications with the background image pointing to images bundled as resources with the xap, the images are nicely loaded on the pinned tile. Furthermore, i…
Gros Lalo
  • 1,078
  • 7
  • 20
3
votes
2 answers

will uri change every time an app is restarted in windows phone?

I want to develop a windows phone app that makes use of push notification. I know that first thing my app should do is to register to mspn and get uri. My doubt it that , will the uri keep changing every time the app get closed and then start again.…
Mridul Raj
  • 1,001
  • 4
  • 19
  • 46
2
votes
2 answers

What is the advantage of Raw Notifications over a normal Request to a server?

I know where Tile Notification and Toast Notification come in handy, when your app is inactive, but what is the advantage of Raw Notifications over the next line? WebClient( ).DownloadStringAsync( );
GeekPeek
  • 1,615
  • 1
  • 20
  • 34
2
votes
1 answer

Localize notification payload

I am currently developing a localized application which uses push notifications. I would like to know if it is possible to localize the strings that are sent in the notification message, in the Text element for toast notification and in the Title…
2
votes
2 answers

Windows Phone 7 Push Notifications Not Showing Up On My Phone when I use PHP service

I have some problems with my php service. I use php for send Tile update and Toast update requests to MS Notification Service. After first request in response I have following headers: URL:…
2
votes
1 answer

payload format invalid error in push notification windows phone 7

I downloaded the sample program for push notification in the site http://chris.59north.com/post/Using-Windows-Phone-7-Push-Notifications.aspx but i could not run this.. i am getting "payload format invalid error" in some other post it asked to…
curiosity
  • 1,207
  • 5
  • 23
  • 34
2
votes
2 answers

404 error on push notification using sample code

I got my url from the app. It begins with: http://sn1.notify.live.net/throttledthirdparty/01.00/ and if I navigate to that URL using a browser, I get the message: Microsoft Push Notification Server I then grabbed the code provided by…
McKay
  • 12,334
  • 7
  • 53
  • 76
2
votes
1 answer

WP7 Push notification server setup

I am trying to set up a push notification service for my WP7 app. I have followed the guides and built a WCF service with WPF front end based on the code provided by the Channel9 WP7 jump start guide (Weather Service exmaple) ;…
Dan Sewell
  • 1,278
  • 4
  • 18
  • 45
2
votes
1 answer

Send Push Notification To a Windows Phone 8.1 app Without submitting it to store

I want to send to push notification to a windows phone 8.1 app that currently not submitted to store. is there a way for this situation? I know that MPNS can send unauthenticated push notification (with some limits). but is there a way to send…
2
votes
2 answers

pushChannel is always null (push notification) in windows phone 8.1 devices

pushChannel = HttpNotificationChannel.Find(channelName); but it returns me null every time I run the application. It is giving null in windows phone 8.1 devices only in wp8 it is registering the channel.
1 2
3
14 15