cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-09-21 Thread wrowe
wrowe 2005/09/21 06:59:50 Modified:jk/native/apache-2.0 mod_jk.c Log: Fix the JK_NEED test to follow a 1|0 value instead of ifdef Revision ChangesPath 1.155 +2 -2 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

Re: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-09-21 Thread William A. Rowe, Jr.
Ack - there was a lingering #ifdef JK_NEED_... which should have been an #if JK_NEED_... - this is fixed in cvs, please retry and thanks for the detailed report! Bill Tim Whittington wrote: Confused me too. Error message is listed below. [exec] cl.exe /nologo /MD /W3 /Zi /O2 /I

Re: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-09-21 Thread Tim Whittington
Sorted. William A. Rowe, Jr. wrote: Ack - there was a lingering #ifdef JK_NEED_... which should have been an #if JK_NEED_... - this is fixed in cvs, please retry and thanks for the detailed report! Bill Tim Whittington wrote: Confused me too. Error message is listed below. [exec]

Re: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-09-20 Thread Tim Whittington
This breaks the build on Windows using Microsoft Visual C++ Toolkit 2003 (at least). It seems #define FOO 0 on WIN32 is still defined according to #ifdef Changing # define JK_NEED_SET_MUTEX_PERMS 0 to # undef JK_NEED_SET_MUTEX_PERMS fixes the problem tim [EMAIL PROTECTED] wrote: wrowe

Re: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-09-20 Thread William A. Rowe, Jr.
Tim Whittington wrote: This breaks the build on Windows using Microsoft Visual C++ Toolkit 2003 (at least). It seems #define FOO 0 on WIN32 is still defined according to #ifdef Your suggestion is counterintuitive and reflects, perhaps, a compiler bug. It would be very helpful if you would

Re: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-09-20 Thread Tim Whittington
Confused me too. Error message is listed below. [exec] cl.exe /nologo /MD /W3 /Zi /O2 /I ..\common /I C:\j2sdk1.4.2_07\include /I C:\j2sdk1.4.2_07\include \win32 /I C:/Program Files/Apache Group/Apache2\include /D NDEBUG /D WIN32 /D _WINDOWS /Fo.\Release\\ /Fd.\R elease\mod_jk_src

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-09-12 Thread mturk
mturk 2005/09/12 06:26:07 Modified:jk/native/apache-2.0 mod_jk.c Log: Fix #bug 35809. Patch provided by Christophe Dubach . Revision ChangesPath 1.153 +2 -2 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-09-12 Thread wrowe
wrowe 2005/09/12 15:21:31 Modified:jk/native/apache-2.0 mod_jk.c Log: Modify the test introduced in 1.152 for httpd-2.2 compatibility, the new symbol isn't available in httpd-2.0 leading to perms issues. This patch anticipates that the flag will become a 0|1 flag

[Fwd: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c]

