I had created web application and deploy it in Google App Engine after I created table(entity) in Google App Engine datastore. My doubt is it possible to download the entity/database?
I need some more examples,how to download data from google app engine datastore
2010-09-13 10:31:49
i use this: `python2.5 appcfg.py download_data -A APP-ID --url http://APP-ID.appspot.com/remote_api --filename=datastore-$(date +%Y%m%d-%H%M).data`
sahid
2010-09-13 11:23:37
In that bulkloaderlink also they explain using python.But i am using java so that i cant able to follow that example.I want some clear explanation about how download data using java in webapplication project
2010-09-13 11:44:19
@user441392 Please read the entire link carefully as it describes the steps needed in order to use BulkLoader in Java. For future reference please state that you are using the Java GAE.
Shay Erlichmen
2010-09-13 11:57:37
i had read and found this Tip: If you have a Java app, you can use the Python bulkloader.py toolby installing the Java version of the remote_api handler, which isincluded with the Java runtime environment. The handler servlet classis com.google.apphosting.utils.remoteapi.RemoteApiServlet.I understand i need to add the java remote api to my server app, anduse the python sdk tools on my desktop to upload and download data.I'm just confused on how to set up the remote api in my java app. I'm sorry if i'm being obtuse.i'm trying to find guidence on install the java remote_api in my app
2010-09-13 12:16:26