RE: multiple URI

2010-01-20 Thread Vadym Chepkov
Unfortunately, I have to install such application in ROOT context for this to work and I am trying to avoid it. Sincerely yours, Vadym Chepkov --- On Wed, 1/20/10, Travis Beech travis.be...@gmail.com wrote: From: Travis Beech travis.be...@gmail.com Subject: RE: multiple URI To: 'Tomcat

RE: multiple URI

2010-01-20 Thread Caldarale, Charles R
From: André Warnier [mailto:a...@ice-sa.com] Subject: Re: multiple URI - then in the web.xml of the existing ROOT application, add the configuration for the UrlRewriteFilter. No. The webapp would be deployed as A or B (implementor choice), and a dummy webapp consisting only of the rewrite

Re: multiple URI

2010-01-20 Thread Vadym Chepkov
: multiple URI To: Tomcat Users List users@tomcat.apache.org Date: Wednesday, January 20, 2010, 9:37 AM Vadym Chepkov wrote: Unfortunately, I have to install such application in ROOT context for this to work and I am trying to avoid it. I think Chuck pointed you to one way of achieving

RE: multiple URI

2010-01-19 Thread Caldarale, Charles R
From: Vadym Chepkov [mailto:chep...@yahoo.com] Subject: multiple URI I want a servlet to serve two different urls: http://server/A and http://server/B, but I don't want to install this servlet as a ROOT servlet. Is this possible in tomcat 6? Do you mean you want the same webapp to be

RE: multiple URI

2010-01-19 Thread Travis Beech
Modify your servlet mapping in your web.xml so that you have more than one mapping to that servlet. Take the following xml snippet as an example, each of the three servlet mappings will map to a single servlet. This would allow someone to use three different URL's to access the same servlet.