This content has been marked as final.
Show 1 reply
-
1. Re: Missing CGI Servlets Jar
jackofspades Sep 26, 2003 1:16 PM (in response to weingaertner)I think this is just a bug. The file should be there in order for CGIs to work. Although they have the CGIServlet turned off by default (commented out in web.xml):
<!--
<servlet-name>cgi</servlet-name>
<servlet-class>org.apache.catalina.servlets.CGIServlet</servlet-class>
<init-param>
<param-name>clientInputTimeout</param-name>
<param-value>100</param-value>
</init-param>
<init-param>
<param-name>debug</param-name>
<param-value>6</param-value>
</init-param>
<init-param>
<param-name>cgiPathPrefix</param-name>
<param-value>WEB-INF/cgi</param-value>
</init-param>
<load-on-startup>5</load-on-startup>
-->