Re: [appengine-java] Re: Improved query planner in SDK 1.6.0

2011-11-15 Thread Mos
Bump 3 - Anyone from Googe? This was a major feature of V1.6. It would be nice if someone could elaborate on this. On Thu, Nov 10, 2011 at 8:46 PM, Emanuele Ziglioli theb...@emanueleziglioli.it wrote: Bump 2 :-) I'd be curious to see other people's experience with the new Query Planner.

[appengine-java] Re: JDO embedded object not being initialized after JDO query

2011-11-15 Thread djd
Any ideas? -- 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/-/alJZCMbNUUwJ. To post to this group, send email to

[appengine-java] Backup Restore Data

2011-11-15 Thread mscwd01
Hey I'd like to make a backup of the data of my HR datastore app. I looked at using the remote API but it somewhat unhelpfully says: If your app uses the High Replication datastore and you attempt to download data, you'll see a high_replication_warning error in the Admin Console, and the

Re: [appengine-java] Backup Restore Data

2011-11-15 Thread Matthew Jaggard
Why would it be a problem to be missing data at 14:59 in your 15:00 backup? Presumably if you have to restore at 18:23, you'll be far more concerned about the data missing between 15:00 and 18:23 than the data from 14:59 to 15:00? Mat. On 15 November 2011 15:31, mscwd01 mscw...@gmail.com wrote:

[appengine-java] Re: Backup Restore Data

2011-11-15 Thread mscwd01
If it's just the case that you may be missing recently saved entities it's not so much of an issue. When they stated that using the remote API to download data from an HR app is not an intended use case however, it didn't install much confidence. On Nov 15, 3:36 pm, Matthew Jaggard

Re: [appengine-java] Improved query planner in SDK 1.6.0

2011-11-15 Thread Alfred Fuller
On Wed, Nov 9, 2011 at 1:42 AM, Mos mosa...@googlemail.com wrote: Does the improved query planner reduce the need of managing indexes manually in the datastore-index.xml file? It increases the need to manage indexes manually I'm a bit confused. The documentation is not obvious for me.

Re: [appengine-java] Re: Improved query planner in SDK 1.6.0

2011-11-15 Thread Alfred Fuller
This really shouldn't happen, something strange is going on. I need to know the queries seen by the local development server that are failing and the indexes you have to debug it. On Wed, Nov 9, 2011 at 3:02 PM, Emanuele Ziglioli theb...@emanueleziglioli.it wrote: So, from what I see, my query

Re: [appengine-java] Re: Improved query planner in SDK 1.6.0

2011-11-15 Thread Alfred Fuller
The new query planner was actually released in 1.5.4 (the article was the only thing launched in 1.6.0) On Thu, Nov 10, 2011 at 11:46 AM, Emanuele Ziglioli theb...@emanueleziglioli.it wrote: Bump 2 :-) I'd be curious to see other people's experience with the new Query Planner. But 1.6.0

[appengine-java] Re: Updating Eclipse

2011-11-15 Thread Chris
My guess is the app engine team has been busy with moving out of preview. I filed an issue #6334: http://code.google.com/p/googleappengine/issues/detail?id=6334thanks=6334ts=1321362902 Anyone reading this should star this issue. On Nov 14, 6:35 pm, jon stevens latch...@gmail.com wrote: Yea,

[appengine-java] Serializing crypto classes

2011-11-15 Thread Thales Cloud
Hello, I am trying to serialize a class based on the crypto classes, without success, using objectify. I hasten to admit that this is the first time I have touched Java or any of the other technologies or environments, so I am way out of my depth and looking for a nudge in the right direction.

[appengine-java] Uncaught exception from servlet java.lang.UnsupportedClassVersionError with HelloWorld guest book example?

2011-11-15 Thread Chems
Just getting started with Google App Engine, using JRE7 and on trying my app I just get a 500 server error and this in my logs: Uncaught exception from servlet java.lang.UnsupportedClassVersionError Any ideas? -- You received this message because you are subscribed to the Google Groups

[appengine-java] Re: Updating Eclipse

2011-11-15 Thread Chris
Filed an issue (#6334): http://code.google.com/p/googleappengine/issues/detail?id=6334sort=-idcolspec=ID%20Type%20Component%20Status%20Stars%20Summary%20Language%20Priority%20Owner%20Log We need to star it to get it fixed... On Nov 14, 6:35 pm, jon stevens latch...@gmail.com wrote: Yea, that

[appengine-java] Google App Engine custom domain stuck in Activate this service infinite loop

2011-11-15 Thread MH
Hi there. I am trying to add a custom domain from the GAE Application Settings. It redirects me to You have requested that the ' (my app id) ' service be added to your domain https://www.google.com/a/cpanel/(my google apps domain)/ AddAppEngineService?appId=(my gae app id)pli=1 I accept the

Re: [appengine-java] Google App Engine custom domain stuck in Activate this service infinite loop

2011-11-15 Thread Jeff Schnitzer
This is going to sound really weird but I've had issues like this before and switching browsers seemed to fix it. Try Firefox. Jeff On Tue, Nov 15, 2011 at 2:49 PM, MH zvi.schrei...@gmail.com wrote: Hi there. I am trying to add a custom domain from the GAE Application Settings. It

[appengine-java] I loaded java today and now its saying it wont work

2011-11-15 Thread slb67
can someone help me it says its still in the computer but I deleted it so what do i do now -- 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: Uncaught exception from servlet java.lang.UnsupportedClassVersionError with HelloWorld guest book example?

2011-11-15 Thread Simon Knott
JRE7 isn't supported, you need to use JDK6. -- 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/-/ro2mMcBE-3UJ. To post to this group, send

[appengine-java] Re: Serializing crypto classes

2011-11-15 Thread Gerald Tan
Only Serializable objects can be used as properties, and Cipher isn't serializable. The solution is to store the algorithm as a String, then reinstantiating the Cipher from the algorithm string after retrieving it from the datastore. -- You received this message because you are subscribed to

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

2011-11-15 Thread Jeff Schnitzer
On Tue, Nov 15, 2011 at 10:30 PM, Gerald Tan woefulwab...@gmail.com wrote: Only Serializable objects can be used as properties, and Cipher isn't serializable. The solution is to store the algorithm as a String, then reinstantiating the Cipher from the algorithm string after retrieving it from