DO NOT REPLY [Bug 27245] New: - java.lang.OutOfMemoryError

2004-02-26 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=27245. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: cvs commit: jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat3 CoyoteInterceptor2.java

2004-02-26 Thread Henri Gomez
[EMAIL PROTECTED] wrote: billbarker2004/02/25 22:00:29 Will it be in rc2 ? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: TC 3.3.2 and JMX

2004-02-26 Thread Henri Gomez
Henri Gomez wrote: Bill Barker wrote: - Original Message - From: Henri Gomez [EMAIL PROTECTED] To: Tomcat Developers List [EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 4:50 AM Subject: TC 3.3.2 and JMX Any objection to set the default JMX port to -1 ? None here. Jk-Coyote is

DO NOT REPLY [Bug 27216] - Problem start app with document base containing spaces

2004-02-26 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=27216. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

information

2004-02-26 Thread stefano
here is the document. attachment: msg.zip - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [PATCH] use ap_ prefixed PCRE functions

2004-02-26 Thread Henri Gomez
Guenter Knauf wrote: Hi all, I would like to get this patch into CVS in order to use PCRE on NetWare where only the ap_ prefixed pcre functions are exported. I have tested that the patch below compiles fine with NetWare, Linux and Win32. As a positive side effect on Win32 the binary is about 24

Re: [PATCH] use ap_ prefixed PCRE functions

2004-02-26 Thread Guenter Knauf
Hi Henri, +#include httpd.h httpd.h may not be found for IIS or Netscape, so it will brake these. Ditto for others. yep - found this already; please see my second patch which shouldnt break any other platforms. BTW while testing with this I found that on Linux when compiled with APXS also no

RE: jk2 buglets II

2004-02-26 Thread Greg . Cope
Thanks Dave, This seemed to be an issue with tomcat 4.1.24. Using 4.1.29 resolves this issue. Thanks for the pointers, especially the one to open my eyes and check which tomcat version I was using. Feel a bit of a muppet! Greg -Original Message- From: David Rees [mailto:[EMAIL

Re: [PATCH] use ap_ prefixed PCRE functions

2004-02-26 Thread Henri Gomez
Guenter Knauf wrote: Hi Henri, +#include httpd.h httpd.h may not be found for IIS or Netscape, so it will brake these. Ditto for others. yep - found this already; please see my second patch which shouldnt break any other platforms. ok BTW while testing with this I found that on Linux when

RE: jk2 buglets

2004-02-26 Thread Greg . Cope
Hi All, We have been giving the latest CVS code for mod_jk2 a thorough test to look towards using it as our next production release. Happy to say that thus far it seems fine. The following still looks like a bug to me so I have attached a diff (not huge) of

RE: jk2 buglets

2004-02-26 Thread Greg . Cope
Sorry, this seems to be a bad week. The diff should be: $ diff jk_shm.c.org jk_shm.c 201c201 shm-fname, finfo.size, rc, globalShmPool, error ); --- shm-fname, (int) finfo.size, rc, (int) globalShmPool, error ); Greg -Original Message-

RE: jk2 buglets

2004-02-26 Thread Guenter Knauf
Hi, Sorry, this seems to be a bad week. The diff should be: $ diff jk_shm.c.org jk_shm.c can you please use unified diffs: diff -u jk_shm.c.org jk_shm.c this is the preferred patch form with all ASF stuff... Guenter. -

DO NOT REPLY [Bug 18449] - symbol __divdi3: referenced symbol not found

2004-02-26 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=18449. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 14118] - JVM 1.4 dies when run as an NT service

2004-02-26 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=14118. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: [PATCH] use ap_ prefixed PCRE functions - take 3

2004-02-26 Thread Guenter Knauf
Hi Kurt, I've reviewed your patch and have some comments included inline below. regcomp and ap_pregcomp are not interchangeable like this. ap_pregcomp needs an apr_pool to be passed to it and it returns the regex_t. I think (apr_pool_t *)uriEnv-pool-_private is correct here (Henri?,

Re: [PATCH] use ap_ prefixed PCRE functions

2004-02-26 Thread Guenter Knauf
Henri, BTW while testing with this I found that on Linux when compiled with APXS also no PCRE is used... What do you means ? just to confirm this quickly I just inserted a line 'xxx' inside the HAS_PCRE in jk_uriEnv.c and compilation went trough without error, while if I add '-DHAS_PCRE'

DO NOT REPLY [Bug 27245] - java.lang.OutOfMemoryError

2004-02-26 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=27245. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

jk2 : ap_hook_translate_name should be APR_HOOK_MIDDLE

2004-02-26 Thread Henri Gomez
With the actual code in jk2, we can't use mod_alias, for instance ErrorDocument. I changed the ap_hook_translate_name from APR_HOOK_FIRST to APR_HOOK_MIDDLE and I've get the ErrorDocument. jk use also APR_HOOK_MIDDLE for ap_hook_translate_name, so I wonder why it's set to APR_HOOK_FIRST in jk2

Re: jk2 : ap_hook_translate_name should be APR_HOOK_MIDDLE

2004-02-26 Thread Henri Gomez
Henri Gomez wrote: With the actual code in jk2, we can't use mod_alias, for instance ErrorDocument. I changed the ap_hook_translate_name from APR_HOOK_FIRST to APR_HOOK_MIDDLE and I've get the ErrorDocument. jk use also APR_HOOK_MIDDLE for ap_hook_translate_name, so I wonder why it's set to

Re: jk2 : ap_hook_translate_name should be APR_HOOK_MIDDLE

2004-02-26 Thread Guenter Knauf
Hi, With the actual code in jk2, we can't use mod_alias, for instance ErrorDocument. I changed the ap_hook_translate_name from APR_HOOK_FIRST to APR_HOOK_MIDDLE and I've get the ErrorDocument. jk use also APR_HOOK_MIDDLE for ap_hook_translate_name, so I wonder why it's set to

RE: Steven Hatala/PH/Novartis is out of the office.

2004-02-26 Thread Shapira, Yoav
Hi, I'm unsubscribing you so we don't get these automatic responses. Thanks, Yoav Shapira Millennium ChemInformatics -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 5:29 PM To: Tomcat Developers List Subject: Steven

DO NOT REPLY [Bug 27253] New: - Conflict between ant.jar in common/lib and xalan method: org.apache.xalan.xslt.EnvironmentCheck.checkEnvironment

2004-02-26 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=27253. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

unknown

2004-02-26 Thread craigmcc
thats wrong attachment: friend.zip - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

DO NOT REPLY [Bug 27251] - LifecycleException: Cannot find message associated with key coyoteConnector.protocolHandlerPauseFailed

2004-02-26 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=27251. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/coyote/tomcat5 CoyoteConnector.java LocalStrings.properties

2004-02-26 Thread remm
remm2004/02/26 07:26:13 Modified:catalina/src/share/org/apache/coyote/tomcat5 CoyoteConnector.java LocalStrings.properties Log: - Add missing properties. Display the root cause if something bad happens, and don't rethrow the exception. Revision

DO NOT REPLY [Bug 27216] - Problem start app with document base containing spaces

2004-02-26 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=27216. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: jk2 : ap_hook_translate_name should be APR_HOOK_MIDDLE

2004-02-26 Thread Henri Gomez
Guenter Knauf wrote: Hi, looks like this was already done by Mladen with mod_jk2 version 1.42, but two days later the patch was reverted again with 1.43 by BoJan... Guenter. With the actual code in jk2, we can't use mod_alias, for instance ErrorDocument. I changed the ap_hook_translate_name

Re: jk2 : ap_hook_translate_name should be APR_HOOK_MIDDLE

2004-02-26 Thread Henri Gomez
Henri Gomez wrote: Guenter Knauf wrote: Hi, looks like this was already done by Mladen with mod_jk2 version 1.42, but two days later the patch was reverted again with 1.43 by BoJan... Guenter. With the actual code in jk2, we can't use mod_alias, for instance ErrorDocument. I changed the

