svn commit: r705977 - /tomcat/connectors/trunk/jk/native/common/jk_connect.c

2008-10-19 Thread mturk
Author: mturk Date: Sun Oct 19 04:09:40 2008 New Revision: 705977 URL: http://svn.apache.org/viewvc?rev=705977&view=rev Log: EAGAIN is signaled when socket_timeout is set. When timeout occurs during read we break on Windows because there are no EAGAIN there. So break on posix as well Modified:

svn commit: r705976 - /tomcat/connectors/trunk/jk/native/common/jk_lb_worker.c

2008-10-19 Thread mturk
Author: mturk Date: Sun Oct 19 03:59:18 2008 New Revision: 705976 URL: http://svn.apache.org/viewvc?rev=705976&view=rev Log: Log attempt and retry with [ERROR] Modified: tomcat/connectors/trunk/jk/native/common/jk_lb_worker.c Modified: tomcat/connectors/trunk/jk/native/common/jk_lb_worker.c

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

2008-10-19 Thread mturk
Author: mturk Date: Sun Oct 19 06:13:04 2008 New Revision: 706004 URL: http://svn.apache.org/viewvc?rev=706004&view=rev Log: Make sure empty packet is send if client doesn't provide any data and have Content-Lenght <> 0 Modified: tomcat/connectors/trunk/jk/native/common/jk_ajp_common.c Modi

Small memory leak in mod_jk

2008-10-19 Thread Rainer Jung
Hi, we have a small memory leak in mod_jk. Every time we restart, we leak a temporary pool, which we use to resolve addresses. How much memory we leak depends on the number of workers. The problem is in common/jk_connect.c, where we create an apr pool to resolve IP addresses. This pool is never d

DO NOT REPLY [Bug 46038] New: Tomcat JDBC Connection Pool contribution

2008-10-19 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=46038 Summary: Tomcat JDBC Connection Pool contribution Product: Tomcat 6 Version: 6.0.18 Platform: All URL: http://svn.hanik.com/svn/repos/filip/dbcp OS/Version: All St

DO NOT REPLY [Bug 46038] Tomcat JDBC Connection Pool contribution

2008-10-19 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=46038 --- Comment #1 from Filip Hanik <[EMAIL PROTECTED]> 2008-10-19 07:57:23 PST --- Created an attachment (id=22756) --> (https://issues.apache.org/bugzilla/attachment.cgi?id=22756) compiled version, source and test cases -- Configure b

DO NOT REPLY [Bug 46038] Tomcat JDBC Connection Pool contribution

2008-10-19 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=46038 --- Comment #2 from Filip Hanik <[EMAIL PROTECTED]> 2008-10-19 07:58:16 PST --- Created an attachment (id=22757) --> (https://issues.apache.org/bugzilla/attachment.cgi?id=22757) documentation -- Configure bugmail: https://issues.ap

DO NOT REPLY [Bug 46038] Tomcat JDBC Connection Pool contribution

2008-10-19 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=46038 --- Comment #3 from Filip Hanik <[EMAIL PROTECTED]> 2008-10-19 08:00:40 PST --- To migrate from commons-dbcp/tomcat-dbcp to this new pool requires a single attribute change - factory - in the resource element. All the other attributes

Tomcat connection pool contribution

2008-10-19 Thread Filip Hanik - Dev Lists
gentlemen, having run into issues with performance around commons-dbcp as number of logical cpus increase, no such method exceptions using newer JDKs, I've made a small code contribution https://issues.apache.org/bugzilla/show_bug.cgi?id=46038 description and documentation is in the bug, and

svn commit: r706039 - in /tomcat/connectors/trunk/jk/native: apache-1.3/mod_jk.c apache-2.0/mod_jk.c common/jk_ajp_common.c common/jk_connect.c common/jk_connect.h common/jk_service.h iis/jk_isapi_plu

2008-10-19 Thread mturk
Author: mturk Date: Sun Oct 19 09:03:47 2008 New Revision: 706039 URL: http://svn.apache.org/viewvc?rev=706039&view=rev Log: Use optional APR pool used for configuration instead global pool. Modified: tomcat/connectors/trunk/jk/native/apache-1.3/mod_jk.c tomcat/connectors/trunk/jk/native/

svn commit: r706041 - /tomcat/connectors/trunk/jk/native/common/jk_ajp12_worker.c

