Push Notification Windows Phone? - windows-phone-8

I'm a new Windows Phone developer and I'm trying create push notification. I don't understand much about push notification, and have a couple of questions.
Push notification windows phone need cloud service,so can I use Google Cloud Service or only use Microsoft Cloud Service.
How to register URI from the Microsoft Push Notification Service?

You will have only two options here:
1)MPNS
2)WNS
If you are using WP8 then I will suggest to go with MPNS o.w. you can use WNS.
you can use MPNS directly by sending notification URI to server but for WNS you will need to generate secrete key and need to use Azure service.
You can use these steps to create server and WP8 App, if you are using MPNS as you are using WP8.
And about GCM you can not use it here.

Related

Worklight_HydribApp_PushNotification for Windows Phone 8 Using MPNS

Hi we have developed an application using IBM MobileFirst Studio 7.0.0,In order to send notifications for Android and IOS Platforms we used GCM and APNS respectively and everything worked fine coming to Windows Phone 8 application we are planning to go with MPNS(Microsoft Push Notification Services) concept.
As per MPNS is concerned we are planning to go with Authenticated push services which can give us unlimited access to send notifications, we require a Secure Sockets Layer (SSL) certificate keystore for the same.
The keystore can contain several certificates, one of which is the certificate for authenticated push notifications to MPNS.
To use MPNS concept we need certificate which is authenticated push notifications.
How to generate that certificate and do we need any web service to develop MPNS Push Notification for Windows Phone 8?
as part of my research followed this link.
In the link you have found, you will see how to generate a SSL Keystore and certificates - here. Once you have the certificates, login to Windows Development center and upload the certificate there. Instructions on how to do this can be found in the following links:
Setting up an authenticated web service
Enabling no-quota push notifications
No-quota push notifications

Alternative to push notifications on Windows 8

Im working on a windows 8.1 project for a client, the app wont be on store.
I was asked to implement push notifications but from what i've read we need to register app on store to enable that funcionality.
Is there any other alternativo to push notifications or a way of getting them without having the app on store?

Who to create web service for windows push notification for windows phone 8?

While working with Windows Phone Push Notifications, I got myself stuck in the part of creating the "cloud web service" to receive the negotiated URL and retrieve updates to the mobile device.Is it possible to create this Web Service without using Windows Azure services (I don't want to pay anything, I just want to push with my services to my apps)? And how can I create this Cloud Web Service.
I haven't worked extensively with Windows Phone 8.1. Check this webpage for Windows Phone 8 -
https://msdn.microsoft.com/en-us/library/windows/apps/hh202970%28v=vs.105%29.aspx
You will get a URL for each device you want to get notification on through the app you create. Taking help from the above link, you can create a local server (Cloud Web Service) for testing push notifications for your test devices.

Package Security Identifier (SID) and Client Secret required for parse.com web

I try to initialize Windows phone 8 application with Parse. I would like to use Push notifications. In the Parse's web settings are Package Security Identifier (SID) and Client Secret required. I am not able to find what should I insert into these two textboxes. Windows Phone application has only its own App ID...
Can you tell me what is the right way how to set the Windows phone application up?
Thank you.
Myth Rush
You are going to have to register your application with the windows store
The following documentation goes through how to do it for azure.. But the process should be the same fore you.
https://azure.microsoft.com/en-us/documentation/articles/app-service-mobile-dotnet-backend-windows-store-dotnet-get-started-push-preview/
In the Windows Dev Center page for your new app, click Services.
In the Services page, click Live Services site under Microsoft Azure Mobile Services.
In the App Settings tab, make a note of the values of Client secret and Package security identifier (SID).

Windows Phone Push Notifications without a web service

I'm planning to develop windows phone app which can send my PC clipboard to the phone. I want to use push notifications for this. I found this paragraph on the msdn windows phone documentation library
After your Windows Phone client app has registered for notifications, you can send notifications to the app. Typically, this is done with a web service that keeps a collection of URIs to send notifications to, but it also can be done with any app that can send messages to the Microsoft Push Notification Service.
This seems to imply that I don't need to set up a web service. Is there some way I can send push notifications directly from my app to MPNS?
Yes, your desktop app can communicate directly with MPNS.
Use the same code as for the web service.