Is there any way to implement publish subscribe push notification in Android ?
At the same time, client(application running in mobile app) should not polling server for informtion,so whenever there is update, server should publish the common message and the intended senders should receive it. (application running in a mobile app should not poll it)
Please guide me to this. Thanks in advance.
Use C2DM. Since C2DM does not guaranteed delivery, though, you still will want an occasional poll to make sure you did not miss any messages.
Anything else that does push and might have guaranteed delivery (e.g., an MQ server with something like RabbitMQ as a client) would require you to keep an Android service running all of the time. Users or the OS can get rid of your service when they desire.