Hi

I'm not getting the standard Tomcat error message pages any more when errors occur. I get a bland page with the following text "Additionally, error 404 Not Found was encountered while attempting to use ErrorDocument to handle the request." I guess I don't have the ErrorReportValve configured properly. Below is my server.xml. I've tried to strip server.xml down to the bare minimum. What can I do to get the error handling back to the way it worked originally?

<?xml version='1.0' encoding='utf-8'?>
<Server className="org.apache.catalina.core.StandardServer"
port="8013" debug="0" shutdown="SHUTDOWN">
<Service className="org.apache.catalina.core.StandardService"
debug="0" name="Tomcat-Apache">
<Connector className="org.apache.ajp.tomcat4.Ajp13Connector"
port="8014" minProcessors="5" maxProcessors="75"
acceptCount="10" debug="9" tomcatAuthentication="false">
</Connector>
<Engine name="Standalone" defaultHost="localhost" debug="0">
<Logger className="org.apache.catalina.logger.FileLogger"
prefix="catalina_log." suffix=".txt" timestamp="true" verbosity="0">
</Logger>
<Host className="org.apache.catalina.core.StandardHost"
appBase="webapps" autoDeploy="true"
configClass="org.apache.catalina.startup.ContextConfig"
contextClass="org.apache.catalina.core.StandardContext"
debug="0" deployXML="true"
errorReportValveClass="org.apache.catalina.valves.ErrorReportValve"
liveDeploy="true"
mapperClass="org.apache.catalina.core.StandardHostMapper"
name="localhost" unpackWARs="true">
</Host>
</Engine>
</Service>
</Server>


TIA, PLA



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to