getting from android to Google app engine

Go To StackoverFlow.com

5

Could someone please provide me with a link to a tutorial that shows and explains how to send data from an android emulator to a Google app engine. I have googled it myself but am not having any luck finding any good ones. I am a beginner so any help would be much appreciated.

Thanks.

2012-04-04 23:32
by lan
beginner in android or appengine or both or client/server? how beginner is your beginner-ness? If you are totally beginner, I would advice you to start with android stand alone first - Win Myo Htet 2012-04-05 20:38


10

The standard way would be to create a REST service on GAE and then call it from Android.

Server side: there are several REST libraries, my personal choice is Resteasy.

Android side: there are numerous examples how to consume REST services. You might also want to look at Android client from Spring.

For a complete example you might want to look at the source of LeanEngine.

2012-04-05 06:00
by Peter Knego
Nice one! Just what I needed! Thx - ktulinho 2012-07-10 23:14
Ads