vote up 3 vote down star
2

I am looking to write an app which received pushed alerts from a server. I found a couple of methods to do this. 1) SMS - Intercept the incoming SMS and initiate a pull from the server 2) Poll the server periodically

Each has its own limitations. SMS- no guarantee on arrival time. Poll may drain the battery.

Do you have a better suggestion please?. Thanks much.

flag

4 Answers

vote up 0 vote down

Hi. I dont know if this is still useful. I achieved something like this with a java library at http://www.pushlets.com/

Althoug doing it in a service won't prevent android from shutting it down an killing the listener thread.

link|flag
vote up 2 vote down

(cross-posting from an answer I gave to a similar question - http://stackoverflow.com/questions/1243066/does-android-support-near-real-time-push-notification/ )

I recently started playing with MQTT http://mqtt.org for Android as a way of doing this sort of thing (i.e. push notification that is not SMS but data driven, almost immediate message delivery, not polling, etc.)

I have a blog post with background information on this in case it's helpful

http://dalelane.co.uk/blog/?p=938

(Note: MQTT is an IBM technology, and I should point out that I work for IBM.)

link|flag
Thank you that was very useful – Vinod Oct 17 at 19:46
Hi Dale, I read your blog post about MQTT and it definitely seems to fit the bill for almost instant notification on mobiles. But I haven't been able to find any information about how it actually does it. Does it keep a socket open at all times? How does it notify the server if its ip address has changed? Would appreciate it if you could shed some light on this. Cheers Naren – Naren Nov 5 at 6:14
1  
It does hold a connection open. In a follow-up post (dalelane.co.uk/blog/?p=1009) I did talk more about the implications of holding a connection open - did you see that? If the connection is broken, both the server and client can be notified. Then it's an application layer decision to decide how to respond (e.g. reconnect). There is more information in the docs referred to in the post (e.g. IA92 : www-01.ibm.com/support/… pdf on that page, and Javadoc in the zip on that page) – dalelane Nov 5 at 16:13
No, I had not come across that post of yours. Answered a lot of my questions. Thank you very much :) – Naren Nov 11 at 1:12
vote up 3 vote down

or....

3) Keep a connection to the server, send keep-alives every few minutes, and the server can push messages instantly. This is how Gmail, Google Talk, etc. works.

link|flag
I think this will, sadly, produce a hefty amount of battery drain. IF you take this route, make sure to limit the amount of time you do this. – haseman Sep 8 at 22:36
No, actually, it won't, because idle TCP/IP connections take almost no power on the cell modem. – Isaac Waller Sep 8 at 23:25
Actually, it will take a lot over time, so you are right. Sending keep-alives with long intervals helps a lot too. – Isaac Waller Sep 8 at 23:26
Ah! I'm confused, am I wrong or am I right? ;-) – haseman Sep 11 at 22:11
1  
You're right, it was my mistake. – Isaac Waller Sep 11 at 22:34
vote up 0 vote down

I'm afraid you've found both possible methods. Google was, at least initially, going to implement a GChat api you could use for a push/pull implementation. Sadly, that library was cut by Android 1.0.

link|flag
They've promised to bring it back once the security problems get worked out... if that ever happens. – fiXedd Sep 6 at 8:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.