> I have gone into the web.xml file to do some "heavy" [sic] editing
> of it, such as putting in the servlet name and the servlet class,
> but alas, to no avail so far!
Well, it would help to see that segment of the file, and also find out from
you where you put the .class file. Do you have a servlet mapping defined,
or just the servlet? If the latter, did you enable the invoker, or are you
just sort of waiting for magic to happen?
In other words, in addition to (for example):
<servlet>
<servlet-name>
photo
</servlet-name>
<servlet-class>
com.devtech.servlet.PhotoServlet
</servlet-class>
</servlet>
you also need
<servlet-mapping>
<servlet-name>invoker</servlet-name>
<url-pattern>/servlets/*</url-pattern>
</servlet-mapping>
or an explicit mapping for each servlet.
--- Noel
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>