"Paul, Debra, & 4 Kids Mendelson" wrote:
> 
> In tomcat 3.2 I could map /servlet/ to /somethingelse/
> ...
> How do I do the equivalent in Tomcat 4.0?
> 

 In conf/web.xml:

   <!-- The mapping for the invoker servlet -->
    <servlet-mapping>
        <servlet-name>invoker</servlet-name>
        <url-pattern>/servlet/*</url-pattern>
    </servlet-mapping>

 Change <url-pattern> to something else.

 This will change the default for all the webapps.
If you want to change the mapping for a single webapp,
change  the entry in the appropriate WEB-INF/web.xml.


-- 
Christopher St. John [EMAIL PROTECTED]
DistribuTopia http://www.distributopia.com

--
To unsubscribe:   <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>

Reply via email to