2005-09-12 Thread William A. Rowe, Jr.
-connectors/jk/native/apache-2.0 mod_jk.c Date: 12 Sep 2005 22:21:31 - From: [EMAIL PROTECTED] Reply-To: Tomcat Developers List tomcat-dev@jakarta.apache.org To: [EMAIL PROTECTED] wrowe 2005/09/12 15:21:31 Modified:jk/native/apache-2.0 mod_jk.c Log: Modify the test introduced

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-07-12 Thread wrowe
wrowe 2005/07/12 12:17:43 Modified:jk/native/apache-2.0 mod_jk.c Log: Use the same mutex check as we use in the unix MPMs. Revision ChangesPath 1.152 +3 -3 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-06-16 Thread mturk
mturk 2005/06/15 23:30:45 Modified:jk/native/apache-2.0 mod_jk.c Log: Remove the second invocation for 'ap_get_module_config'. Have no idea why it was called twice, because it can not change during the request. Also remove the useless r-uri duplication. Revision Changes

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-05-19 Thread mturk
mturk 2005/05/18 23:31:42 Modified:jk/native/apache-2.0 mod_jk.c Log: Fix Apache2 ws_write. There is no need to break the write to 4K chunks. Since apache does not write directly to wire but rather creates output filter buckets this will also lower the number of buckets

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-05-18 Thread mturk
mturk 2005/05/18 11:17:23 Modified:jk/native/apache-1.3 mod_jk.c jk/native/apache-2.0 mod_jk.c Log: Add JK_OPT_FLUSHPACKETS to default options. Revision ChangesPath 1.84 +2 -2 jakarta-tomcat-connectors/jk/native/apache-1.3/mod_jk.c Index:

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-05-18 Thread mturk
mturk 2005/05/18 11:19:31 Modified:jk/native/apache-1.3 mod_jk.c jk/native/apache-2.0 mod_jk.c Log: Brr... Revert latest commit. We agreed not to flush packets by default. Revision ChangesPath 1.85 +2 -2

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-05-18 Thread mturk
mturk 2005/05/18 11:21:59 Modified:jk/native/apache-2.0 mod_jk.c Log: Add missing FlushPackets JkOption. Revision ChangesPath 1.149 +4 -1 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-05-14 Thread mturk
mturk 2005/05/14 03:08:23 Modified:jk/native/apache-1.3 mod_jk.c jk/native/apache-2.0 mod_jk.c Log: Call endpoint-done after endpoint-service, because reading dummy data might block and enpoint is unavailable althought it should. Revision ChangesPath

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-04-30 Thread mturk
mturk 2005/04/29 23:02:19 Modified:jk/native/apache-2.0 mod_jk.c Log: Assure singleton call to wc_close. Revision ChangesPath 1.142 +6 -3 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-04-28 Thread mturk
mturk 2005/04/28 04:28:46 Modified:jk/native/apache-1.3 mod_jk.c jk/native/apache-2.0 mod_jk.c Log: Add default 'logs/jk-runtime-status' if JkShmFile was not specified. Revision ChangesPath 1.78 +10 -1

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-04-13 Thread mturk
mturk 2005/04/12 23:34:57 Modified:jk/native/apache-2.0 mod_jk.c Log: Add APR_USE_FLOCK_SERIALIZE so that FreeBSD can set the child lock permissions. Fixex #34423 Revision ChangesPath 1.138 +3 -3 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-04-13 Thread mturk
mturk 2005/04/13 01:27:39 Modified:jk/native/apache-2.0 mod_jk.c Log: Fix logging for worker names, so it makes more sense what is happening. Revision ChangesPath 1.139 +5 -6 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-04-11 Thread mturk
mturk 2005/04/10 23:55:23 Modified:jk/native/apache-2.0 mod_jk.c Log: Fix compile time warnings about no previous prototype.. Revision ChangesPath 1.136 +5 -4 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-04-11 Thread mturk
mturk 2005/04/11 00:02:19 Modified:jk/native/apache-2.0 mod_jk.c Log: Remove unused function jk_cleanup_endpoint. Revision ChangesPath 1.137 +1 -11 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-04-09 Thread glenn
glenn 2005/04/09 08:44:35 Modified:jk/native/apache-2.0 mod_jk.c Log: BUG: 34357 Apache 2 JkAutoAlias segfault In some situations Apache 2 mod_jk could segfault when the JkAutoAlias directive is used. Added an additional null pointer test. Revision Changes

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-03-26 Thread mturk
mturk 2005/03/26 01:37:10 Modified:jk/native/apache-2.0 mod_jk.c Log: Do not abort the connection if request is invalid, so that client receives apache http error code, instead just dropping connection. Revision ChangesPath 1.134 +4 -4

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-03-18 Thread mturk
mturk 2005/03/18 00:14:42 Modified:jk/native/apache-2.0 mod_jk.c Log: Fix STARTUP logging and use EMERG errors for missing JkShmFile Revision ChangesPath 1.132 +14 -9 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-02-22 Thread mturk
mturk 2005/02/22 06:40:39 Modified:jk/native/apache-1.3 mod_jk.c jk/native/apache-2.0 mod_jk.c Log: Use log warning if JkShmFile was not defined on non WIN32/NETWARE. Revision ChangesPath 1.73 +2 -2

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-02-21 Thread mturk
mturk 2005/02/21 00:29:17 Modified:jk/native/apache-1.3 mod_jk.c jk/native/apache-2.0 mod_jk.c Log: Add JkMountFile directive. This enables to dynamically add or remove uri mappings without restarting apache. To disable uri mapping add a minus '-' sign in front

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-02-21 Thread mturk
mturk 2005/02/21 10:00:41 Modified:jk/native/apache-1.3 mod_jk.c jk/native/apache-2.0 mod_jk.c Log: Add apache log warning if shared memory is not defined for unix platforms. Although it will work, the dynamic config will be unavailable, so inform the user about

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-02-14 Thread mturk
mturk 2005/02/14 23:30:50 Modified:jk/native/apache-1.3 mod_jk.c jk/native/apache-2.0 mod_jk.c Log: Add $(ServerRoot) to map properties. Revision ChangesPath 1.68 +3 -2 jakarta-tomcat-connectors/jk/native/apache-1.3/mod_jk.c Index:

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-02-13 Thread mturk
mturk 2005/02/13 04:24:18 Modified:jk/native/apache-2.0 mod_jk.c Log: Implement new API calls for shm and set vhost uriworker_map Revision ChangesPath 1.124 +13 -12jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-02-08 Thread mturk
mturk 2005/02/08 23:39:08 Modified:jk/native/apache-2.0 mod_jk.c Log: Move jk_set_worker_def_cache_size to post config hook, so that it is set before the jk configuration is parsed. Revision ChangesPath 1.122 +12 -12

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-02-07 Thread mturk
mturk 2005/02/07 11:07:38 Modified:jk/native/apache-2.0 mod_jk.c Log: Use new shmem api that uses single instance shared memory. Revision ChangesPath 1.121 +23 -18jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-02-06 Thread mturk
mturk 2005/02/06 01:33:15 Modified:jk/native/apache-2.0 mod_jk.c Log: Initialize log file before initializing JK, so that we can see error messages if config has errors. Revision ChangesPath 1.117 +74 -73jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-02-06 Thread mturk
mturk 2005/02/06 03:21:38 Modified:jk/native/apache-2.0 mod_jk.c Log: Initialize shared memory and attach in child process. Revision ChangesPath 1.118 +57 -1 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-02-06 Thread mturk
mturk 2005/02/06 03:30:46 Modified:jk/native/apache-2.0 mod_jk.c Log: Use shmem name since it can be either true filename or memory. Revision ChangesPath 1.119 +2 -2 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-02-05 Thread mturk
mturk 2005/02/05 04:41:17 Modified:jk/native/apache-2.0 mod_jk.c Log: Re-open a global log mutex lock in a child process. From APR documentation: This function must be called to maintain portability, even if the underlying lock mechanism does not require it. Revision

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-01-12 Thread glenn
glenn 2005/01/12 09:23:11 Modified:jk/native/apache-2.0 mod_jk.c Log: Fix a bug where a mod_dir sub-request was not being handled. apr_filepath_name_get() would return an empty string rather than a NULL pointer. PS: Thanks for the recent work on mod_jk. Revision

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-01-07 Thread hgomez
hgomez 2005/01/07 01:55:33 Modified:jk/native/apache-2.0 mod_jk.c Log: the iSeries version of Apache 2 didn't support yet MPM ;( Revision ChangesPath 1.114 +6 -1 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

