[google-appengine] Re: Defining HTTP 404 response with web.xml

2009-05-21 Thread Tim Wickstrom
Hi Jeff, Thanks very much for your input. I was able to build a servlet that redirects any request resulting in a 404 to a specific file. Tim On May 19, 5:24 pm, Jeff S (Google) j...@google.com wrote: Hi Tim, I haven't tried using an error-page in web.xml, but you could add a servlet

[google-appengine] Re: Defining HTTP 404 response with web.xml

2009-05-19 Thread Jeff S (Google)
Hi Tim, I haven't tried using an error-page in web.xml, but you could add a servlet mapping which matches all requests which fall through the above mappings (place it at the end of the web-app) and use it to write out your custom error page. I'm looking into the error-page element as well.