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-file>guestbook.jsp</welcome-file>
        </welcome-file-list>

instead of

        <welcome-file-list>
                <welcome-file>/guestbook.jsp</welcome-file>
        </welcome-file-list>


the second version which is the one listed as example works locally
with Jetty but does not work once deployed.


On Aug 23, 6:39 am, 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 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 your case it would only be 'guestbook,' unless you've
> uploaded additional apps. So you should be able to access three
> different pages (as you should be able to on your local server):
>
> http://anudemoapp.appspot.com/http://anudemoapp.appspot.com/guestbook
> andhttp://anudemoapp.appspot.com/guestbook.jsp
>
> On Aug 23, 9:32 am, eshriek <eshr...@gmail.com> wrote:
>
> > Try using the full url path to the 
> > application:http://anudemoapp.appspot.com/guestbook.jsp
--~--~---------~--~----~------------~-------~--~----~
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@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to