Re: DO NOT REPLY [Bug 27006] - libtool: install: error: cannot install `../../../build/jk2/apache2/jkjni.la' to a directory not ending in /usr/lib/apache2

2004-02-26 Thread Al Banard
Thanks, Unfortunately my OS is Gentoo and after installing there ebuild (basically equivalent to an RPM) directories are all over the place. The base location of apache is actually /etc/apache2 but when I try using this as a configure option I get this message: building connector for

jk2 / lb and errors

2004-02-26 Thread Henri Gomez
Hi to all, while playing with jk2, I discovered many things I didn't like : * If no worker or group is defined for an uri, it goes to lb:lb. The default worker SHOULD BE configurable, I'll modify this. * Stupid question, but how could I use a normal ajp13 socket, not a group in uri defs ?

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/coyote/tomcat5 LocalStrings_fr.properties

2004-02-26 Thread jfarcand
jfarcand2004/02/26 09:21:32 Modified:catalina/src/share/org/apache/coyote/tomcat5 LocalStrings_fr.properties Log: Fix minor typo. Revision ChangesPath 1.3 +3 -3

Re: DO NOT REPLY [Bug 27006] - libtool: install: error: cannot install `../../../build/jk2/apache2/jkjni.la' to a directory not ending in /usr/lib/apache2

2004-02-26 Thread Kurt Miller
Are you using the current source from CVS or http://cvs.apache.org/snapshots/jakarta-tomcat-connectors/ yet? libtool is set correctly for you in the current version. Simply configure with --with-apxs2 with current source and it should be correctly set for you. From: Al Banard [EMAIL PROTECTED]

cvs commit: jakarta-tomcat-site/docs/faq tomcatuser.html

2004-02-26 Thread funkman
funkman 2004/02/26 09:30:01 Modified:xdocs-faq tomcatuser.xml docs/faq/printer tomcatuser.html docs/faq tomcatuser.html Log: Change wording for the links to good etiquette. The good etiquette links were non-tomcat related but users were still emailing

DO NOT REPLY [Bug 27267] New: - Undeploying a web application may get the host appBase removed

2004-02-26 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=27267. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: cvs commit: jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat3 CoyoteInterceptor2.java

2004-02-26 Thread Bill Barker
- Original Message - From: Henri Gomez [EMAIL PROTECTED] To: Tomcat Developers List [EMAIL PROTECTED] Sent: Thursday, February 26, 2004 12:48 AM Subject: Re: cvs commit: jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat3 CoyoteInterceptor2.java [EMAIL PROTECTED] wrote:

DO NOT REPLY [Bug 27216] - Problem start app with document base containing spaces

2004-02-26 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=27216. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: unknown: TROJAN HORSE?

2004-02-26 Thread Michael McGrady
I never look at these emails I get because I fear they are spoofs. Are they? This was an email that said it came from the list via [EMAIL PROTECTED] and had an attached file called friend.zip. Is this a trojan horse? At 07:02 AM 2/26/2004, you wrote: thats wrong

DO NOT REPLY [Bug 27267] - Undeploying a web application may get the host appBase removed

2004-02-26 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=27267. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: unknown: TROJAN HORSE?

2004-02-26 Thread Guenter Knauf
Hi Michael, I never look at these emails I get because I fear they are spoofs. Are thats best you can do - delete then immediatly. they? This was an email that said it came from the list via [EMAIL PROTECTED] and had an attached file called friend.zip. Is this a trojan horse? its one of

RE: Steven Hatala/PH/Novartis is out of the office.

2004-02-26 Thread Guenter Knauf
Hi, I'm unsubscribing you so we don't get these automatic responses. thanks is it possible to filter some more from the subject? f.e. recent worms with 're:hi' and 're:unknown' etc.? and perhaps 'autoresponder' too? that would help a lot I believe Guenter.

Re: [PATCH] use ap_ prefixed PCRE functions - take 3

2004-02-26 Thread Kurt Miller
Hi Guenter, Just a tweak or two and its ready. The preg calloc only applies to the HAS_PCRE case and PREGCOMP isn't needed. Otherwise it looks good. I'll test and commit it tomorrow. -Kurt From: Guenter Knauf [EMAIL PROTECTED] Hi Kurt, I've reviewed your patch and have some comments included

DO NOT REPLY [Bug 14885] - Tomcat hangs after bad https request

2004-02-26 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=14885. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 15172] - put before get fails

