i am developing an restaurant menu app in android for Samsung galaxy tab. On my app user will select the food item and user will place an order. The list of items to be served is dispatched to the server through SOAP service. Now as soon as the the order get placed from the kitchen i want to notify the user that an order has been dispatched. What i got while searching is that i can use PUSH Technology i.e. C2DM Cloud to Device Messanging. But i had not got proper code to use this in my app. Can any one give me a proper implementation of C2DM in android?
Asked
Active
Viewed 166 times
1 Answers
0
There are many push technologies. Another option is to use XMPP, as it will work on Android.
You can check Smack and asmack for XMPP. The asmack project is an Android specific derivitive of Smack, although there are people using Smack directly as well.

Robin
- 24,062
- 5
- 49
- 58
-
can you provide any link where actual implementation of XMPP or C2DM will be there. thanks for your answer. – PCS May 27 '11 at 05:58
-
@PCS - Updated my answer with some more info. – Robin May 27 '11 at 13:40