| I am getting a 404 Error, what does it mean? |
|
In simple terms, it means the server was not able to locate the resource you requested. This can occur because of four reasons:
The last two cases are caused by a test in org.apache.tomcat.core.DefaultServlet to see whether the absolute name of a file equals the canonical name. This test is intended to solve a serious security problem, where mixed case or additional characters in a file name can get Tomcat to serve the source file instead of the processed file for JSP files on a Windows platform. This test should be replaced with a solution that doesn't have the above side effects. |