[appengine-java] Spring AOP behaving inconsistently on Google infrastructure.

2011-11-18 Thread Marcel Overdijk
I'm using Spring AOP with context:spring-configured / in my applicationContext.xml to automatically inject an ObjectifyFactory in my domain instances while doing e.g. new Customer(). In local environment this works always without any issues so far. However on the Google infrastructure I keep

[appengine-java] Re: Gql4J, gql for appengine java sdk

2011-11-18 Thread Vaclav Bartacek
Hi all, I've been doing the same almost two years ago ! The GQL (and also extended GQL) parser is a part of DAO generator project: http://code.google.com/p/audao/ The documentation you can find here: http://audao.spoledge.com/doc-gae-features.html#gqlparser

[appengine-java] Re: Dealing with DatastoreTimeoutException and DatastoreFailureException in a task queue

2011-11-18 Thread Edward Hartwell Goose
Turns out I've figured out the answer to my own question. Use the little known max-concurrent-requests feature to force a limitation on how many requests can run at one time. This ensures that any requests that take a little too long are given the opportunity to finish before before the next

[appengine-java] Re: Apache POI

2011-11-18 Thread will
Well, the answer is : Yes, it works. That brings another question now : Since GAE doesn't allow us to write to the filesystem, the easiest solution would be to send the result to the servlet. How could I achieve that ? (as you might obviously notice, I'm a beginner in java, started this month

[appengine-java] Creating a new entity kind using the Datastore Viewer

2011-11-18 Thread Marcel Overdijk
Is it possible to create a new entity using the Datastore Viewer for a kind that does not exists yet? -- 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-appengine-java@googlegroups.com. To

[appengine-java] Re: Creating a new entity kind using the Datastore Viewer

2011-11-18 Thread Max
no, at the moment you can't and you can't add new property to existing entity -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit

[appengine-java] Re: Can I upload an image to Blobstore using the admin console?

2011-11-18 Thread Max
no, at the moment you can't -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-java/-/s_9aLOndvM4J. To post to this group, send email to

Re: [appengine-java] Re: Serializing crypto classes

2011-11-18 Thread Thales Cloud
I'm now storing the relevant data as byte[] and it appears to be working fine. Thanks again for pointing me in the right direction! Pete. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit

[appengine-java] Re: StackOverflowError when using remote API

2011-11-18 Thread Peter Turovskij
It seems we are the only ones facing this issue... -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-java/-/BDMR1e6RhzEJ. To post to this

[appengine-java] Re: Can I upload an image to Blobstore using the admin console?

2011-11-18 Thread Marcel Overdijk
OK thanks. I created feature request http://code.google.com/p/googleappengine/issues/detail?id=6361 Ability to upload new blobs using the admin console and display the (ImageService) serving url. Please star this issue if you are interested. On Nov 18, 2:43 pm, Max thebb...@gmail.com wrote:

[appengine-java] Re: Creating a new entity kind using the Datastore Viewer

2011-11-18 Thread Marcel Overdijk
OK thanks. I created feature request http://code.google.com/p/googleappengine/issues/detail?id=6362Ability to create new entity 'kinds' in the Datastore Viewer. At the moment only entities can be created in the Datastore Viewer for existing entity kinds. Also the ability to add not yet existing

Re: [appengine-java] Re: Reading a Google Doc from google app engine code

2011-11-18 Thread Amit Pandey
I did it before and I used *HWPFDocument. *However it can be read directly (without third party lib). Try other ways to read the string from inputStream (other than CharStreams api). Also try setting different possible character encoding. Let us know if this work. Thanks, Amit On Fri, Nov 18,

[appengine-java] Dashboard datastore problems?

2011-11-18 Thread Guillaume Laforge
Hi all, I'm wondering if I'm the only one to see this but... When I go to the dashboard, and click on datastore viewer, indexes or statistics, I get an error message: Server Error A server error has occurred. Return to Applications screen » https://appengine.google.com/ -- Guillaume Laforge

Re: [appengine-java] Dashboard datastore problems?

2011-11-18 Thread Bruno Fuster
It's working fine here. On Fri, Nov 18, 2011 at 12:45 PM, Guillaume Laforge glafo...@gmail.comwrote: Hi all, I'm wondering if I'm the only one to see this but... When I go to the dashboard, and click on datastore viewer, indexes or statistics, I get an error message: Server Error A

[appengine-java] Re: Creating a new entity kind using the Datastore Viewer

2011-11-18 Thread Max
Did you search similar tickets before create one? I believe this has been requested for many times. You link doesn't work :) -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit

Re: [appengine-java] Dashboard datastore problems?

2011-11-18 Thread Guillaume Laforge
Thanks Bruno for your answer. It actually seems to be specific to one of my apps, only (appid: groovyconsole) Other apps in the dashboard work and let me see the datastore related information. Hopefully a Google engineer will notice :-) Guillaume On Fri, Nov 18, 2011 at 15:57, Bruno Fuster

[appengine-java] Re: Creating a new entity kind using the Datastore Viewer

2011-11-18 Thread Marcel Overdijk
Yes something went wrong. This is the correct link: http://code.google.com/p/googleappengine/issues/detail?id=6362 On Nov 18, 4:23 pm, Max thebb...@gmail.com wrote: Did you search similar tickets before create one? I believe this has been requested for many times. You link doesn't work :)

[appengine-java] prefetchSize vs chunkSize

2011-11-18 Thread Jeff Schnitzer
Would someone explain the exact differences between prefetchSize and chunkSize and how these interact? The documentation doesn't really help. I presume chunkSize is the number of items that get fetched on each RPC to the datastore backend, equivalent to a fetch() call in python-land. Is