Do you really need a real-time notification from the push service? How much will update your RSS post? Have you considered polling your feed? You can do this in a minute using the BuzzBox SDK: it also has integrated RSS syntax to do exactly what you need.
http://hub.buzzbox.com/android-sdk/
Use this:
RssReaderTask.setRssUrl(this, "http://yourserver.com/feed.rss"); SchedulerManager.getInstance().saveTask(this, "0 9-20 * * 1,2,3,4,5", RssReaderTask.class); SchedulerManager.getInstance().restart(this, RssReaderTask.class);
It will check your RSS once per hour (according to the cron line "0 9-20 * * 1,2,3,4,5"), and it will create a notification in the status bar if something new is found.
The demo application is a good example: http://hub.buzzbox.com/android-sdk/demoapp
robsf
source share