Title: servlet mapping question

I'm trying to map the /faqtool url listed below
        <form name="menu" action="/faqtool" method="post">
so that it references the class com.taglib.wdjsp.faqtool.FaqAdministrationServlet

I've tried the following in webapps/bill/web.xml and in tomcat\conf\web.xml and I continually
get a Tomcat error msg. : 'No handler for request R< + /faqtool + null> 404

The servlet xml entry is:
<servlet>
        <servlet-name>FaqAdmin</servlet-name>
        <servlet-class>com.taglib.wdjsp.faqtool.FaqAdministrationServlet</servlet-class>
        </servlet>
       <servlet-mapping>
        <servlet-name>FaqAdmin</servlet-name>
        <url-pattern>/faqtool</url-pattern>
      </servlet-mapping>

Whats wrong with this picture? And do all servlets need to be entered in both the conf\web.xml and
\AppName\web-inf\web.xml file?

thanks in advance
 

Bill Blackmon
Sr. Software Engineer, GetMusic (http://www.getmusic.com)
11 W. 19th Street, 3rd Floor
New York, NY  10011
917-464-0683

Reply via email to