Ashwin Nagarajan
Ashwin Nagarajan

Reputation: 219

Windows Phone 8 Push Notification

The structure of PUSH Notification for Windows Store 8 App differs from Windows Phone 8 app (in terms of Registration, Authentication, etc,.) at least that's what I gather from the two below links.

  1. Windows Store.
  2. Windows Phone 8.

    I decided to run the sample from this link. I downloaded it, ran it and waited for URI to return, but nothing happens. No response at all. I am using Visual Studio 2012.

    1. What is the mistake that I am making here?
    2. Why is there a different approach for Windows Store 8 application and Windows Phone 8 PUSH notification service?

Upvotes: 1

Views: 1834

Answers (1)

JustinAngel
JustinAngel

Reputation: 16092

I'm not sure what your were asking in question #1.

Overall Win8 and WP8 push notifications are different because they end up supporting different UX on the operating system itself. Win8 and WP8 need different data to power their tiles, toast notifications and raw channels. As a result of that you'll need different message formats to power each platform. And as a result of that the services were separated for MPNS (Microsoft Push Notifications Service) on WP8 and WPNS (Windows Push Notifications Services) on Win8.

Upvotes: 2

Related Questions