[Lift] Re: GAE - working example?

2009-05-29 Thread glenn
The ant target, runappserver, is an ant macro included with the gae sdk. It does the same thing that dev_appserver does. The problem I'm having is that the HelloWorld.howdy snippet is suppose to return spana href=?login=Log in/a/span but it doesn't. The only thing displayed is liHomeli I can

[Lift] Re: GAE - working example?

2009-05-29 Thread glenn
Forget that last post. I got it working. I had template tag error in my code. Glenn... On May 28, 1:39 pm, denew de...@clear.net.nz wrote: I'm using maven for builds, so I can't help with your Ant process, but you need to start the appengine with something like:

[Lift] Re: GAE - working example?

2009-05-28 Thread glenn
I tried to get the sample at git://github.com/ymnk/lift-gae-api.git to work, but couldn't. Yes, I installed all the GAE jars in my local maven repository,but launching with mvn jetty:run doesn't start up the App Engine, so I get the following exception: Exception occured while processing /

[Lift] Re: GAE - working example?

2009-05-28 Thread denew
I'm using maven for builds, so I can't help with your Ant process, but you need to start the appengine with something like: root\appengine-java-sdk-1.2.1\bin\dev_appserver target\webapp-1.0- SNAPSHOT i.e., not just the jetty:run. I have this in a batch file in the webapp directory. Despite the

[Lift] Re: GAE - working example?

2009-05-27 Thread datanucleus
You're using invalid versions of DataNucleus jars (1.1.1+) with the GAEJ plugin for datanucleus. The current released plugin only allows DataNucleus 1.1.0 jars. Their next versions should allow the latest DataNucleus jars to be used, but you'll have to wait til they release it ;-) --Andy

[Lift] Re: GAE - working example?

2009-05-27 Thread denew
Thanks for that Andy - I had tried using 1.1.2 and 1.1.3 and thought I had gone back to a GAE-approved version - my mistake. I'll give that a shot On May 27, 9:11 pm, datanucleus andy_jeffer...@yahoo.com wrote: You're using invalid versions of DataNucleus jars (1.1.1+) with the GAEJ plugin for

[Lift] Re: GAE - working example?

2009-05-27 Thread denew
Embarassingly simple really - RTFM. Within the known limitation of using Lists for the collection, not Sets, the 1-M works. Now on to the compound keys... On May 28, 9:01 am, denew de...@clear.net.nz wrote: Thanks for that Andy - I had tried using 1.1.2 and 1.1.3 and thought I had gone back to