cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/apr AprImpl.java

2002-06-29 Thread mturk
mturk 2002/06/29 00:43:24 Modified:jk/java/org/apache/jk/apr AprImpl.java Log: Introduced new native function jkStatus that signals the TC startup status to the server for now. Revision ChangesPath 1.22 +9 -0

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/apr TomcatStarter.java

2002-06-29 Thread mturk
mturk 2002/06/29 00:43:38 Modified:jk/java/org/apache/jk/apr TomcatStarter.java Log: Introduced new native function jkStatus that signals the TC startup status to the server for now. Revision ChangesPath 1.9 +5 -1

cvs commit: jakarta-tomcat-connectors/jk/native2/jni jk_jni_aprImpl.c

2002-06-29 Thread mturk
mturk 2002/06/29 00:44:04 Modified:jk/native2/jni jk_jni_aprImpl.c Log: Introduced new native function jkStatus that signals the TC startup status to the server for now. Revision ChangesPath 1.38 +14 -0

cvs commit: jakarta-tomcat-connectors/jk/native2/include jk_worker.h

2002-06-29 Thread mturk
mturk 2002/06/29 00:45:15 Modified:jk/native2/include jk_worker.h Log: Added initalized variable to the worker Revision ChangesPath 1.25 +6 -1 jakarta-tomcat-connectors/jk/native2/include/jk_worker.h Index: jk_worker.h

cvs commit: jakarta-tomcat-connectors/jk/native2/include jk_channel.h

2002-06-29 Thread mturk
mturk 2002/06/29 00:45:46 Modified:jk/native2/include jk_channel.h Log: Added status callback function Revision ChangesPath 1.16 +4 -0 jakarta-tomcat-connectors/jk/native2/include/jk_channel.h Index: jk_channel.h

cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_worker_lb.c

2002-06-29 Thread mturk
mturk 2002/06/29 00:48:20 Modified:jk/native2/common jk_worker_lb.c Log: Serialize the calls to the workers until the first call finishes or times out. Added new config param 'timeout' setting the initialization worker timeout. Revision ChangesPath 1.21 +88

cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_worker_ajp13.c

2002-06-29 Thread mturk
mturk 2002/06/29 00:49:30 Modified:jk/native2/common jk_worker_ajp13.c Log: If the channel provides the status callback call that and return if channel has not been initialized Revision ChangesPath 1.35 +8 -0

cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_channel_jni.c

2002-06-29 Thread mturk
mturk 2002/06/29 00:51:20 Modified:jk/native2/common jk_channel_jni.c Log: Add 'init' param that if set disables the channel until the TC startup finishes, or lb timeout occurs. Revision ChangesPath 1.29 +38 -3

mod_jk startup

