RE: mod_jk2 config

2002-03-11 Thread GOMEZ Henri
I just recall the Apache patches : The faster time() implementation for Apache 1.3/2.0 have been provided by SGI patches, now at SF. http://aap.sourceforge.net - Henri Gomez ___[_] EMAIL : [EMAIL PROTECTED](. .) PGP KEY : 697ECEDD

RE: mod_jk2 config

2002-03-11 Thread GOMEZ Henri
Yes, and we had all to relearn it :-) You already know me, as long as nobody complains ( and -1 ) I move on until I'm happy enough with the design. And that's fine :) Jk was already 'object oriented C', I just enhanced that and tried to clean up a bit. And it works well, better design and

RE: mod_jk2 config

2002-03-11 Thread costinm
On Tue, 12 Mar 2002, GOMEZ Henri wrote: The best UI for configuration is xemacs ( or vi ) :-) May be for experienced users/admins, but this kind of tools are one of the reason IT managers choose products like websphere because they fill it will be easier to manage. I had a :-) at the

RE: mod_jk2 config

2002-03-11 Thread GOMEZ Henri
The best UI for configuration is xemacs ( or vi ) :-) May be for experienced users/admins, but this kind of tools are one of the reason IT managers choose products like websphere because they fill it will be easier to manage. I had a :-) at the end :-) Yes, I noticed ;) The whole point

RE: mod_jk2 config

2002-03-11 Thread GOMEZ Henri
What about iPlanet and Domino ? I have to sleep sometimes :-) If nobody volunteers to help, I'll do iPlanet too, but for domino - I have no idea, never used it. May be Mike could works on iPlanet (it's our resident hacker on it). For Domino we should ask to the Andy Armstrong [EMAIL

RE: mod_jk2 config

2002-03-07 Thread GOMEZ Henri
tomcat allready decode the information and could send them in a simpler form to jk. Yes, but that creates some strange dependencies between configuring apache ( or the web server ) and running tomcat. The recurrent chickeneggs problem :) Tomcat must be run first, and some magic must happen

Re: mod_jk2 config

2002-03-07 Thread jean-frederic clere
GOMEZ Henri wrote: tomcat allready decode the information and could send them in a simpler form to jk. Yes, but that creates some strange dependencies between configuring apache ( or the web server ) and running tomcat. The recurrent chickeneggs problem :) Tomcat must be run

RE: mod_jk2 config

2002-03-07 Thread GOMEZ Henri
I was thinking about a faster time() alternative, there was hacks in Apache 1.3 done by a MIPS employee sometimes ago, hacks never really reintroduced in Apache 1.3, but many where incorporated in Apache 2.0. May be JF could told us more about this ? A quick look in APR shows apr_time_now()

RE: mod_jk2 config

2002-03-07 Thread costinm
On Thu, 7 Mar 2002, GOMEZ Henri wrote: In future versions we can add anything - the code is now much more modular and easier to extend. Yes, and we had all to relearn it :-) You already know me, as long as nobody complains ( and -1 ) I move on until I'm happy enough with the design. Jk

RE: mod_jk2 config

2002-03-05 Thread GOMEZ Henri
uri.servletName:/my.host.com:8080/examples/HelloW=HelloWorldServlet Could we get these translation from web.xml forwarded by Ajp14 autoconf feature ? We should get these from web.xml - either extracted directly or by extracting the info from tomcat. tomcat allready decode the information

RE: mod_jk2 config

2002-03-05 Thread costinm
On Tue, 5 Mar 2002, GOMEZ Henri wrote: We should get these from web.xml - either extracted directly or by extracting the info from tomcat. tomcat allready decode the information and could send them in a simpler form to jk. Yes, but that creates some strange dependencies between

RE: mod_jk2 config

2002-03-04 Thread GOMEZ Henri
On Fri, 1 Mar 2002, Ignacio J. Ortega wrote: JkMount /uri worker is /uri=worker I like to point out, that just now isapi_redirector ( 3.3 and j-t-c) uses a slightly more complex form of the former syntax, to allow a limited vhost mapping capabilty in isapi_redirector,

Re: mod_jk2 config

2002-03-04 Thread jean-frederic clere
GOMEZ Henri wrote: On Fri, 1 Mar 2002, Ignacio J. Ortega wrote: JkMount /uri worker is /uri=worker I like to point out, that just now isapi_redirector ( 3.3 and j-t-c) uses a slightly more complex form of the former syntax, to allow a limited vhost mapping capabilty in

RE: mod_jk2 config

2002-03-04 Thread GOMEZ Henri
With my recent changes, there are few changes in the config. My config is: ( in httpd.conf ) LoadModule jk2_module modules/mod_jk2.so IfModule mod_jk2.c JkSet logLevel debug JkSet worker.ajp13.type ajp13 JkSet worker.ajp13.channel socket JkSet worker.ajp13.port 8009 Great # JkSet

RE: mod_jk2 config

2002-03-04 Thread costinm
On Mon, 4 Mar 2002, GOMEZ Henri wrote: Location /jkstatus JkUriSet worker status /Location So status is a specialized worker used to display the jk state Yes, jk_worker_status.c It has minimal stuff inside - help needed to add more ! ( eventually cutpastes from mod_jserv :-) I

RE: mod_jk2 config

2002-03-04 Thread costinm
On Mon, 4 Mar 2002, GOMEZ Henri wrote: uri.servletName:/my.host.com:8080/examples/HelloW=HelloWorldServlet Could we get these translation from web.xml forwarded by Ajp14 autoconf feature ? We should get these from web.xml - either extracted directly or by extracting the info from tomcat.

mod_jk2 config

2002-03-02 Thread costinm
With my recent changes, there are few changes in the config. My config is: ( in httpd.conf ) LoadModule jk2_module modules/mod_jk2.so IfModule mod_jk2.c JkSet logLevel debug JkSet worker.ajp13.type ajp13 JkSet worker.ajp13.channel socket JkSet worker.ajp13.port 8009 # JkSet

mod_jk2 config

2002-03-01 Thread costinm
Hi, I implemented the changes we discussed, now mod_jk2 supports only 2 spache specific directives - JkSet ( fully equivalent with workers.properties ), and JkUriSet for per/location settings. The big problem is urimap.properties. The file is used for IIS, and is equivalent with JkMount.

RE: mod_jk2 config

2002-03-01 Thread Ignacio J. Ortega
De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Enviado el: viernes 1 de marzo de 2002 17:39 JkMount /uri worker is /uri=worker I like to point out, that just now isapi_redirector ( 3.3 and j-t-c) uses a slightly more complex form of the former syntax, to allow a limited vhost mapping

RE: mod_jk2 config

2002-03-01 Thread costinm
On Fri, 1 Mar 2002, Ignacio J. Ortega wrote: JkMount /uri worker is /uri=worker I like to point out, that just now isapi_redirector ( 3.3 and j-t-c) uses a slightly more complex form of the former syntax, to allow a limited vhost mapping capabilty in isapi_redirector,