Re: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-01-07 Thread Mladen Turk
[EMAIL PROTECTED] wrote: + +#ifndef AS400 #include ap_mpm.h +#endif That's wrong IMO. Look at the Apache modules: mod_mem_cache mod_cgid mod_cgid mod_info mod_status mod_ssl They all have '#include ap_mpm.h' So, I suppose that's something wrong with your apache build not the way how this

Re: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2004-12-22 Thread William A. Rowe, Jr.
Wait - you mean to tell me instead of converting the hostname once to lower - we are strcasecmp'ing every time? Outch, that hurts. Bill At 09:14 PM 12/16/2004, [EMAIL PROTECTED] wrote: billbarker2004/12/16 19:14:56 Modified:jk/native/apache-1.3 mod_jk.c

Re: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2004-12-22 Thread Bill Barker
- Original Message - From: William A. Rowe, Jr. [EMAIL PROTECTED] To: Tomcat Developers List tomcat-dev@jakarta.apache.org Sent: Wednesday, December 22, 2004 9:54 PM Subject: Re: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c Wait - you mean to tell me instead

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2004-12-17 Thread mturk
mturk 2004/12/17 00:28:20 Modified:jk/native/apache-2.0 mod_jk.c Log: Query mpm to obtain the real default cache size. Revision ChangesPath 1.111 +13 -5 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2004-12-17 Thread mturk
mturk 2004/12/17 10:08:52 Modified:jk/native/apache-2.0 mod_jk.c Log: Remove duplicating uri because map_uri now properly reverts the changes made when jsessionid is found. Revision ChangesPath 1.113 +2 -3

