Matt Goss wrote:
> Mike,
> the apjservmount is used to tell apache to go to tomcat for anything
> inside a specific context (ie http://mydomain/mycontextname/ gets sent
> to tomcat)
OK, can I specify more precise paths? If so, what would the syntax
in the tomcat.conf file?
> The web.xml is used for servlet mappings and such.... for instance:
> If you have a servlet (myservlet) in a packege (com.blah.foo.servlets)
> you need a mapping in the web.xml that looks like this:
> <servlet>
> <servlet-name>myservlet</servlet-name>
> <servlet-class>com.blah.foo.servlets.myservlet</servlet-class>
> </servlet>
> then you can access the servlet vi the url:
> http://www.mydomain.com/mycontextname/servlet/myservlet
At the moment my servlet is loaded & works no matter what I write
in the web.xml file ... kind of annoying though I understand what you
say.
You mentionned
<servlet>
<servlet-name>xxx</servlet-name>
<servlet-class>xxx</servlet-class>
</servlet>
What is this one for:
<servlet-mapping>
<servlet-name>xxx</servlet-name>
<url-pattern>/xxx</url-pattern>
</servlet-mapping>
Thanx anyway.
--mike
|