Reputation: 2095
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 and find some working samples/examples? Thanks in advance.
Upvotes: 1
Views: 1610
Reputation: 394096
You don't have to use Windows Azure services. Any web-server will work. Does your application have a server side? If it does, use that server to send push notifications and to receive the notification channel URI from the app.
The server can be written in any language you prefer : JAVA, PHP, C#, etc... The code would depend on the programming language you use to write your server.
Examples :
Upvotes: 1