RE: Apache modules with Tomcat

2003-02-24 Thread Turner, John
-Original Message- From: Jordan Hayes [mailto:[EMAIL PROTECTED] Sent: Sunday, February 23, 2003 12:55 AM To: Tomcat Users List Subject: Re: Apache modules with Tomcat Have you considered Tomcat filters instead? ... except that the modules I want to use are already written? Sure: it's

Re: Apache modules with Tomcat

2003-02-23 Thread Tim Funk
If you use JK, apache can do most of the work for you with their modules. If you are only running tomcat - you'll need to write Valves to get the modular like functionality. Filters might work too and are portable across containers but you are restricted in functionality with filters compared

Re: Apache modules with Tomcat

2003-02-23 Thread Jordan Hayes
If you use JK, apache can do most of the work for you with their modules. Well, maybe I'm dense then. In my VirtualHost, I did this: Directory / Header add MyHeader time %D msec start at %t /Directory If I visit http://blah.foo.com/index.html the header gets added; if I

Re: Apache modules with Tomcat

2003-02-23 Thread Tim Funk
Just guessing: http://httpd.apache.org/docs/mod/mod_headers.html Since the header directive is occuring in the directory / the directive is being processed for index.html just fine. But apache knows nothing about /examples/servlet/ since the directory doesn't physically exist so it probably is

RE: Apache modules with Tomcat

2003-02-22 Thread Turner, John
Have you considered Tomcat filters instead? John -Original Message- From: Jordan Hayes [mailto:[EMAIL PROTECTED] Sent: Saturday, February 22, 2003 7:00 PM To: Tomcat Subject: Apache modules with Tomcat Is there a way to add modules to servlet processing? For instance, I'd like to

Re: Apache modules with Tomcat

2003-02-22 Thread Jordan Hayes
Have you considered Tomcat filters instead? ... except that the modules I want to use are already written? Sure: it's software. I could just write something new. I take it the answer is 'no' then? :-) /jordan - To