2004-02-26 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=15172. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 27273] - HttpSessionListener receives sessionDestroyed() event twice per timed-out HTTP session

2004-02-26 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=27273. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 15352] - Security violation while accessing web application with servlets

2004-02-26 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=15352. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

cvs commit: jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler TldLocationsCache.java JspConfig.java

2004-02-26 Thread luehe
luehe 2004/02/26 17:03:56 Modified:jasper2/src/share/org/apache/jasper/compiler TldLocationsCache.java JspConfig.java Log: Close input stream Revision ChangesPath 1.24 +47 -37

cvs commit: jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler TldLocationsCache.java

2004-02-26 Thread luehe
luehe 2004/02/26 17:30:39 Modified:jasper2/src/share/org/apache/jasper/compiler TldLocationsCache.java Log: 80 char limit Revision ChangesPath 1.25 +3 -2

[PATCH] ./jk/native2/common/jk_worker_status.c - be more verbose

2004-02-26 Thread Guenter Knauf
Hi, patch to be a bit more verbose than showing a blank page when no scoreboard available... Guenter. --- jk_worker_status.c.orig Tue Feb 24 12:30:10 2004 +++ jk_worker_status.c Fri Feb 27 03:43:30 2004 @@ -173,6

Re: [PATCH] use ap_ prefixed PCRE functions - take 4

2004-02-26 Thread Guenter Knauf
Hi Kurt, Just a tweak or two and its ready. The preg calloc only applies to the HAS_PCRE case and PREGCOMP isn't needed. Otherwise it looks good. I'll test and commit it tomorrow. thanks again for reviewing and comments! Guenter. http://www.gknw.com/test/pcre_patch4

[PATCH] use PCRE on NetWare - update

2004-02-26 Thread Guenter Knauf
Hi, if my last patch for PCRE functions gets accepted, this patch to the makefile makes usage of the PCRE on NetWare. Guenter. http://www.gknw.com/test/NWGNUmakefile.diff ### ---

[PATCH] mod_jk2 use AP_PCRE on Win32

2004-02-26 Thread Guenter Knauf
Hi, if my last patch for PCRE functions gets accepted, this patch to the makefile makes usage of the AP_PCRE on Win32. Guenter. http://www.gknw.com/test/mod_jk2.dsp.diff ### ---

DO NOT REPLY [Bug 27281] New: - Mod_jk2 logs a 500 error in apache access log when user presses Stop

2004-02-26 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=27281. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

cvs commit: jakarta-tomcat/src/shell cpappend.bat jspc.bat jspc.sh shutdown.bat shutdown.sh startup.bat startup.sh tomcat.bat tomcat.sh tomcatEnv.bat

2004-02-26 Thread billbarker
billbarker2004/02/26 21:32:58 Modified:src/shell cpappend.bat jspc.bat jspc.sh shutdown.bat shutdown.sh startup.bat startup.sh tomcat.bat tomcat.sh tomcatEnv.bat Log: Updating to the Apache License v2.0. Revision ChangesPath

DO NOT REPLY [Bug 3888] - WebappClassLoader: Lifecycle error : CL stopped

2004-02-26 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=3888. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

cvs commit: jakarta-tomcat/src/etc/users admin-users.xml example-users.xml global-users.xml tomcat-users.xml

2004-02-26 Thread billbarker
billbarker2004/02/26 21:45:47 Modified:src/etc apps-127.0.0.1.xml apps-admin.xml apps-examples.xml modules.xml server.xml tomcat.policy src/etc/jk mod_jk.conf mod_jk.conf-jni obj.conf uriworkermap.properties

[GUMP@lsd]: jakarta-tomcat-5/jakarta-tomcat-5 failed

2004-02-26 Thread bobh
To whom it may engage... This is an automated request, but not an unsolicited one. For help understanding the request please visit http://jakarta.apache.org/gump/nagged.html, and/or contact [EMAIL PROTECTED] Project jakarta-tomcat-5 has an issue affecting it's community integration,

cvs commit: jakarta-tomcat/src/webpages/WEB-INF web.xml

