Hi Sathya, See the c2dm developers page (http://code.google.com/android/c2dm/) for more information.
1. The android device needs to send this registration id to the server. The server should store this when it makes a request. 2. The server should use this id as one of the inputs in its request to the c2dm server (in addition to other inputs). You should be careful to make the headers, parameters, body correctly. 3. The server also needs an auth token (of the google account used to register your app on c2dm) as part of its request. This is a token that will authorize the server to use c2dm on behalf of the email id. 4. You need to have a broadcast receiver in your android app to receive the message. It should be exactly in the same package that you have used when you registered on the c2dm server. The c2dm page has clear instructions for the android manifest file needed. It is a little difficult to get all the things right initially. There is an appengine[you can develop your server app here]-android-eclipse plugin available, which automates all these tasks for you; you can access it here - http://code.google.com/eclipse/docs/appengine_connected_android.html Hope this helps, Arun. On Wed, Jan 11, 2012 at 1:01 PM, Sathya g <[email protected]> wrote: > I am new to Android. I want integrate my app with push notification.I > used xtify sdk and get the notifications.Also i want how to get the > notification from server(server developed by .net ). > I got the c2dm reg-ID from my app.Then i don't know how to send this > reg-ID to server and receive messages and display badge.please help > me to receive this notification. > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en > -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

