[appengine-java] GuestBook tutorial app does not work on AppEngine

2009-08-23 Thread Shack
Hi, I followed all instructions for the GuestBook application (no GWT) and deployed it onto the AppEngine. I am using Ubuntu 9.04 + Eclipse 3.5 + Google AppEngine 1.2.2. The application is running perfectly on my local machine. However I have no output at http://anudemoapp.appspot.com/. When I

[appengine-java] Re: GuestBook tutorial app does not work on AppEngine

2009-08-23 Thread alaindemour
I have the exact same problem right now ... is the appengine down? note that I see the 404 errors in the app engine Logs (Main - Logs), so it looks that the HTTP request reaches something in the app engine infrastructure On Aug 22, 11:11 pm, Shack shack1...@gmail.com wrote: Hi, I followed

[appengine-java] Re: GuestBook tutorial app does not work on AppEngine

2009-08-23 Thread alaindemour
It looks like deploying the default app created by the google toolbar (before cutting and pasting anything into it) does deploy and runs correctly, so I guess now it is a matter of debugging and trying to find what part of the Guestbook example does not agree with the App Engine. On Aug 22,

[appengine-java] Re: Maven

2009-08-23 Thread jd
On Aug 23, 2:46 am, Marcel Overdijk marceloverd...@gmail.com wrote: Has anyone had a better luck with this? I gave up on the mvn-appengine-plugin as the dependancies were broken and no one seems to maintain it. I also had a crack at using the datanucleus plugin but gave up after running

[appengine-java] Inheritance in JDO

2009-08-23 Thread jd
Hi, I have a structure similar to this this: class Zoo { Animal animal; } class Zebra implements Animal { } class Donkey implements Animal { } All classes are annotated as PersistenceCapable etc and enhanced. I get this error: javax.jdo.JDOUserException: Field animal is declared as a

[appengine-java] Re: GuestBook tutorial app does not work on AppEngine

2009-08-23 Thread eshriek
Just to clarify, index.html is the default file that will be returned if you do not specify the .jsp extension. Static files take priority when there is ambiguity. If you do not specify any file (as you did,) then you should receive a page with links to each application you have available. In

[appengine-java] Re: GuestBook tutorial app does not work on AppEngine

2009-08-23 Thread eshriek
Try using the full url path to the application: http://anudemoapp.appspot.com/guestbook.jsp If you use http://anudemoapp.appspot.com/guestbook You get your index.html file. I'm not sure why this happens. It may be a serve-side bug? On Aug 23, 2:11 am, Shack shack1...@gmail.com wrote: Hi, I

[appengine-java] Re: GuestBook tutorial app does not work on AppEngine

2009-08-23 Thread alaindemour
I think there is an inconsistency in the way jetty and the app engine handle welcome files configuration, I fixed my problem by removing the front slash in the web.xml file i.e. I used welcome-file-list welcome-fileguestbook.jsp/welcome-file /welcome-file-list

[appengine-java] Re: Can't make logging work

2009-08-23 Thread rick
Did you try changing level to FINEST in your logging.properties file ? --~--~-~--~~~---~--~~ 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

[appengine-java] Re: 401 Unauthorized Must authenticate first. I can't upload my project

2009-08-23 Thread Cyrano
As I have the same problem, I take the freedon to respond wiht my details. I tred with both Eclipse and Ant. When I enter a wrong password, I get the error email and password do not match. If I enter them correctly, I get the 401 Must authenticate first error. I am definetely not behind a proxy

[appengine-java] Re: Maven

2009-08-23 Thread Philippe Marschall
On Aug 22, 8:25 pm, drone andr...@gmail.com wrote: So, has anyone actually got Maven up and running with a GAE project? (and I mean really Maven, not Maven for this and Ant for that) Yeah, but I don't use JDO or GWT. I just build with Maven and upload with the shell script. I didn't get

[appengine-java] Re: Can't make logging work

2009-08-23 Thread David Given
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 rick wrote: Did you try changing level to FINEST in your logging.properties file ? Yes, that did it. Thanks very much! (And it would be dead handy if the App Engine documentation could mention this --- it is the only form of debugging

[appengine-java] Re: Maven

2009-08-23 Thread alain demour
K Sent from my iPhone On Aug 23, 2009, at 9:39 AM, Philippe Marschall philippe.marsch...@gmail.com wrote: On Aug 22, 8:25 pm, drone andr...@gmail.com wrote: So, has anyone actually got Maven up and running with a GAE project? (and I mean really Maven, not Maven for this and Ant for

[appengine-java] Re: GuestBook tutorial app does not work on AppEngine

2009-08-23 Thread Shack
Thank you. It works by using the guestbook.jsp as you have said. Cheers. --Shack On Aug 23, 11:39 pm, eshriek eshr...@gmail.com wrote: Just to clarify, index.html is the default file that will be returned if you do not specify the .jsp extension. Static files take priority when there is