Re: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2004-12-17 Thread Bill Barker
- Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, December 17, 2004 10:08 AM Subject: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c mturk 2004/12/17 10:08:52 Modified:jk/native/apache-2.0 mod_jk.c Log: Remove

Re: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2004-12-17 Thread Mladen Turk
Bill Barker wrote: Remove duplicating uri because map_uri now properly reverts the changes made when jsessionid is found. This is a very big -1. map_uri_to_worker is going to modify the uri that gets passed in, so it absolutely *must* be duped. Yes, but it will revert the changes made. It's

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2004-12-16 Thread billbarker
billbarker2004/12/16 19:14:56 Modified:jk/native/apache-1.3 mod_jk.c jk/native/apache-2.0 mod_jk.c Log: Now that the SC lookup is case-insensitive, don't waste cycles converting the header names to lower case Revision ChangesPath 1.60 +2 -6

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2004-12-13 Thread mturk
mturk 2004/12/13 01:10:31 Modified:jk/native/apache-2.0 mod_jk.c Log: Add more logging. Revision ChangesPath 1.109 +59 -30jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2004-12-12 Thread mturk
mturk 2004/12/12 07:14:59 Modified:jk/native/apache-2.0 mod_jk.c Log: The stupid CRLF's are constantly emerging. Remove them. Revision ChangesPath 1.108 +9 -9 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2004-12-04 Thread mturk
mturk 2004/12/04 04:11:58 Modified:jk/native/apache-2.0 mod_jk.c Log: Use ap_get_server_port instead r-connection-local_addr-port. This was the original behavior changed in the CVS without real explanation why it was changed. Revision ChangesPath 1.106 +22 -76

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2004-11-30 Thread mturk
mturk 2004/11/30 00:22:47 Modified:jk/native/apache-1.3 mod_jk.c jk/native/apache-2.0 mod_jk.c Log: Allow JkMount and JkUnMount directives to be defined inside Location and Files sections. This allows security to be implemented on apache side. Revision

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2004-11-30 Thread mturk
mturk 2004/11/30 05:21:57 Modified:jk/native/apache-2.0 mod_jk.c Log: Fix compile time warnings about long and remove unused variables. Revision ChangesPath 1.104 +2 -3 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2004-11-12 Thread mturk
mturk 2004/11/12 00:24:43 Modified:jk/native/apache-2.0 mod_jk.c Log: Added JkWorkerProperty directive that enables omiting workers.properties file. For example: JkWorkerProperty worker.ajp13a.port=8009 Revision ChangesPath 1.99 +26 -1

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2004-11-12 Thread mturk
mturk 2004/11/12 01:02:04 Modified:jk/native/apache-2.0 mod_jk.c Log: Add missing include for unixd, and remove unused vars. Revision ChangesPath 1.100 +6 -3 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2004-07-14 Thread hgomez
hgomez 2004/07/14 05:46:23 Modified:jk/native/apache-2.0 mod_jk.c Log: Make use of note, no-jk (a la mod_deflate), to exclude some URL from being relayed to tomcat even if URL match a JkMount directive. For instance you could use : VirtualHost *:80 ServerName

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2004-03-10 Thread hgomez
hgomez 2004/03/10 04:13:31 Modified:jk/native/apache-2.0 mod_jk.c Log: Fix a problem with the latest iSeries Apache 2.0.47 Revision ChangesPath 1.94 +10 -2 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

RE: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2004-03-10 Thread Mladen Turk
-Original Message- From: [EMAIL PROTECTED] jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c + #ifdef AS400 #include ap_charset.h #include util_charset.h /* ap_hdrs_from_ascii */ @@ -50,10 +51,17 @@ #endif Is it necessary to conditionally

