On Tue, Jun 14, 2011 at 7:58 PM, kamilia amellal <[email protected]> wrote: > Thanks for replay, > What i want to do is the store data from a form in an android application in > my google app engine datastore ,i tried to use Restlet to create web > services and Objectify for the persistance but it seems that there is > no connection between the two applications.
Start with something simple and get it working first. Write a simple servlet that gets data for http parameters and persists using JDO. Once that is working, you can move to Objectify, etc. Consider how complex your application is first though: you might not need it at all. There is nothing special on the Android side either: just post your data to the appengine URL. You can test with curl and similar tools to identify if the problems is in the Android app or the app engine one. -- You received this message because you are subscribed to the Google Groups "Android Developers" 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-developers?hl=en

