https://bz.apache.org/bugzilla/show_bug.cgi?id=69195
--- Comment #4 from Ganeshkumar <gk753...@gmail.com> --- Tomcat only returning the 400 response but it looks like wierd i dont know why! my issue is my webapp is not returning the custom400 error page it shows default 400 tomcat error page but its working fine for 404 and 500 errors. i was tried every thing but its not shows the custom error page 1)---web.xml--- <error-page> <error-code>400</error-code> <location>/error.html</location> </error-page> <error-page> <error-code>404</error-code> <location>/404.xhtml</location> </error-page> <error-page> <error-code>500</error-code> <location>/500.xhtml</location> </error-page> 2)--my server.xml---when i changed for this error one by one <Valve className="com.example.CustomErrorReportValve" showReport="false" showServerInfo="false" /> 3)<Valve className="org.apache.catalina.valves.ErrorReportValve" showReport="false" showServerInfo="false" errorCode.400="/errors/400.xhtml" /> i handled this error in server and web level but its not working out.kindly check this issue.thanks in advance -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org