DO NOT REPLY [Bug 42803] New: - AbstractReplicatedMap.size() is not thread safe.

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

Re: [Configuration] Specifying Location of server.xml on startup

2007-07-03 Thread Tim Funk
(Just a guess ... but) There isn't interest. If you wish server.xml in a different location - switching to the embedded version of tomcat would be a better choice. See the mail archives/Google on embedding tomcat. -Tim Ole Ersoy wrote: Hi, Just wondering whether there are any plans around

mod_jk pointer error for i5/OS V5R4

2007-07-03 Thread Ron Egyed
FYI, The following code in the sc_for_req_header function in module jk_ajp_common was getting a pointer error on version V5R4 of i5/OS (AS400). while (*p) header[i++] = toupper((unsigned char)*p++); IBM provided two solutions to this problem. I tried the 2nd solution of wrapping the

svn commit: r552836 - /tomcat/tc6.0.x/trunk/java/org/apache/catalina/tribes/tipis/AbstractReplicatedMap.java

2007-07-03 Thread fhanik
Author: fhanik Date: Tue Jul 3 06:29:43 2007 New Revision: 552836 URL: http://svn.apache.org/viewvc?view=revrev=552836 Log: Fix BZ 42803 Modified: tomcat/tc6.0.x/trunk/java/org/apache/catalina/tribes/tipis/AbstractReplicatedMap.java Modified:

DO NOT REPLY [Bug 42803] - AbstractReplicatedMap.size() is not thread safe.

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

svn commit: r552838 - /tomcat/trunk/java/org/apache/catalina/tribes/tipis/AbstractReplicatedMap.java

2007-07-03 Thread fhanik
Author: fhanik Date: Tue Jul 3 06:31:05 2007 New Revision: 552838 URL: http://svn.apache.org/viewvc?view=revrev=552838 Log: BZ 42803 Modified: tomcat/trunk/java/org/apache/catalina/tribes/tipis/AbstractReplicatedMap.java Modified:

Re: mod_jk pointer error for i5/OS V5R4

2007-07-03 Thread Henri Gomez
What about doing ? unsigned char ch; while (*p) { ch = (unsigned char)*p++; header[i++] = toupper(ch); } 2007/7/3, Ron Egyed [EMAIL PROTECTED]: FYI, The following code in the sc_for_req_header function in module jk_ajp_common was getting a pointer error on version V5R4 of

svn commit: r552842 - /tomcat/connectors/trunk/jk/native/common/jk_ajp_common.c

2007-07-03 Thread hgomez
Author: hgomez Date: Tue Jul 3 06:46:41 2007 New Revision: 552842 URL: http://svn.apache.org/viewvc?view=revrev=552842 Log: Fix problem with double toupper evaluation on i5/OS V5R4 in LOCALEUTF8 mode Modified: tomcat/connectors/trunk/jk/native/common/jk_ajp_common.c Modified:

Re: [Configuration] Specifying Location of server.xml on startup

2007-07-03 Thread Ole Ersoy
Hi Tim, Cool - Thanks for the heads up. I can accomplish the same thing with hard links, just though making it configurable is slightly more elegant. I'll keep the embedding option mind though. Thanks again, - Ole Tim Funk wrote: (Just a guess ... but) There isn't interest. If you wish

DO NOT REPLY [Bug 38131] - WatchedResource does not work if app is outside webapps

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

Tomcat Bayeux

2007-07-03 Thread Filip Hanik - Dev Lists
yo all, I've started a Bayeux implementation for Tomcat in sandbox. There were some interested in helping out, feel free to dig in. I'm building this one against the trunk Comet API. steps to get started 1. svn co http://svn.apache.org/repos/asf/tomcat/sandbox/bayeux 2. cd bayeux/build 3. ant