Re: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2004-03-10 Thread jean-frederic clere
Mladen Turk wrote: -Original Message- From: [EMAIL PROTECTED] jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c + #ifdef AS400 #include ap_charset.h #include util_charset.h /* ap_hdrs_from_ascii */ @@ -50,10 +51,17 @@ #endif Is it necessary to

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2004-02-11 Thread hgomez
hgomez 2004/02/11 01:50:19 Modified:jk/native/apache-2.0 mod_jk.c Log: Initialize the reco status Revision ChangesPath 1.92 +4 -1 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2004-02-02 Thread mmanders
mmanders2004/02/02 09:38:04 Modified:jk/native/apache-2.0 mod_jk.c Log: Updated how we get the server port to work with APR 1.0 as well as previous versions. Patch submitted by Guenter Knauf. Revision ChangesPath 1.91 +2 -5

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2003-11-01 Thread glenn
glenn 2003/11/01 11:20:50 Modified:jk/native/apache-2.0 mod_jk.c Log: Fix a special case to make sure that apache can serve a directory listing if there are no matches for the DirectoryIndex and Tomcat webapps are mapped into apache using JkAutoAlias. Revision Changes

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2003-10-04 Thread mturk
mturk 2003/10/04 02:26:00 Modified:jk/native/apache-2.0 mod_jk.c Log: apr_filename_of_pathname has been deprecated since apr version 0.9.3, and it doesn't exist in version 0.9.4 any more. Revision ChangesPath 1.87 +6 -4

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2003-10-04 Thread mturk
mturk 2003/10/04 04:43:14 Modified:jk/native/apache-2.0 mod_jk.c Log: Let the open_log retuns int instead calling exit(1), so we can return INTERNL_SERVER_ERROR, instead getting into endles child create/exit loop. Revision ChangesPath 1.88 +13 -11

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2003-09-30 Thread hgomez
hgomez 2003/09/30 06:41:54 Modified:jk/native/apache-2.0 mod_jk.c Log: Update for APR 1.0 (Apache 2.1) Provided by Günter Knauf eflash at gmx.net Revision ChangesPath 1.86 +38 -32jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2003-08-29 Thread hgomez
hgomez 2003/08/29 07:10:31 Modified:jk/native/apache-2.0 mod_jk.c Log: Fix typo, apr_pstrdup should be used Revision ChangesPath 1.84 +3 -3 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2003-08-26 Thread billbarker
billbarker2003/08/25 21:28:12 Modified:jk/native/apache-2.0 mod_jk.c Log: Changes for Apache2 to support the new contract. Revision ChangesPath 1.82 +11 -5 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2003-07-15 Thread glenn
glenn 2003/07/15 05:16:06 Modified:jk/native/apache-2.0 mod_jk.c Log: Fix double open of mod_jk.log for apache 2 Revision ChangesPath 1.81 +2 -1 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

Re: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2003-07-01 Thread Glenn Nielsen
Thanks for the path bug fix Bill. I will be happy to work on a mod_jk 4.1.25 release but I won't have time until next week. The only two issues I am aware of are: 1. The libtool build problem. 2. The path mapping bug in Apache. Are both of these considered fixed now in CVS head? Has the CHANGES

Re: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2003-07-01 Thread Henri Gomez
Henri Gomez wrote: [EMAIL PROTECTED] wrote: What about a 1.2.5 release soon ? +1 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2003-06-27 Thread Henri Gomez
[EMAIL PROTECTED] wrote: What about a 1.2.5 release soon ? billbarker2003/06/26 20:10:44 Modified:jk/native/apache-2.0 mod_jk.c Log: Port from apache-1.3 Revision ChangesPath 1.80 +6 -4 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index:

