[appengine-java] Re: GAE down? Response Error 500

2009-09-02 Thread Matthew Blain
We are investigating this issue and are rolling back a recent change. --Matthew --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to google-appengi

[appengine-java] Re: URLFetch Referer Header

2009-09-03 Thread Matthew Blain
Indeed we have relaxed this restriction so that you can call services which require specific referers. The appid is now contained within the User Agent string. http://code.google.com/p/googleappengine/issues/detail?id=445 (which I see you've commented on--the documentation has recently been updat

[appengine-java] Re: The API call datastore_v3.Put() is temporarily unavailable.

2009-09-22 Thread Matthew Blain
We are currently in planned maintenance. See http://groups.google.com/group/google-appengine-downtime-notify/browse_thread/thread/af970296d9a0b9c8 http://groups.google.com/group/google-appengine-downtime-notify/browse_thread/thread/78f2590cd347fdd0 and http://googleappengine.blogspot.com/2009/09/m

[appengine-java] Looking for Bulk Loader beta testers

2009-11-17 Thread Matthew Blain
Hi App Engine developers, We're working on some improvements and additions to the bulk loader to make it easier to move data between the App Engine Datastore and other data files you may have. If you're doing this right now, we're looking for some beta testers. Two specific issues we're addressing

[appengine-java] Re: Looking for Bulk Loader beta testers

2009-11-18 Thread Matthew Blain
) remoteapi com.google.apphosting.utils.remoteapi.RemoteApiServlet remoteapi /remote_api remoteapi /remote_api admin --Matthew On Tue, Nov 17, 2009 at 12:53 PM, Matthew Blain wrote: > Hi App Engine developers, > We're working on some improvements and addit

[appengine-java] Re: bulk download error 403

2009-12-18 Thread Matthew Blain
A quick test is if you can visit yourapp/remote_api in the web browser--it should work if you log in as an admin, well it should say "This request did not contain a necessary header" but not any other errors. On Dec 16, 2:52 pm, lembas wrote: > I get exactly the same error when I try to bulkuploa

[appengine-java] Re: bulk download error 403

2009-12-23 Thread Matthew Blain
he requested URL /remote_api was not found on this server. > > what should I do now? > > On Dec 19, 2:24 am, Matthew Blain wrote: > > > > > A quick test is if you can visit yourapp/remote_api in the web > > browser--it should work if you log in as an admin, well i

[appengine-java] Re: bulk download error 403

2009-12-23 Thread Matthew Blain
(Note that the log in page is only needed to test interactive login.) On Dec 23, 6:53 pm, Matthew Blain wrote: > You need to log in to the application, not just the Google control > panel--do you have a login page you can visit > onhttp://remote.latest.myprogram.appspot.com/remote_ap

[appengine-java] Re: bulk download error 403

2010-02-16 Thread Matthew Blain
kload.latest.myprogram.appspot.com/remote_api? > I checked it by logging inhttps://www.google.com/a/cpanel/kavancha.com/Users > and see that "admin" is an "Administrator" as stated in "Status" > column next to "Username" column. Am I right? > &g

[appengine-java] Re: Bulk Upload with Authentication

2010-02-16 Thread Matthew Blain
I've responded in the other thread. On Feb 14, 1:01 pm, lembas wrote: > I have a Java-app-with-authentication. I created it this way. I wish I > had not. > > I need to upload bulk data. I am waiting for months but Java "still" > cannot do it. > I tried to do it with Python. I cannot do with it ei

[appengine-java] Re: Bulkupload int key?

2010-05-24 Thread Matthew Blain
At the moment the bulkloader does not support numeric keys as the entity key. The main reason for this is that numeric ids are designed to be managed by the datastore, not be user-generated. You may wish to add an additional property to your entity kind which you can sort on. However we are aware

[appengine-java] Re: Automatically increment version number

2011-10-10 Thread Matthew Blain
Or you could simply use the -V flag in appcfg. (Recently added to Java.) On Oct 4, 10:31 am, Ronoaldo José de Lana Pereira wrote: > Since you are using a shell script, you may want to try something smaller > that don't require you to add Ant to your deploy proccess (i.e., if your app > is in Pyth

[appengine-java] Re: Any ETA for a backup/restore facility?

2010-06-29 Thread Matthew Blain
The bulk loader does indeed provide backup and restore functionality today. While the implementation is in Python it can talk to your Java server and the entities are shared between Java and Python. On Jun 28, 4:46 pm, mscwd01 wrote: > Thanks for your replying guys, it would be great if we could

[appengine-java] Re: How to upload primary key as an id instead of name

2010-06-30 Thread Matthew Blain
The 1.3.5 bulkloader client will allow you to specify a numeric key; you must use the Key constructor explicitly to do this, integers will still be converted into strings. On Jun 30, 12:12 am, MANISH DHIMAN wrote: > Hi All > When I upload data using CSV file on G A E. Primary key is stored > ther

[appengine-java] Re: How to upload primary key as an id instead of name

2010-07-13 Thread Matthew Blain
5:53 pm, Pasha wrote: > Could you please post an example. Thank you in advance. > > On Jun 30, 1:18 pm, Matthew Blain wrote: > > > > > The 1.3.5 bulkloader client will allow you to specify a numeric key; > > you must use the Key constructor explicitly to do this, inte

[appengine-java] Re: Python bulk loader tool with local dev server of GAE Java

2010-08-02 Thread Matthew Blain
While the bulkloader may ask for a username and password, any username and password should be accepted by the dev_appserver. You can use the --email and --passin options to script this from the command line. On Aug 1, 10:33 pm, Jan wrote: > Hi John, > > your remote-datastore tool looks great! Tha

[appengine-java] Re: Downloading application logs from app engine

2010-10-04 Thread Matthew Blain
You can download them using the --severity flag http://code.google.com/appengine/docs/java/tools/uploadinganapp.html#Command_Line_Arguments On Oct 2, 5:25 am, Vikas Hazrati wrote: > I guess copy paste is the only way out ;) > > On Sep 30, 5:45 pm, Vikas Hazrati wrote: > > > > > I am trying to do

[appengine-java] Re: How to export logs details

2010-11-18 Thread Matthew Blain
You'll need to add the 'severity' flag, which will get all of the additional logs, but will suppress log lined without the additional application created logs. You may be interested in http://groups.google.com/group/google-appengine/browse_thread/thread/a8ec10b5f376920f which describes a (python