Re: Multiple paths to one application

2006-11-02 Thread Martin Gainty
arale, Charles R" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Thursday, November 02, 2006 10:31 AM Subject: RE: Multiple paths to one application > From: Peter Neu [mailto:[EMAIL PROTECTED] > Subject: AW: Multiple paths to one application > > My problem

RE: Multiple paths to one application

2006-11-02 Thread Caldarale, Charles R
> From: Peter Neu [mailto:[EMAIL PROTECTED] > Subject: AW: Multiple paths to one application > > My problem is that I have parts of my application which are > restricted and I just want to filter the path requests with > the httpd server which sits in front of tomcat so that I > don't to configu

RE: Multiple paths to one application

2006-11-02 Thread Caldarale, Charles R
> From: Andrew Miehs [mailto:[EMAIL PROTECTED] > Subject: Re: Multiple paths to one application > > Doesn't this only work if your application replaces the 'ROOT' > application? Correct. If you want two names for the same app, you could place an additional

Re: Multiple paths to one application

2006-11-02 Thread Stephan Schöffel
you are right. you still have to include the webapps folder in your path. therefore it would work this way: localhost/myapp/path1/servlet1 localhost/myapp/path2/servlet2 i guess you had to replace the root app to have just / as your app folder... (just as you said) --stephan Andrew Miehs wr

Re: Multiple paths to one application

2006-11-02 Thread Andrew Miehs
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Doesn't this only work if your application replaces the 'ROOT' application? Andrew On 02/11/2006, at 9:56 AM, Stephan Schöffel wrote: if you map them to one app in your web.xml you can have different paths link to one app. like: MyS

Re: Multiple paths to one application

2006-11-02 Thread Stephan Schöffel
if you map them to one app in your web.xml you can have different paths link to one app. like: MyServlet my.Servlet MyServlet /path1/servlet1 MyServlet /path2/servlet2 both links would map to MyServlet ie my.Servlet.class Peter Neu w