Assuming the classes are in directory WEB-INF/Classes/Classes/
First of all you must store the class files under WEB-INF/classes and try invoking the servlet using any of the standard procedure.
Secondy, according to your WEB-INF directory structure the Classes directory under /Classes will be treated as a package path.
for example,
package Example;
{
your class definitions
}
the dir structure should be WEB-INF/classes/Example/<your class file> and you must invoke the servlet using the package name.servletname.
the dd format is as follws.
<servlet>
<servlet-name>example</servlet-name>
<servlet-class>ExampleServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>example<servlet-name>
<url-pattern>/servlet/ExampleServlet</url-pattern>
</servlet-mapping>
hope this helps.
regards,
ravi.
[ June 15, 2004: Message edited by: Ravikumar Jambunathan ]