[appengine-java] JSF 2.0 error EnableThreading

2010-08-02 Thread Gleidson - MG - Brasil
I did all the settings tutorial: https://sites.google.com/a/wildstartech.com/adventures-in-java/Java-Platform-Enterprise-Edition/JavaServer-Faces/sun-javaserver-faces-reference-implementation/configuring-jsf-20-to-run-on-the-google-appengine

[google-appengine] selecionar classe

2010-05-16 Thread Gleidson - MG - Brasil
help ... How do I retrieve a User and the Company that it Work? and a company with all Users? My classes: @PersistenceCapable(detachable = true) public class User implements Serializable { public Usuario() { } @PrimaryKey @Persistent(valueStrategy =

[google-appengine] new gae member

2010-03-22 Thread Gleidson - MG - Brasil
hello, I am Brazilian and participate in this nearby group. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appeng...@googlegroups.com. To unsubscribe from this group, send email to

[google-appengine] Re: questions on datastore (lowercase comparison / one character String )

2010-03-22 Thread Gleidson - MG - Brasil
If you're using a relational database it's pretty easy to execute case- insensitive queries because it's a native feature of the database. It usually looks something like this: select * from Person where UPPER(lastName) = 'ROSS' This is a challenge for the App Engine Datastore because we rely