is your web.xml set up correctly for the class?

for example:
    <servlet>
        <servlet-name>
            servletname
        </servlet-name>
        <servlet-class>
            com.pkg.here.ServletName
        </servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>
                servletname
        </servlet-name>
        <url-pattern>
                /servletname/
        </url-pattern>
    </servlet-mapping>

Show the configuration you are using for the servlet in your web.xml
if you do already have this set up.

I don't believe this is a problem with TOMCAT finding the lib dir
but more like TOMCAT not being told where the Servlet is located.


---
Michael Wentzel
Software Developer
<A HREF="http://www.aswethink.com">Software As We Think</A>
<A HREF="mailto:[EMAIL PROTECTED]">Michael Wentzel</A>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to