[appengine-java] Re: rename a app-id

2010-07-19 Thread Marcus Brody
create new app with your desired ID and forward all request :P On Jul 18, 3:34 pm, aswath satrasala aswath.satras...@gmail.com wrote: I do not want to delete the app.  I have user data. -Aswath On Sun, Jul 18, 2010 at 6:57 PM, jacek.ambroziak jacek.ambroz...@gmail.comwrote: Not really,

[appengine-java] Re: rename a app-id

2010-07-18 Thread Robert Lancer
No, you have to create a new one and transfer everything. On Jul 18, 12:02 am, aswath satrasala aswath.satras...@gmail.com wrote: Hello, Is there any way I can rename my app-id. -Aswath -- You received this message because you are subscribed to the Google Groups Google App Engine for Java

[appengine-java] Re: rename a app-id

2010-07-18 Thread jacek.ambroziak
Not really, but you can delete the app and after it is gone create a new one with the (available) name you want On Jul 18, 12:02 am, aswath satrasala aswath.satras...@gmail.com wrote: Hello, Is there any way I can rename my app-id. -Aswath -- You received this message because you are

Re: [appengine-java] Re: rename a app-id

2010-07-18 Thread aswath satrasala
I do not want to delete the app. I have user data. -Aswath On Sun, Jul 18, 2010 at 6:57 PM, jacek.ambroziak jacek.ambroz...@gmail.comwrote: Not really, but you can delete the app and after it is gone create a new one with the (available) name you want On Jul 18, 12:02 am, aswath satrasala

Re: [appengine-java] Re: rename a app-id

2010-07-18 Thread aswath satrasala
Any java tools to do this? On Sun, Jul 18, 2010 at 6:49 PM, Robert Lancer robert.lan...@gmail.comwrote: No, you have to create a new one and transfer everything. On Jul 18, 12:02 am, aswath satrasala aswath.satras...@gmail.com wrote: Hello, Is there any way I can rename my app-id.

Re: [appengine-java] Re: rename a app-id

2010-07-18 Thread John Patterson
Yes you can transfer your data efficiently using the remote datastore: http://code.google.com/p/remote-datastore/ You basically read in bulk from one datastore then write in bulk to the other like this DatastoreService service = DatastoreServiceFactory.getDatastoreService();