I am using Java to run my google app, and I would like to override the
default 404 error that is thrown.

I am attempting to do this by defining the error page with web.xml

<web-app xmlns="http://java.sun.com/xml/ns/javaee"; version="2.5">
  ... stuff ...
  <error-page>
    <error-code>404</error-code>
    <location>/test404.html</location>
  </error-page>
</web-app>

The application doesn't seem to be reacting to the change I've made to
the web.xml file. Has anyone else run into a similar issue? Is there
another method I should be using to define the 404 response in java?

Thanks!

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to