c2dm server with C#
Do anyone know if its possible to create a c2dm serverside with C#? How do i add the required parameters (email, password etc)? Here is the core of a basic prototype C# server I created. class C2DMPrototype { // Hardcoded for now private const string RegistrationId = "XXXXXXXXXXX"; private const string GoogleAuthUrl = "https://www.google.com/accounts/ClientLogin"; // TODO : Production code should use https (secure) push and have the correct certificate private const string GoogleMessageUrl = "http://android.clients.google.com/c2dm/send"; private const string PostWebRequest = "POST"; private