Re: AJP Todo

2001-12-13 Thread Bill Barker
The ${Server}Config files are about as good as I can get them. Any remaining improvements would require someone that knows more about Catalina than I do. The main improvement that I can think of would require an API change in Catalina, but this configuration method will likely be obsolete by

Re: AJP Todo

2001-12-10 Thread Remy Maucherat
If the web app is deployed as a directory, you can call context.getDocBase() for this. If the context is deployed as a WAR file, there is no such thing as the document base as an absolute path. In such a scenario, you need to choose one of the following options: Unfortunately, if the

Re: AJP Todo

2001-12-10 Thread Incze Lajos
On Sun, Dec 09, 2001 at 08:24:35PM -0800, Bill Barker wrote: ... (b) For a context defined in the server.xml, there seems to be no public way to determine the document base as an absolute path. This may just be my lack of familiarity with Catalina however. On a related note, I wasn't able

Re: AJP Todo

2001-12-10 Thread Bill Barker
- Original Message - From: Incze Lajos [EMAIL PROTECTED] To: Tomcat Developers List [EMAIL PROTECTED] Sent: Monday, December 10, 2001 8:02 AM Subject: Re: AJP Todo What's wrong with this? (ServletContext method javadoc both 2.2 and 2.3) Absolutely nothing. And indeed

Re: AJP Todo

2001-12-10 Thread Craig R. McClanahan
On Mon, 10 Dec 2001, Bill Barker wrote: Date: Mon, 10 Dec 2001 20:00:35 -0800 From: Bill Barker [EMAIL PROTECTED] Reply-To: Tomcat Developers List [EMAIL PROTECTED] To: Tomcat Developers List [EMAIL PROTECTED] Subject: Re: AJP Todo - Original Message - From: Incze Lajos [EMAIL

Re: AJP Todo

2001-12-10 Thread Bill Barker
- Original Message - From: Craig R. McClanahan [EMAIL PROTECTED] To: Tomcat Developers List [EMAIL PROTECTED] Sent: Monday, December 10, 2001 8:59 PM Subject: Re: AJP Todo On Mon, 10 Dec 2001, Bill Barker wrote: Date: Mon, 10 Dec 2001 20:00:35 -0800 From: Bill Barker [EMAIL

Re: AJP Todo

2001-12-09 Thread Bill Barker
to a war file). - Original Message - From: Craig R. McClanahan [EMAIL PROTECTED] To: Tomcat Developers List [EMAIL PROTECTED] Sent: Sunday, December 02, 2001 4:17 PM Subject: Re: AJP Todo On Sat, 1 Dec 2001, Bill Barker wrote: Date: Sat, 1 Dec 2001 17:17:31 -0800 From: Bill Barker

Re: AJP Todo

2001-12-09 Thread Craig R. McClanahan
On Sun, 9 Dec 2001, Bill Barker wrote: Date: Sun, 9 Dec 2001 20:24:35 -0800 From: Bill Barker [EMAIL PROTECTED] Reply-To: Tomcat Developers List [EMAIL PROTECTED] To: Tomcat Developers List [EMAIL PROTECTED] Subject: Re: AJP Todo I've just checked in an initial port of ${Server}Config

Re: AJP Todo

2001-12-09 Thread Bill Barker
- Original Message - From: Craig R. McClanahan [EMAIL PROTECTED] To: Tomcat Developers List [EMAIL PROTECTED] Sent: Sunday, December 09, 2001 8:29 PM Subject: Re: AJP Todo If the web app is deployed as a directory, you can call context.getDocBase() for this. If the context

RE: AJP Todo

2001-12-03 Thread GOMEZ Henri
: 697ECEDD...oOOo..(_)..oOOo... PGP Fingerprint : 9DF8 1EA8 ED53 2F39 DC9B 904A 364F 80E6 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Sunday, December 02, 2001 6:36 PM To: Tomcat Developers List Subject: Re: AJP Todo On Sat, 1 Dec 2001 [EMAIL PROTECTED

Re: AJP Todo

2001-12-02 Thread costinm
On Sat, 1 Dec 2001, Remy Maucherat wrote: If you want to work on this, it would be great to make it a bit more independent of the container. Right now it is very tightly coupled, in order for it to work you need to start tomcat, it doesn't work very well with context reloads, etc. I'd

Re: AJP Todo

2001-12-02 Thread costinm
On Sat, 1 Dec 2001 [EMAIL PROTECTED] wrote: On the TODO list for AJP, there is: - Implementing jvmroute. I think I found a way to do it without accessing the Request. Costin -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: AJP Todo

2001-12-02 Thread Craig R. McClanahan
On Sat, 1 Dec 2001, Bill Barker wrote: Date: Sat, 1 Dec 2001 17:17:31 -0800 From: Bill Barker [EMAIL PROTECTED] Reply-To: Tomcat Developers List [EMAIL PROTECTED] To: Tomcat Developers List [EMAIL PROTECTED] Subject: Re: AJP Todo I have no objection to help porting ${Server}Config to 4

Re: AJP Todo

2001-12-01 Thread Bill Barker
I have no objection to help porting ${Server}Config to 4.x, but I'm still a Catalina novice. The 3.3 API is more command and control, so it is easier to get to the information. It will take me a little time to find out how to get the servlet-mappings in Catalina. - Original Message -

Re: AJP Todo

2001-12-01 Thread costinm
On Sat, 1 Dec 2001, Remy Maucherat wrote: Hi, On the TODO list for AJP, there is: - Implementing jvmroute. Unfortunately that's not that easy. Manager has no way to access the Request, and that means no way to get the jvmRoute. The only possible hack is to 'intercept' the cookie header in

Re: AJP Todo

2001-12-01 Thread costinm
On Sat, 1 Dec 2001, Bill Barker wrote: I have no objection to help porting ${Server}Config to 4.x, but I'm still a Catalina novice. The 3.3 API is more command and control, so it is easier to get to the information. It will take me a little time to find out how to get the servlet-mappings

Re: AJP Todo

2001-12-01 Thread Remy Maucherat
On Sat, 1 Dec 2001, Bill Barker wrote: I have no objection to help porting ${Server}Config to 4.x, but I'm still a Catalina novice. The 3.3 API is more command and control, so it is easier to get to the information. It will take me a little time to find out how to get the