One of the ways you could accomplish the
/app/servlet/* mapping is to map each of your servlets
in the app's web.xml file with a:

    <servlet-mapping>
        <servlet-name>MyServlet</servlet-name>
        <url-pattern>/servlet/MyServlet</url-pattern>
    </servlet-mapping>

for each servlet in your app.  You would also have to
define something like:

<servlet>
  <servlet-name>MyServlet</servlet-name>
  <display-name>MyServlet</display-name>
  <servlet-class>org.someorg.app.Name</servlet-class>
</servlet>

This would map the class Name in package
org.someorg.app to MyServlet, and then the
servlet-mapping would map the MyServlet name to a uri.

According to the documentation, you may have more than
one servlet-mapping per servlet-name, but then the
Apache-Tomcat mapping might get a bit cumbersome.

Then the people who build the pages will have to refer
to the servlet with the proper uri . . . .

HTH

/mde/
just my two cents . . . .

__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com

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

Reply via email to