I want to try using channel-API between my GAE app and the iphone. I'm not sure where to start... should I try it with UIWebView that runs a javascript?

link|improve this question

feedback

4 Answers

Have you considered using push notifications to tell the app to fetch the new data?

link|improve this answer
1  
Yes I have, but then the idea fell. Push notifications are not real-time, and not reliable. I would only use them if I needed to fetch data on the background... – Hamutsi May 6 '11 at 5:17
feedback

A web view running the Channel API JS may work, but you probably want to use XMPP. See this article and try this project.

link|improve this answer
XMPP is unlikely to be the solution, since it would require the user to have a Google account just for the app. – Nick Johnson Mar 7 '11 at 22:52
XMPP seems like a way to do that, but only if I have no other way... I need to update the App after an event happend on the server. the message sent to the App contains one tiny parameter. XMPP for doing that seems a bit too much (from server CPU/cost point of view) – Hamutsi Mar 7 '11 at 23:50
feedback
up vote 0 down vote accepted

Well, it's possible on the iPhone. Of course, it should be on a different NSThread... and it's a nightmare to debug because of the bad access to JS from the iphone.

link|improve this answer
feedback

I think you must have some kind of app-in-the-middle native app that communicate with the channel's javascript

link|improve this answer
oh, that's for sure :) – Hamutsi May 11 '11 at 10:49
feedback

Your Answer

 
or
required, but never shown

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