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

WP7 Push notifications not working after app has been published

I'm using toast notifications for my phone app. When the app is first started on someones phone it will get the push notification URL and then store it in our database so we can send notifications down to the user. In testing, using both the…
Paul
  • 3,072
  • 6
  • 37
  • 58
0
votes
1 answer

Authenicate Webservice for push notifications

I am working on WP7 app that require Push notifications. As per Microsoft requirement, Web-service should be authenticated over TLS. How to setup certificate on my shared hosting so that my webservice will be authenticated for push service.
Arslan Pervaiz
  • 1,575
  • 4
  • 29
  • 62
0
votes
1 answer

Windows phone 7 reaction on push

I want to send a push notification to a WP7 Device, and I want the Phone to react immediately. (App ist not running when push is coming in -> some code i wrote will be executed) I know there are 3 Types of notifications, and if I understand them…
Flo
  • 1,660
  • 4
  • 21
  • 34
0
votes
1 answer

Detect that live tile is pushed from the server

Is there any way to understand that the currently displayed main tile was pushed (updated) from server side? The reason I'm asking: my app can update tile image from background agent and I want to have pushed tile image unchanged until user opened…
Sergei Grebnov
  • 2,633
  • 18
  • 24
0
votes
2 answers

Wp7 push notification to launch my app

As far as I know, Ios and Android gcm are able to open an application when a push notification event arrives. For wp7, I only find samples on how to update tiles or display a message. But I need to display a bitmap in fullscreen. Is there a way to…
Alphapage
  • 901
  • 1
  • 6
  • 29
0
votes
1 answer

How can i get my Toast Notification from outside the application?

Hi i got stuck with this problem, i can't find out how to get Toast notification from outside the application, i cant get it from inside like this : private void ToastNotificationReceived(NotificationEventArgs e) { …
Linus
  • 45
  • 4
0
votes
1 answer

Building long-life background agent (more than 2 weeks) in WP7

I need long-term working background agent in wp7. I know that default and maximum life-cycle for such agents is 2 weeks. Also i got situation, when battery is critical low, all background agents are turning off. So now i see only two workaround…
-1
votes
1 answer

XML payload error when sending push notifications to windwos phone from java

Im getting the following error ,when I use the following code to send push notifications to windows phone. A push notification payload error has occurred.The XML contains invalid or improperly formatted XML or the notification type specified in the…
Prasanna Aarthi
  • 3,439
  • 4
  • 26
  • 48
-1
votes
1 answer

Push notification for Voip (type 4) windows phone 8 limit

Is push notification and voip free in Windows Phone 8 as same as other types of push notification? I was trying the ChatterBox example. Will I need to pay for Voip when it will run on production? Please provide any link or source
littleBrain
  • 159
  • 4
  • 11
-2
votes
1 answer

how will my web service identify mspn service

I am making use of microsoft push notification service to push notification from a web service to windows phone app. My doubt is that , how will i pass the message to mspn service (end point)? will we receive any information while we register app to…
Mridul Raj
  • 1,001
  • 4
  • 19
  • 46
-3
votes
2 answers

Reminder on windowphone

I write a application use notifycation on winphone 8. My application require send URI continuous to server every 30 seconds. My problem, i used reminder of winphone, but it can't use webbrowser call request in reminder. My code: public MainPage() …
1 2 3
14
15