[appengine-java] Servlet Mapping not working as expected

2011-09-26 Thread Andrew Ducker
I'm trying to get Velocity up and running with GAE, and the first problem I'm bumping into is that servlet mapping doesn't seem to be working as I'd expect. I've cut down the Web.xml to its bare minimum: servlet servlet-namevelocity/servlet-name

Re: [appengine-java] Servlet Mapping not working as expected

2011-09-26 Thread Stephen Johnson
My guess is that Google is interpreting them as static files and Google's infrastructure is handling them before it reaches your app. So, read up on excluding static files so they aren't served up by Google's infrastructure at http://code.google.com/appengine/docs/java/config/appconfig.html Also,

[appengine-java] Servlet Mapping not working as expected

2010-01-11 Thread Icarus
Hi, I have the following issue : The below servlet mapping when run on the local app engine instance maps correctly for http://localhost:8080/sitefeed/ but not for http://localhost:8080/sitefeed !-- The '/' is not used -- servlet servlet-nameSiteUploadServlet/servlet-name