2008-10-19 Thread mturk
Author: mturk Date: Sun Oct 19 09:06:35 2008 New Revision: 706041 URL: http://svn.apache.org/viewvc?rev=706041&view=rev Log: Use optional APR pool used for configuration instead global pool. Modified: tomcat/connectors/trunk/jk/native/common/jk_ajp12_worker.c Modified: tomcat/connectors/trun

Re: Small memory leak in mod_jk

2008-10-19 Thread Mladen Turk
Rainer Jung wrote: What do you prefer? Patched by using conf pool that gets destroyed. Can you double check it doesn't leek any more. Regards -- ^(TM) - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-m

Re: Small memory leak in mod_jk

2008-10-19 Thread Rainer Jung
Mladen Turk schrieb: > Rainer Jung wrote: >> >> What do you prefer? >> > > Patched by using conf pool that gets destroyed. > Can you double check it doesn't leek any more. Leak gone :) Thanks. Rainer - To unsubscribe, e-mail:

Building With OpenJDK 1.7.0

2008-10-19 Thread Ole Ersoy
Hi, I attempted to build Tomcat 6.0.18 with OpenJDK. I get all sorts of error messages (Pasted Below). Just wondering whether OpenJDK is not supported, or whether there is a simple workaround to this (Besides not using OpenJDK :-) ). I checked on the users list and was told that Tomcat only

Re: Building With OpenJDK 1.7.0

2008-10-19 Thread Mark Thomas
Ole Ersoy wrote: > Hi, > > I attempted to build Tomcat 6.0.18 with OpenJDK. I get all sorts of > error messages (Pasted Below). Just wondering whether OpenJDK is not > supported, or whether there is a simple workaround to this (Besides not > using OpenJDK :-) ). I checked on the users list and

Re: Building With OpenJDK 1.7.0

2008-10-19 Thread Filip Hanik - Dev Lists
yes, that is a known issue due to commons-dbcp uses a delegate pattern to implement the java.sql.Connection interface. a proposed solution for later version of tomcat has been put into bugzilla https://issues.apache.org/bugzilla/show_bug.cgi?id=46038 for now, you would have to comment out the t

svn commit: r706071 - /tomcat/trunk/java/org/apache/jasper/compiler/Generator.java

2008-10-19 Thread markt
Author: markt Date: Sun Oct 19 14:26:40 2008 New Revision: 706071 URL: http://svn.apache.org/viewvc?rev=706071&view=rev Log: Fix the remaining EL / TCK issues. With this patch the EL TCK tests pass and my test cases for bugs 42565, 44994, 45015, 45451, 45427, 45511 and some additional tests for

Using JSF Converter to handle NULL values for empty Strings ""

2008-10-19 Thread Alexander Hartner
I am using a JSF convert to convert empty string submitted to null values. I am able to see the converter doing it's thing and returning null as expected, however the controller is not updated with a null value, but an empty string instead. I then had a dig around online for the cause of th

Re: Building With OpenJDK 1.7.0

2008-10-19 Thread Ole Ersoy
OK - I commented out the DBCP specific targets, and it builds fine. I'll paste the altered build file below in case anyone else follows the thread and wants to give it a whirl. Thanks again for the heads up. Ole

Re: Building With OpenJDK 1.7.0

2008-10-19 Thread Ole Ersoy
Wow - the fix looks promising. Thanks, - Ole Filip Hanik - Dev Lists wrote: yes, that is a known issue due to commons-dbcp uses a delegate pattern to implement the java.sql.Connection interface. a proposed solution for later version of tomcat has been put into bugzilla https://issues.apac

DO NOT REPLY [Bug 46038] Tomcat JDBC Connection Pool contribution

2008-10-19 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=46038 ole ersoy <[EMAIL PROTECTED]> changed: What|Removed |Added CC||[EMAIL PROTECTED]

svn commit: r706088 - /tomcat/tc6.0.x/trunk/STATUS.txt

2008-10-19 Thread markt
Author: markt Date: Sun Oct 19 16:59:13 2008 New Revision: 706088 URL: http://svn.apache.org/viewvc?rev=706088&view=rev Log: Propose some fixes Modified: tomcat/tc6.0.x/trunk/STATUS.txt Modified: tomcat/tc6.0.x/trunk/STATUS.txt URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/STATUS.t

Bug report for Tomcat 3 [2008/10/19]

2008-10-19 Thread bugzilla
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned

Bug report for Watchdog [2008/10/19]

2008-10-19 Thread bugzilla
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned

Bug report for Tomcat 4 [2008/10/19]

2008-10-19 Thread bugzilla
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned

Bug report for Tomcat 5 [2008/10/19]

2008-10-19 Thread bugzilla
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned