When using C2DM, a device sending data to another device via server should they both register again and again whenever data transfer is required??
|
feedback
|
|
No. The client device only needs to register initially, and then if for any reason the registration ID is expired by the server a new one should be received. So once you have a registration ID, you don't need to keep requesting new ones. In fact doing so is a very bad idea as you'll keep changing your reg ID, so keeping your own server knowing which is current becomes more difficult. Of course if your server tries sending the message to an old registration ID, the message will not arrive. | |||||
feedback
|