2002-06-29 Thread Mladen Turk
Hi, Some more explanations about the recent patch. All the worker initialization checking is done in the load balancer. The only drawback is that all the calls are disabled until the worker finishes with the initialization (perhaps it could be done inside the worker itself but IMO it will be

cvs commit: jakarta-tomcat-connectors/jk/native2/server/isapi jk_isapi_plugin.c

2002-06-29 Thread mturk
mturk 2002/06/29 07:17:27 Modified:jk/native2/server/isapi jk_isapi_plugin.c Log: Create the thread when DllMain is called with the DLL_PROCCESS_ATTACH param that starts the jk2 initalization. That enables the inprocess TC to be started, cause it disables the thread locking

DO NOT REPLY [Bug 10347] - Path Info incorrectly processed for JSP's

2002-06-29 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=10347. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: mod_jk startup

2002-06-29 Thread costinm
On Sat, 29 Jun 2002, Mladen Turk wrote: All the worker initialization checking is done in the load balancer. +1 ! ( can I say I was thinking the same ? ) The load balancer has now the additional config parameter 'initTimeout' (default is 1 minute). That means that all the calls will be

DO NOT REPLY [Bug 10347] - Path Info incorrectly processed for JSP's

2002-06-29 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=10347. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

RE: mod_jk startup

2002-06-29 Thread costinm
On Sat, 29 Jun 2002, Mladen Turk wrote: Also, why a new jkStatus method instead of setAttribute() ? Need the static call, cause its called from TomcatStarter, and since I don't need to pass nothing fancy, that was the simplest thing I can think of. Well, it's ok - but long term I

cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_worker_lb.c

2002-06-29 Thread mturk
mturk 2002/06/29 11:28:10 Modified:jk/native2/common jk_worker_lb.c Log: Move the worker initalization to channel, so we can skip the channels that not need that option. Revision ChangesPath 1.22 +6 -13

cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_worker_jni.c

2002-06-29 Thread mturk
mturk 2002/06/29 11:29:09 Modified:jk/native2/common jk_worker_jni.c Log: Make the default 60 second worker initalization. Revision ChangesPath 1.20 +1 -1 jakarta-tomcat-connectors/jk/native2/common/jk_worker_jni.c Index: jk_worker_jni.c

cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_worker_ajp13.c

2002-06-29 Thread mturk
mturk 2002/06/29 11:29:51 Modified:jk/native2/common jk_worker_ajp13.c Log: Changed the call to the service callback. Revision ChangesPath 1.36 +1 -2 jakarta-tomcat-connectors/jk/native2/common/jk_worker_ajp13.c Index: jk_worker_ajp13.c

cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_channel_jni.c

2002-06-29 Thread mturk
mturk 2002/06/29 11:31:01 Modified:jk/native2/common jk_channel_jni.c Log: Make default 60 second initialization. Revision ChangesPath 1.30 +7 -8 jakarta-tomcat-connectors/jk/native2/common/jk_channel_jni.c Index: jk_channel_jni.c

cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_channel.c

2002-06-29 Thread mturk
mturk 2002/06/29 11:32:30 Modified:jk/native2/common jk_channel.c Log: Added 'init' option. This is the number of second that worker waits for channel to initialize. Defaults to 0 except for jni channel Revision ChangesPath 1.5 +4 -0

cvs commit: jakarta-tomcat-connectors/jk/native2/include jk_worker.h

2002-06-29 Thread mturk
mturk 2002/06/29 11:33:06 Modified:jk/native2/include jk_worker.h Log: Remove the initalize flag from the worker. Revision ChangesPath 1.26 +2 -7 jakarta-tomcat-connectors/jk/native2/include/jk_worker.h Index: jk_worker.h

cvs commit: jakarta-tomcat-connectors/jk/native2/include jk_channel.h

2002-06-29 Thread mturk
mturk 2002/06/29 11:33:57 Modified:jk/native2/include jk_channel.h Log: Chenged the status callback proto. Revision ChangesPath 1.17 +3 -1 jakarta-tomcat-connectors/jk/native2/include/jk_channel.h Index: jk_channel.h

cvs commit: jakarta-tomcat-connectors/jk/native2/include jk_bean.h

2002-06-29 Thread mturk
mturk 2002/06/29 11:34:36 Modified:jk/native2/include jk_bean.h Log: Add the initialize flag/timeout. Revision ChangesPath 1.7 +5 -0 jakarta-tomcat-connectors/jk/native2/include/jk_bean.h Index: jk_bean.h

RE: mod_jk startup

2002-06-29 Thread Mladen Turk
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 29. lipanj 2002 20:08 To: Tomcat Developers List Subject: RE: mod_jk startup On Sat, 29 Jun 2002, Mladen Turk wrote: Also, why a new jkStatus method instead of setAttribute() ? Need the

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/common JkInputStream.java

2002-06-29 Thread nacho
nacho 2002/06/29 15:39:13 Modified:jk/java/org/apache/jk/common JkInputStream.java Log: Problems when detecting that post body was exhausted, added a check in doRead.. Revision ChangesPath 1.11 +4 -0

RE: [4.1.6] Milestone available for testing

2002-06-29 Thread Ignacio J. Ortega
Just fixed a problem when using Slide+IIS ( i suppouse that this was a problem for apaches too , i dont know not tested ), Sorry, 4.1.7? Saludos , Ignacio J. Ortega -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

cvs commit: jakarta-tomcat-connectors/jk/xdocs configweb.xml index.xml style.css.in style.xsl.in

2002-06-29 Thread nacho
nacho 2002/06/29 20:32:02 Modified:jk/xdocs configweb.xml index.xml style.css.in style.xsl.in Log: Adding some more docs, i dont know already wich is the good layout for the components and his properties.. :), i hope we found it sound Revision ChangesPath 1.3

cvs commit: jakarta-tomcat-connectors/jk/native2/jni jkjni.dsp

2002-06-29 Thread nacho
nacho 2002/06/29 20:33:06 Modified:jk/native2/jni jkjni.dsp Log: * build jkjni not JKJni Revision ChangesPath 1.4 +363 -388 jakarta-tomcat-connectors/jk/native2/jni/jkjni.dsp Index: jkjni.dsp

isapi_redirector2 build using static APR

2002-06-29 Thread Mladen Turk
IMO it would be better to build the non Apache connectors using static APR builds. That way we don't need to ship the extra dll's with the connector. The dll builds are ok for mod_jk2 since Apache is already there. It would be quite easy to do that adding /D APR_DECLARE_STATIC /D