[appengine-java] Re: GAE + Cloud SQL + Hibernate

2012-02-16 Thread datanucleus
> ConnectionPool : do any of C3P0, DBCP, or BoneCP work with CloudSQL ? > If so then you can use DataNucleus support for those (look at the DN > docs). Apparently DBCP "works" http://groups.google.com/group/google-cloud-sql-discuss/browse_thread/thread/a469cd08c2a2ac43 -- You received this messa

Re: [appengine-java] GAE + Cloud SQL + Hibernate

2012-02-16 Thread JT
We can send you one if that helps. Hth On Feb 14, 2012 6:33 AM, "lisandrodc" wrote: -- 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 unsubscribe from

[appengine-java] Re: Setting headers to static files / resources

2012-02-16 Thread andrew
Thanks. I was at the Issues page about to open it, when I saw your update. I have starred and added a comment regarding my need. -- 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

[appengine-java] channel using same client id

2012-02-16 Thread Luke
when subsequently call createChannel(clientA) , createChannel(clientA), both will generate different tokens. Does that mean 2 new channels will be created? how long will the first request expired if the token is not used and only use the second token? -- You received this message because you

[appengine-java] Increased Average HTTP Response Times since Feb 12th 2012

2012-02-16 Thread Mike Lawrence
Average HTTP Response times have gone from sub-second to about 10secs. http://montools.com/stats/11770 I've not changed any admin settings or code. Anyone else seeing this? Looks like the scheduler now causes more cold starts. Since me requests include memcache and database updates, not sure if

[appengine-java] Re: Increased Average HTTP Response Times since Feb 12th 2012

2012-02-16 Thread Matthias Friedrich
hi mike, i can confirm that. The responsetime is getting higher and higher, meanwhile some are above 90 seconds, causing complete failures. I wonder whats going on there? -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To view th

[appengine-java] GQL support in Java

2012-02-16 Thread kt
Hi, Is there a plan of supporting GQL in Java AppEngine? If yes, when can it be expected ? -- 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-

[appengine-java] Re: SecurityException thrown by java.lang.reflect.AccessibleObject.setAccessible(boolean flag)

2012-02-16 Thread Emanuele Ziglioli
Hi Mitch, I've spent some time trying to reproduce that with a unit test and with a specific GAE project, no luck. All I can see is that Field.isAccessible() consistently returns false on public fields. As long as we know that, we can then call Field.setAccessible() and that works without generati

[appengine-java] problem in servlet page on app engine

2012-02-16 Thread Hanaa ALTHeiabat
after i deploy my servlet on my app engine account this page appear Instead of my page Error: Server Error The server encountered an error and could not complete your request. If the problem persists, please report your problem and mention t on other hand , any html or jsp page it wor

[appengine-java] Is it safe for one ancestor to have millions of children in one List object?

2012-02-16 Thread hendrix.jason
If I have a @PersistenceCapable class that contains a List of another @PersistenceCapable class, and that List is millions of items in size, is that OK? Does that exceed a maximum for Java's List size? What is the best way for a parent to have millions of children and still have it easy to add ne