1 Reply Latest reply on Sep 26, 2003 1:16 PM by jackofspades

    Missing CGI Servlets Jar

    weingaertner

      Hi,

      in JBoss 3.2.2 RC3 and RC4 the servlets-cgi.jar is missing in jboss\server\default\deploy\jbossweb-tomcat41.sar. Without this jar no CGI scripts can be executed. Is this a bug or is there an intention behind it? I tried to copy the jar from tomcat 4.1.27 and now CGI scripts are working.

      Tim

        • 1. Re: Missing CGI Servlets Jar
          jackofspades

          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>

          -->