Servlet of class org.apache.catalina.servlets.CGIServlet is privileged and cannot be loaded by this web application
Case:
Under Windows / Tomcat 6:
java.lang.SecurityException: Servlet of class org.apache.catalina.servlets.CGIServlet is privileged and cannot be loaded by this web application
Fix:
In the web.xml
file, add the following block:
<context-param> <param-name>privileged</param-name> <param-value>true</param-value> </context-param>