[appengine-java] Eclipse plugin failure after log4j added to the classpath (WEB-INF/lib)

2010-01-10 Thread stumpy
I am using the google eclipse plugin for app engine and once I add log4j to WEB-INF/lib and to my project classpath the automatic datanucleus enhancement step starts to fail with the error at the bottom of this message. My ant build script still works fine, so could anyone confirm whether I might

[appengine-java] Re: Dev server datastore deadlock

2009-10-31 Thread stumpy
#x27;s publicly > viewable? > > - Jason > > On Wed, Oct 28, 2009 at 2:27 AM, stumpy wrote: > > > The thread dump is a bit cryptic so I reduced the problem down to a > > small servlet that fails. > > > Use the servlet below in the development environment and set up

[appengine-java] Re: Dev server datastore deadlock

2009-10-28 Thread stumpy
Entity(key); e.setProperty("property_bytes", new Blob(new byte[100])); ds.put(t, e); t.commit(); } catch (Throwable th) { if (t.isActive()) { t.rollback(); } } } On Oct

[appengine-java] Re: Dev server datastore deadlock

2009-10-27 Thread stumpy
http://docs.google.com/Doc?docid=0AV6jRtzB1ZNYZGNtNWdxemZfNjNkYjVkajlkdg&hl=en_GB --~--~-~--~~~---~--~~ 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] Dev server datastore deadlock

2009-10-27 Thread stumpy
When the Java development server handles several simultaneous requests that write to the datastore it causes a deadlock and I am reasonably sure that previous versions of the dev server didn't have this problem. Has anyone else experienced this problem and does anyone have a workaround? Prehaps

[appengine-java] Re: Startup takes forever

2009-09-12 Thread stumpy
I have also noticed long startup times and spent some time attempting to diagnose the problem. The first thing I found was that the first time a jar file is used/ referenced a significant overhead is incurred, Typically 1-2 seconds but sometimes as long as 30 in rare occasions (resulting in a tim

[appengine-java] Re: sending binary data (serialized object) via TaskOptions.payload()

2009-09-12 Thread stumpy
Thanks for posting your solution. I ran up against this problem a few days ago and thought I was missing something so started using GET instead. On Sep 11, 4:11 am, Vince Bonfanti wrote: > After two days of banging my head against this, it turns out to be a > bug in the development environment,

[appengine-java] Re: Bulk Uploading Data

2009-09-01 Thread stumpy
You could compress the files before uploading and decompress them on the server. On Sep 1, 3:46 pm, mscwd01 wrote: > I have some 30,000 files consisting of 800kb that I want to upload and > save in the data store. As us java users dont have an easy way of > uploading data I am resorting to usin