I am running tomcat 3.22, with mod_jk, and apache 1.3.20. Apache serves my
static context and tomcat does my jsp. All works well but I am now trying
to migrate my old jserv set up over to my tomcat box. In my jserv set up I
have zones set up to access a package of servlets that are accessed like
http://www.xxxx.com/AServletName
I can get it to work if called like so:
http://www.xxxx.com/TomcatContext/Servlet/AServletName
I need to lose the TomcatContext/Servlet stuff. I have tried adding entries
to my web.xml like so:
<servlet>
<servlet-name>
AServletName
</servlet-name>
<servlet-class>
com.packagename.AServletClass
</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>
AServletName
</servlet-name>
<url-pattern>
/AServletName
</url-pattern>
</servlet-mapping>
to no avail. There must be another step I am missing but I can find no docs
on it anywhere. Please Help
ryan