This is one of the ways you can do that:

Implement a REST server in App Engine, which is fairly easy to do:
App Engine provides the Webapp framework with get/post request handlers
http://code.google.com/appengine/docs/webapp/App

These request handlers perform CRUD operations on your data using the App
Engine's DataStore APIs

http://code.google.com/appengine/docs/datastore/creatinggettinganddeletingdata.html


On the Android side you can use the inbuilt Apache Http Client library's
methods to interact with the REST server.

You can send and receive data in JSON format, for sending/receiving JSON,
there is django  JSONDecoder/Deocder in Python for AppEngine and JSONObject
in java on the Android side.

Hope this helps!

-Megha






On Fri, May 23, 2008 at 1:50 PM, GodsMoon <[EMAIL PROTECTED]> wrote:

>
> Actually yes, I was thinking about setting up a web service so that my
> android app can access my content in Big Table.
> Is that easy to do?
> I ask because I am not familiar with Big Table or Python. I've done it
> in java and C# before.
>
> Thanks for the info.
>
> On May 23, 3:16 pm, "Megha Joshi" <[EMAIL PROTECTED]> wrote:
> >   Hi,
> >
> >   Did you have any specific questions about using App Engine with
> Android. I
> > might be able to help.
> >
> >   -Megha
> >
> > On Fri, May 23, 2008 at 11:17 AM, GodsMoon <[EMAIL PROTECTED]> wrote:
> >
> > > I'm planning on using App Engine for the social website side of my
> > > app. (I just got my invite this week) Is anybody else using Google App
> > > Engine? If not, what are you using?
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Android Discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/android-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to