Re: multiple URI

2010-01-20 Thread Vadym Chepkov
Unfortunately, this would change the request and breaks application functionality, it's a proxy already (IBM WBIMB Proxy Servlet - Message Broker) Sincerely yours, Vadym Chepkov --- On Wed, 1/20/10, André Warnier wrote: > From: André Warnier > Subject: Re: multiple URI &g

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 consist

Re: multiple URI

2010-01-20 Thread André Warnier
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 this, using the UrlRewriteFilter module (www.tuckey.org). That is a third-party Tomcat add-on module (free) w

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 wrote: > From: Travis Beech > Subject: RE: multiple URI > To: "'Tomcat Users List'"

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. R

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