Re: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2003-06-27 Thread Henri Gomez
BTW, we need a fix for this libtool problem. What about adding libtool in configure.in via a --with-libtool ? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2003-06-26 Thread billbarker
billbarker2003/06/26 20:10:44 Modified:jk/native/apache-2.0 mod_jk.c Log: Port from apache-1.3 Revision ChangesPath 1.80 +6 -4 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2003-06-18 Thread hgomez
hgomez 2003/06/18 06:13:17 Modified:jk/native/apache-2.0 mod_jk.c Log: 3rd parm to apr_file_write() should be apr_size_t, not unsigned. Provided by Jeff Trawick Revision ChangesPath 1.77 +2 -2 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2003-06-18 Thread hgomez
hgomez 2003/06/18 06:17:18 Modified:jk/native/apache-2.0 mod_jk.c Log: Fix for mod_dir/mod_jk, now the DirectoryIndex directive will be correctly handled and forwarded Revision ChangesPath 1.78 +6 -2 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2003-06-18 Thread hgomez
hgomez 2003/06/18 08:48:15 Modified:jk/native/apache-2.0 mod_jk.c Log: Use the subreq pool Provided by Jeff Trawick Revision ChangesPath 1.79 +3 -3 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2003-04-04 Thread mmanders
mmanders2003/04/04 12:26:21 Modified:jk/native/apache-2.0 mod_jk.c Log: Updated to build correctly for NetWare. Revision ChangesPath 1.70 +11 -7 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2003-04-02 Thread glenn
glenn 2003/04/02 14:48:02 Modified:jk/native/apache-2.0 mod_jk.c Log: Fix possible seg fault when LogLevel is debug Revision ChangesPath 1.69 +5 -5 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2003-03-15 Thread glenn
glenn 2003/03/15 18:59:44 Modified:jk/native CHANGES.txt jk/native/apache-1.3 mod_jk.c jk/native/apache-2.0 mod_jk.c Log: When a client aborted but Apache 2 tried to do a SSI include of a JSP or servlet an error was being logged. Updated code to

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2003-01-06 Thread glenn
glenn 2003/01/06 17:27:11 Modified:jk/native/apache-1.3 mod_jk.c jk/native/apache-2.0 mod_jk.c Log: Fix bug reported with form based authentication Revision ChangesPath 1.35 +2 -2 jakarta-tomcat-connectors/jk/native/apache-1.3/mod_jk.c

Re: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2003-01-06 Thread Glenn Nielsen
Thanks for reporting this. I have changed the code so that if there is no content only status codes = 400 are passed back through apache. The original patch was made so that when an error occurred at the Ajp13Processor layer it could propogated back to the browser correctly instead of a blank

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2003-01-02 Thread glenn
glenn 2003/01/02 04:58:58 Modified:jk/native/apache-1.3 mod_jk.c jk/native/apache-2.0 mod_jk.c Log: Make sure http errors are handled by Apache if not handled by Tomcat Revision ChangesPath 1.34 +6 -1

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2002-12-29 Thread glenn
glenn 2002/12/29 20:05:39 Modified:jk/native/apache-2.0 mod_jk.c Log: Port mod_jk apache 1.3 JkAutoAlias to apache 2.0, 1.3 and 2.0 should be in synch now Revision ChangesPath 1.63 +110 -1jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index:

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2002-12-09 Thread hgomez
hgomez 2002/12/09 05:19:18 Modified:jk/native/apache-2.0 mod_jk.c Log: Make jk works with filters in Apache 2.0, ie mod_deflate and AddOutputFilterByType DEFLATE text/html. Revision ChangesPath 1.62 +5 -2

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2002-12-06 Thread mmanders
mmanders2002/12/06 10:54:45 Modified:jk/native/apache-2.0 mod_jk.c Log: Updated jk_handler to check result of call to worker-get_endpoint and handle a failure. This call can fail if the allocation for the endpoint fails because of low memory conditions causing a dereference of

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2002-11-22 Thread jfclere
jfclere 2002/11/22 06:43:01 Modified:jk/native/apache-1.3 mod_jk.c jk/native/apache-2.0 mod_jk.c Log: Arrange HEAD handling. That fixes 14293. Thanks to Martin Kraemer for his help. Revision ChangesPath 1.31 +8 -3

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2002-10-28 Thread hgomez
hgomez 2002/10/28 06:38:07 Modified:jk/native/apache-2.0 mod_jk.c Log: Add JkRequestLogFormat in Apache 2.0. May be Glenn should take a look if I didn't introduce problems here... Revision ChangesPath 1.58 +408 -1

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2002-09-10 Thread jfclere
jfclere 2002/09/10 08:08:13 Modified:jk/native/apache-2.0 mod_jk.c Log: I prefer to get 500 when something goes wrong than getting not found. Revision ChangesPath 1.56 +3 -2 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

