[appengine-java] Re: JDO Query ordering issue

2011-05-26 Thread mscwd01
The restriction I am referring to is mentioned here: http://code.google.com/appengine/docs/java/datastore/jdo/queries.html Scroll down to "Query Sort Orders" where it says: Due to the way the App Engine datastore executes queries, if a query specifies inequality filters on a property and sort orde

[appengine-java] Re: JDO Query ordering issue

2011-05-26 Thread Brandon Donnelson
I was thinking of import com.google.appengine.api.datastore.Query; http://code.google.com/appengine/docs/java/datastore/queries.html I'm not sure that's going to help b/c of the restriction mentioned. The way I deal with it is use multiple query drill down and depending on size I'll send them in

[appengine-java] Re: JDO Query ordering issue

2011-05-26 Thread WillSpecht
I think this is referring to the indexes needed to perform the query and not the sort orders needed. All you need to do is order only on score. As long as your indexes are updated your query should work fine. On May 26, 6:33 am, mscwd01 wrote: > The restriction I am referring to is mentioned >

[appengine-java] Re: Coding with Adobe Software

2011-05-26 Thread emurmur
Yes, the w3schools material is good. The mozilla foundation also had a great set of learning materials at http://developer.mozilla.org Click on the learning tab in the upper right. Ed On May 25, 4:00 am, Drew Spencer wrote: > Sorry dude, I kinda naively assumed you would already have some exper

[appengine-java] Re: why the development of java tools fall far behind that of python's?

2011-05-26 Thread Mitch Rudominer
Tapir, thanks for your feedback. I agree that there have been several cases where features have come out in Python long before Java. (There have been a few in the other direction too, but not as many.) This is something we are trying to improve upon in the future. I'm happy to tell you that one of

[appengine-java] Re: The API call datastore_v3.Put() was explicitly cancelled.

2011-05-26 Thread Ken Kahn
Same thing happened to me. It happened once and all seems fine now. On May 14, 12:13 am, JT wrote: > After upgrading to 1.5.0, I encountered this error: > com.google.apphosting.api.ApiProxy$CancelledException: > The API call datastore_v3.Put() was explicitly cancelled. which I could not > explain

[appengine-java] Lots ob DB errors today

2011-05-26 Thread Andrew G
I am having a lot of errors like this today com.google.apphosting.runtime.HardDeadlineExceededError: This request (876d44de5bdde8dc) started at 2011/05/26 11:23:35.574 UTC and was still executing at 2011/05/26 11:24:05.651 UTC. Is the datastore is placed on maintenance ? I have not seen any noti

[appengine-java] keeps giving me the message

2011-05-26 Thread misternomo
I must have done the challenge at least 10 times and i still get the same message which is getting to be really annoying >:( -- 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

[appengine-java] Still have java.lang.IllegalArgumentException: Invalid Key PB: no elements. for one to many relation

2011-05-26 Thread jimmy
Hello I have the java.lang.IllegalArgumentException: Invalid Key PB: no elements for the one to many relation Here is my parent code package com.info.shareCar.data.entity; import java.util.List; import javax.jdo.annotations.IdGeneratorStrategy; import javax.jdo.annotations.PersistenceCapable;

[appengine-java] geonames rest webservice call in google app engine not working

2011-05-26 Thread geocoding
i deployed my application on google apps engine..my application is based on geocoding...and uses* struts1.3 framework*...and makes a* rest webservice call to geonames* for timezone information..i have tested the application locally on google web application locally and on google web apllicatio

Re: [appengine-java] Re: why the development of java tools fall far behind that of python's?

2011-05-26 Thread Max Ross (Google)
I would also point out that it is possible for Java apps to migrate from Master/Slave to High Replication: http://code.google.com/appengine/docs/adminconsole/datastoreadmin.html#Copying_Entities_to_Another_Application Having to create an empty Python version of your app is no doubt clunky and not

Re: [appengine-java] Re: why the development of java tools fall far behind that of python's?

2011-05-26 Thread Jeff Schnitzer
+1 The primary benefit of GAE comes from the services (datastore, task queue, memcache, etc) and the language is pretty much secondary. Don't be afraid to set up the Python SDK - it's *really* trivial (especially compared to setting up Eclipse). You don't even need to learn any Python. Chances a

Re: [appengine-java] Re: Google App Engine + Java Applet

2011-05-26 Thread Ian Gillett
Hi, You just need to put the applet jar(s) and the container JSP in the WAR directory and App Engine will then serve the Applet. All the best, Ian. On Wed, May 25, 2011 at 6:59 PM, SKP wrote: > Hi Ian > > How does that work, any idea? Because the GAE JRE doesnt support > java.applet.Applet. >

[appengine-java] AppEngine accesing BigTable data

2011-05-26 Thread Padmadevan Chettiar
Hi, Noogler here. My GAE app is running on googleplex and I have data in a Bigtable (hosted on prod). What is the best way to gain access to this data. Directly using Bigtable Java API doesn't seem to work. I'm receiving an Access Denied exception. Padmadevan -- You received this message becaus