I've built an android application [a knowledge exchange forum, inspired by none other than stackoverflow :) ] that communicates with a remote (free) server. As of now, the application fetches/refreshes content on user demand.
I'd like to implement push notifications, so that a user can be notified when someone posts an answer to his/her question. I've heard that C2DM is a good push notification service for Android devices. The client code I can perhaps take care of, it's the server side programming that has me completely baffled. I don't even know where to start.
The capabilities of the server as listed are CGI, PHP, ASP.NET, SSI, FrontPage Extensions, Perl and Python. I'm currently using PHP scripts to run SQL queries on a MySQL database and transmit data to the client (android device). What feature(s) of the server must I use to implement C2DM? Is it even feasible with the given capabilities?
Push notifications would greatly enhance the functionality and usability of my application. I request you to provide guidance on setting up the server.
Thanks in advance for your response.
EDIT: A difference I've noticed is that while I'm using a WEB Server, http://code.google.com/android/c2dm/ constantly refers to a 3rd party APPLICATION server. Thoughts?