Re: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2002-07-23 Thread Bojan Smojver
Quoting [EMAIL PROTECTED]: It's jk_translate who decides if a request is to be handled by jk ( by mapping it to a uriEnv ). You can add a test for r-handler==DIR_MAGIC_TYPE, but don't assume any uriEnv is set. Actually, r-handler is always NULL in jk_translate(). At least in mod_jk 1.2.0

Re: [VOTE]: Re: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2002-07-23 Thread Henri Gomez
Quoting Bojan Smojver [EMAIL PROTECTED]: And I answer (to myself :-) On Tue, 2002-07-23 at 14:47, Bojan Smojver wrote: So, the unsolved questions for me are: 1. What is it then that jk_handler() does that makes it actually serve the request when DIR_MAGIC_TYPE is included in the

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2002-07-23 Thread bojan
bojan 2002/07/23 19:38:32 Modified:jk/native/apache-2.0 mod_jk.c Log: Refine directory handling a bit more. Make use of the new JkOption, ForwardDirectories. When enabled, all unresolved directory requests go to Tomcat. This option is disabled by default. Revision

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2002-07-23 Thread bojan
bojan 2002/07/23 21:48:52 Modified:jk/native/apache-2.0 mod_jk.c Log: Save a strcmp() call. Revision ChangesPath 1.54 +3 -3 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2002-07-22 Thread bojan
bojan 2002/07/22 14:03:19 Modified:jk/native/apache-2.0 mod_jk.c Log: Put back DIR_MAGIC_TYPE in case there is no DirectoryIndex and/or no pysical files to stat. Lose one stat, not really needed. Fix a typo. Revision ChangesPath 1.52 +10 -5

Re: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2002-07-22 Thread Bojan Smojver
Quoting [EMAIL PROTECTED]: It's jk_translate who decides if a request is to be handled by jk ( by mapping it to a uriEnv ). You can add a test for r-handler==DIR_MAGIC_TYPE, but don't assume any uriEnv is set. OK, I did that in jk2_handler(), which now seems like the wrong place to do it,

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2002-07-21 Thread bojan
bojan 2002/07/21 15:34:25 Modified:jk/native/apache-2.0 mod_jk.c Log: Instead of mixing URI's with filenames, which was wrong, just use filenames to stat. This will also take care of aliases, but be warned - URI will still be passed to Tomcat unchanged. Revision Changes

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2002-07-21 Thread bojan
bojan 2002/07/21 19:48:11 Modified:jk/native/apache-2.0 mod_jk.c Log: Be a bit more specific about what is a directory. Revision ChangesPath 1.51 +10 -13jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2002-07-16 Thread bojan
bojan 2002/07/16 22:40:35 Modified:jk/native/apache-2.0 mod_jk.c Log: Fix picking up default pages from Apache 2.x Revision ChangesPath 1.47 +3 -2 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2002-06-23 Thread mturk
mturk 2002/06/22 22:40:29 Modified:jk/native/apache-2.0 mod_jk.c Log: Fixing the compile time warning: 'jk_apr_pool_cleanup' function must return a value Revision ChangesPath 1.46 +2 -1 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index:

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2002-06-12 Thread hgomez
hgomez 2002/06/12 07:31:09 Modified:jk/native/apache-2.0 mod_jk.c Log: Fix the incorrect error reported when a worker is defined but didn't exist (reported by Bojan) Revision ChangesPath 1.45 +4 -1 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c

RE: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2002-06-12 Thread GOMEZ Henri
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 12, 2002 4:31 PM To: [EMAIL PROTECTED] Subject: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c hgomez 2002/06/12 07:31:09 Modified:jk/native/apache-2.0 mod_jk.c

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2002-04-12 Thread mmanders
mmanders02/04/12 08:55:59 Modified:jk/native/apache-2.0 mod_jk.c Log: Moved cleanup routine to the right place. At least on NetWare, the module is loaded multiple times and the first time, cleanup wasn't happening. Since it is a pool cleanup, I now register the cleanup where

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2002-04-11 Thread mmanders
mmanders02/04/11 14:52:43 Modified:jk/native/apache-2.0 mod_jk.c Log: Updated to build for Apache 2.0 on NetWare (LibC). Added a cleanup routine Revision ChangesPath 1.42 +38 -8 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c

  1   2   >