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
13
votes
1 answer

Windows Phone 7 - Steps for Authenticated Push Notifications

I have looked through lots of different resources via the internet for pre-requisites and implementations of the Authenticated Push Notification mechanism for Windows Phone 7. I have gone…
Let me Ask
  • 1,029
  • 1
  • 8
  • 33
11
votes
3 answers

send push notification for windows phone 7 using php

I'm a web developer (PHP). I would like to searching for push notification to windows phone 7 using PHP but the result is always .NET. Please someone can help me. UPDATE : How to send multi-devices at once? because the delay time is around 1 second,…
Kannika
  • 2,538
  • 2
  • 27
  • 38
8
votes
1 answer

Microsoft push notification service 403 - Forbidden: Access is denied

I am trying to send secure windows push notifications from my php server with valid ssl certificate and I got this error: 403 - Forbidden: Access is denied. You do not have permission to view this directory or page using the credentials that you…
Kalanj Djordje Djordje
  • 1,162
  • 1
  • 12
  • 15
8
votes
3 answers

WNS or MPNS for Push notifications?

I am creating an app that makes constant use of push notifications as means of communicating between users (messaging of sorts). This whole ordeal seems to drive me a bit nuts, so here are few questions I could not find an answer to. I found…
Muhwu
  • 1,151
  • 1
  • 10
  • 26
6
votes
2 answers

HttpNotificationChannel Open() throwing InvalidOperationException ("Failed to open channel")

I'm writing a Windows Phone 7 application which utilises Push Notifications and have a class which is responsible for managing interactions between the MS Notification Servers and my service in the cloud. However when I'm attempting to open the…
MrMDavidson
  • 2,705
  • 21
  • 20
6
votes
1 answer

Windows phone OS 7.0 vs OS 7.1

I am creating a new WP7 application on visual studio and the first thing it asks me to do is to target a WP OS version. I have 2 options , 7.0 and 7.1 . I am trying to make a simple app , implementing push notifications. I see on the tutorial from…
user1498477
6
votes
2 answers

What is the maximum Length of URI string generated by Microsoft Push Notification Services?

Can somebody guide me about the length of generated URI from Microsoft PUSH Notification Services? I am getting the URL string Length of 120. I just want to make sure that whenever my Windows phone app will receive a new URI from MPNS, it would…
Shax
  • 4,207
  • 10
  • 46
  • 62
6
votes
1 answer

Windows Phone 7.5 - Push Notifications when app is tombstoned

I have written a Windows 7.5 phone app that registers for tile and toast push notifications with MPNS. I have all the infrastructure working and the phone registers with MPNS. I save the ChannelUri locally on the phone and then post the ChannelUri…
Gavin
  • 363
  • 4
  • 10
5
votes
2 answers

Windows Phone 7 Push Notifications Not Showing Up On My Phone

UPDATE: The plot thickens. I changed my channel name and it is suddenly working (which means it wasn't a problem with my push service, since I'm getting the same HTTP response from the Microsoft Push Notification server). To me, however, this is…
5
votes
2 answers

Push notification problem in Windows Phone 7

I tried the following tutorials to create the push notification in Windows Phone 7.…
user403015
  • 7,209
  • 19
  • 66
  • 100
5
votes
0 answers

WNS push payload for Voip applications in windows phone silverlight 8.1

In windows phone 8 to invoke a voip agent, server needs to send a type 4 raw notification through MPNS with following payload. HttpWebRequest sendNotificationRequest =…
Abhishek
  • 113
  • 5
5
votes
3 answers

Understanding Push notifications for Windows Phone 8.1

I'm trying to understand what I will need to build on my server for Push notifications to work successfully. My thoughts were: The phone sends the notify URL to my server The server stores the information in a Database A separate process or PHP…
Sandeep Bansal
  • 6,280
  • 17
  • 84
  • 126
5
votes
1 answer

Use WNS for windows phone 8

Is WNS available for windows phone 8 devices. If yes, where can I find some good documentation to use it. I was about to use MPNS but here it says Microsoft is Sunsetting MPNS from Windows Phone 8.1. But when I looked for the documentation, it…
pratpor
  • 1,954
  • 1
  • 27
  • 46
5
votes
3 answers

Windows Phone 8 notifications and background tasks

I have searched the official forums and documentation and all other places, but haven't been able to find a concrete answer. Q. In Windows Phone 8, is it possible for an application to respond to a Push Notification, and perform a task, while it is…
Kumar Bibek
  • 9,016
  • 2
  • 39
  • 68
5
votes
2 answers

How to get device token id of windows phone for push notification?

I am creating a windows phone 8 app in phone gap + mobile jquery using visual studio 2012. I want to get the device token id from the device for push notifications. Can anyone guide me as to how can I get device token id of windows phone 8?
1
2 3
14 15