[appengine-java] Re: Exhaustive JPA/JDO tutorial

2009-09-14 Thread Java_GAE
Thanks Esteban. This seems useful. Will read and post feedback later. On Sep 15, 12:02 am, Esteban Masoero wrote: > This should > help:http://www.datanucleus.org/products/accessplatform_1_1/index.html > > Regards, > > Esteban > > Java_GAE escribió: > > > Hi, &

[appengine-java] Exhaustive JPA/JDO tutorial

2009-09-14 Thread Java_GAE
Hi, Please anybody can post a link to exhaustive and intensive tutorial on JPA/JDO. I got head and tail from the google app engine tutorial but need to understand much more than that to create my application. Thanks in advance. --~--~-~--~~~---~--~~ You received

[appengine-java] Re: Google AppEngine app deploy error: "Unable to upload app: Unknown"

2009-09-13 Thread Java_GAE
Please try checking name of your application in appengine-web.xml (in war/WEB-INF). The name should be same as you have given while creating the application in google app admin console. Hope this will be useful. On Sep 13, 5:27 pm, gsw wrote: > The error in the log with that message in 1.2.5 is:

[appengine-java] Re: Expression Language does not get evaluated in JSP

2009-09-10 Thread Java_GAE
p 11, 1:25 am, Marcel Overdijk wrote: > This is a known issue. > Seehttp://code.google.com/p/googleappengine/issues/detail?id=1478&q=isEL... > > Cheers, > Marcel > > On Sep 10, 8:25 pm, Java_GAE wrote: > > > Hi, > > > When I use EL in JSP, I am getting

[appengine-java] Re: Working example JSF 2.0 em GAE

2009-09-10 Thread Java_GAE
HI Jaziel, I found this on "Will it play on Google App Engine". May be useful. ** JSF 1.1 appears to be working out-of-the-box. JSF 1.2 and JSF 2.0 should also work if you set the com.sun.faces.enableMultiThreadedStartup context parameter to false to your web.xml file. Setting this parameter to f

[appengine-java] Expression Language does not get evaluated in JSP

2009-09-10 Thread Java_GAE
Hi, When I use EL in JSP, I am getting unprocessed EL in the output. But when I add page directive <%@ page isELIgnored="false" %> to the JSP pages, everything works fine. I observed that I need to add this directive only in App Engine projects while other projects work fine even without this dir