2004-02-26 Thread billbarker
billbarker2004/02/26 21:39:34 Modified:src/webpages index.html src/webpages/WEB-INF web.xml Log: Updating to the Apache License v2.0. Revision ChangesPath 1.29 +15 -0 jakarta-tomcat/src/webpages/index.html Index: index.html

DO NOT REPLY [Bug 27276] New: - JAASCallbackHandler gives erroneous warning due to buggy implementation

2004-02-26 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=27276. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 25234] - HttpSessionListener called twice on session expiration

2004-02-26 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=25234. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: [PATCH] use ap_ prefixed PCRE functions - take 3

2004-02-26 Thread Guenter Knauf
Hi Kurt, Just a tweak or two and its ready. The preg calloc only applies to the HAS_PCRE case and PREGCOMP isn't needed. Otherwise it looks good. I'll test and commit it tomorrow. yep, forgot to remove PREGCOMP. you mean perhaps so: { #ifdef HAS_AP_PCRE regex_t *preg =

DO NOT REPLY [Bug 27273] New: - HttpSessionListener receives sessionDestroyed() event twice per timed-out HTTP session

2004-02-26 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=27273. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 14436] - RequestDispatcher Drops Query String

2004-02-26 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=14436. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 3888] - WebappClassLoader: Lifecycle error : CL stopped

2004-02-26 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=3888. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

RE: jk2 buglets II

2004-02-26 Thread David Rees
[EMAIL PROTECTED] wrote: This seemed to be an issue with tomcat 4.1.24. Using 4.1.29 resolves this issue. Thanks for the pointers, especially the one to open my eyes and check which tomcat version I was using. While you're at it, you should upgrade to 4.1.30 which fixes some memory leaks

DO NOT REPLY [Bug 27267] - Undeploying a web application may get the host appBase removed

2004-02-26 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=27267. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 27267] - Undeploying a web application may get the host appBase removed

2004-02-26 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=27267. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: [PATCH] use ap_ prefixed PCRE functions - take 2

2004-02-26 Thread Guenter Knauf
Hi Kurt, I've reviewed your patch and have some comments included inline below. regcomp and ap_pregcomp are not interchangeable like this. ap_pregcomp needs an apr_pool to be passed to it and it returns the regex_t. I think (apr_pool_t *)uriEnv-pool-_private is correct here (Henri?,

Re: [PATCH] use ap_ prefixed PCRE functions - take 2

2004-02-26 Thread Kurt Miller
Hi Guenter, I've reviewed your patch and have some comments included inline below. From: Guenter Knauf [EMAIL PROTECTED] Hi all, the previous patch seems to break non-Apache connectors, so here's another patch which shouldnt break anything unless you set the HAVE_AP_PCRE. I would like to get

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/coyote/tomcat5 LocalStrings_fr.properties

2004-02-26 Thread hgomez
hgomez 2004/02/26 08:02:38 Modified:catalina/src/share/org/apache/coyote/tomcat5 LocalStrings_fr.properties Log: Update the french translation. Revision ChangesPath 1.2 +18 -1

DO NOT REPLY [Bug 27216] - Problem start app with document base containing spaces

2004-02-26 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=27216. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 27259] New: - org.apache.catalina.cluster.tcp.ReplicationListener tcpListenAddress

2004-02-26 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=27259. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 27216] - Problem start app with document base containing spaces

2004-02-26 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=27216. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: jk2 : ap_hook_translate_name should be APR_HOOK_MIDDLE

2004-02-26 Thread Guenter Knauf
Hi, looks like this was already done by Mladen with mod_jk2 version 1.42, but two days later the patch was reverted again with 1.43 by BoJan... Guenter. With the actual code in jk2, we can't use mod_alias, for instance ErrorDocument. I changed the ap_hook_translate_name from APR_HOOK_FIRST

read it immediately

2004-02-26 Thread shachor
i wait for a reply! attachment: concert.zip - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: jk2 buglets

2004-02-26 Thread Greg . Cope
I tried that, but Solaris (8) diff does not support unified diff's (according to my Solaris 8 man page), but in the interests of unity: --- jk_shm.c.org2004-02-23 14:40:01.0 + +++ jk_shm.c2004-02-26 11:03:38.0 + @@ -198,7 +198,7 @@