Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I installed tomcat and removed the comments of cgi script in web.xml in conf folder Now iam not able to understand where to place my cgi script I have read many resources and i placed it in a Webapps/Myfolder/WEB-INF/cgi/hello.cgi here hello.cgi is my sample cgi script I also typed the following in Webapps/Myfolder/WEB-INF/web.xml

`

<web-app>
   <servlet>
    <servlet-name>cgi</servlet-name>
    <servlet-class>org.apache.catalina.servlets.CGIServlet</servlet-class>
    <init-param>
      <param-name>debug</param-name>
      <param-value>0</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>
</servlet>

`

Now iam not understanding where should i map my cgi script here I am not getting any idea what exactly this web.xml does Can any one provide a solution how can i do this.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.