Re: cvs commit: jakarta-tomcat-connectors/jni/native/src network.c

2005-04-18 Thread jean-frederic clere
Remy Maucherat wrote: Mladen Turk wrote: [EMAIL PROTECTED] wrote: jfclere 2005/04/16 03:31:34 Modified:jni/java/org/apache/tomcat/jni Socket.java jni/native/src network.c Log: Throw an exception when bind() failed. Why did you do that? I mean there is no need to

Re: bugreports for commons-daemon

2005-04-18 Thread jean-frederic clere
Simon Kitching wrote: Hi, Commons-daemon is shipped with Tomcat. In fact, I believe it originated in the Tomcat project and was moved to commons. However it appears that there are no longer any active developers working on commons-daemon. The number of bugreports in bugzilla for this component is

http://jakarta.apache.org/tomcat/tomcat-5.5-doc/building.html

2005-04-18 Thread jean-frederic clere
Hi, I have tried to build the tomcat following the document. The part about using proxy misses the problems related to cvs (cvs does not support http-proxy and ssh + ext could be used for committers). I have some questions: - When do we move to subversion? - Does it make sense to improve the

DO NOT REPLY [Bug 33494] - jscv configure script fails on x86_64

2005-04-18 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=33494. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

Returned mail: Delivery failed

2005-04-18 Thread aina . peters
The attempted delivery of http://jakarta.apache.org/tomcat/tomcat-5.5-doc/building.html; failed for the following reason: 555 ... User mailbox full [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Returned mail: Delivery failed

2005-04-18 Thread aina . peters
The attempted delivery of DO NOT REPLY [Bug 33494] -jscv configure script fails on x86_64 failed for the following reason: 555 ... User mailbox full [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For

[EMAIL PROTECTED]: Project jakarta-tomcat-jasper_tc5 (in module jakarta-tomcat-jasper_tc5) failed

2005-04-18 Thread bobh
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project jakarta-tomcat-jasper_tc5 has an issue affecting its community integration.

[EMAIL PROTECTED]: Project jakarta-tomcat-jk-native (in module jakarta-tomcat-connectors) failed

2005-04-18 Thread Bill Barker
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project jakarta-tomcat-jk-native has an issue affecting its community integration. This

cvs commit: jakarta-tomcat-connectors/jni/native/include tcn.h

2005-04-18 Thread mturk
mturk 2005/04/18 05:30:54 Modified:jni/native/include tcn.h Log: Added ASSERT macro for DEBUG build to track the invalid params. Revision ChangesPath 1.3 +7 -0 jakarta-tomcat-connectors/jni/native/include/tcn.h Index: tcn.h

cvs commit: jakarta-tomcat-connectors/jni/native/src network.c pool.c

2005-04-18 Thread mturk
mturk 2005/04/18 05:31:13 Modified:jni/native/src network.c pool.c Log: Added ASSERT macro for DEBUG build to track the invalid params. Revision ChangesPath 1.12 +28 -1 jakarta-tomcat-connectors/jni/native/src/network.c Index: network.c

cvs commit: jakarta-tomcat-connectors/jni/native/src poll.c

2005-04-18 Thread mturk
mturk 2005/04/18 05:33:42 Modified:jni/native/src poll.c Log: Make poll threadsafe and with add queue that is added to pollset before the actuall poll is called. Revision ChangesPath 1.6 +101 -20 jakarta-tomcat-connectors/jni/native/src/poll.c Index:

cvs commit: jakarta-tomcat-connectors/jni/native BUILDING

2005-04-18 Thread jfclere
jfclere 2005/04/18 06:52:49 Modified:jni/native BUILDING Log: Add how to run the example and to use Tomcat 5.5.x with the new code. Revision ChangesPath 1.2 +17 -2 jakarta-tomcat-connectors/jni/native/BUILDING Index: BUILDING

cvs commit: jakarta-tomcat-connectors/jni/native/src poll.c

2005-04-18 Thread mturk
mturk 2005/04/18 06:53:33 Modified:jni/native/src poll.c Log: Instead returning file desriptors, return socket, events and client data in array offset. Revision ChangesPath 1.7 +9 -5 jakarta-tomcat-connectors/jni/native/src/poll.c Index: poll.c

cvs commit: jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/net AprEndpoint.java

2005-04-18 Thread mturk
mturk 2005/04/18 06:57:12 Modified:util/java/org/apache/tomcat/util/net AprEndpoint.java Log: Fix pool usage. Use indexed descriptors for obtaining poll params and data. It spares 3 JNI calls for each polled socket. Revision ChangesPath 1.8 +83 -91

cvs commit: jakarta-tomcat-connectors/jni/examples/org/apache/tomcat/jni Echo.java

2005-04-18 Thread jfclere
jfclere 2005/04/18 07:06:42 Modified:jni/examples/org/apache/tomcat/jni Echo.java Log: Check the return code of bind(). Revision ChangesPath 1.8 +5 -2 jakarta-tomcat-connectors/jni/examples/org/apache/tomcat/jni/Echo.java Index: Echo.java

Re: cvs commit: jakarta-tomcat-connectors/jni/examples/org/apache/tomcat/jni Echo.java

2005-04-18 Thread Mladen Turk
[EMAIL PROTECTED] wrote: +int rc = Socket.bind(serverSock, inetAddress); +if (rc != 0) { + throw(new Exception(Can't create Acceptor:bind failed)); +} You can use 'throw(new Exception(Error.strerror(rv)));' It will return

cvs commit: jakarta-tomcat-catalina/modules/cluster/src/share/org/apache/catalina/cluster/tcp ClusterReceiverBase.java

2005-04-18 Thread fhanik
fhanik 2005/04/18 07:29:28 Modified:modules/cluster/src/share/org/apache/catalina/cluster/tcp ClusterReceiverBase.java Log: Fixed spelling error Revision ChangesPath 1.4 +4 -4

cvs commit: jakarta-tomcat-catalina/modules/cluster/test/src/share/org/apache/catalina/cluster/tcp ReplicationTransmitterTest.java

2005-04-18 Thread fhanik
fhanik 2005/04/18 07:34:56 Modified:modules/cluster/src/share/org/apache/catalina/cluster/tcp ReplicationTransmitter.java modules/cluster/test/src/share/org/apache/catalina/cluster/tcp ReplicationTransmitterTest.java Log:

cvs commit: jakarta-tomcat-connectors/jni/native/src poll.c

2005-04-18 Thread mturk
mturk 2005/04/18 08:24:01 Modified:jni/examples/org/apache/tomcat/jni Echo.java jni/java/org/apache/tomcat/jni Poll.java jni/native/src poll.c Log: Remove obsolete Poll.socket, Poll.events and Poll.data calls. Now Api uses indexed array for

cvs commit: jakarta-tomcat-connectors/jni/examples/org/apache/tomcat/jni Echo.java

2005-04-18 Thread jfclere
jfclere 2005/04/18 08:28:06 Modified:jni/examples/org/apache/tomcat/jni Echo.java Log: use Error.strerror(). Thanks Mladen ;-) Revision ChangesPath 1.10 +2 -2 jakarta-tomcat-connectors/jni/examples/org/apache/tomcat/jni/Echo.java Index: Echo.java

Re: cvs commit: jakarta-tomcat-connectors/jni/examples/org/apache/tomcat/jni Echo.java

2005-04-18 Thread jean-frederic clere
Mladen Turk wrote: [EMAIL PROTECTED] wrote: +int rc = Socket.bind(serverSock, inetAddress); +if (rc != 0) { + throw(new Exception(Can't create Acceptor:bind failed)); +} You can use 'throw(new

cvs commit: jakarta-tomcat-connectors/jni/native/src poll.c

2005-04-18 Thread mturk
mturk 2005/04/18 08:43:35 Modified:jni/native/src poll.c Log: If add queue is too large, do not return APR_ENOMEM, but rather bail out from the add loop. Whats in the queue will be added on the next call. Revision ChangesPath 1.9 +3 -1

cvs commit: jakarta-tomcat-connectors/jni/native/src network.c

2005-04-18 Thread mturk
mturk 2005/04/18 09:22:23 Modified:jni/java/org/apache/tomcat/jni Socket.java jni/native/src network.c Log: Added sendfilet (sendfile with timeout) function to skip the need to call two additional JNI calls in case we wish nonblocking sendifle. Revision

Re: cvs commit: jakarta-tomcat-connectors/jni/native/src network.c

2005-04-18 Thread webmaster
This email address is not in use. To contact us please visit www.ps.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

cvs commit: jakarta-tomcat-connectors/jni/java/org/apache/tomcat/jni Socket.java

2005-04-18 Thread mturk
mturk 2005/04/18 09:25:20 Modified:jni/java/org/apache/tomcat/jni Socket.java Log: Update javadocs for sendfilet. Revision ChangesPath 1.12 +3 -5 jakarta-tomcat-connectors/jni/java/org/apache/tomcat/jni/Socket.java Index: Socket.java

cvs commit: jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11 Http11AprProtocol.java Http11AprProcessor.java

2005-04-18 Thread remm
remm2005/04/18 09:47:48 Modified:util/java/org/apache/tomcat/util/net AprEndpoint.java http11/src/java/org/apache/coyote/http11 Http11AprProtocol.java Http11AprProcessor.java Log: - Add the basis for sendfile (not used yet). - Bugfixes to

mod_jk 1.2.10 - return code when Tomcat not running

2005-04-18 Thread Marx, Mitchell E \(Mitch\), ALABS
Using the same configuration files for 1.2.8 and 1.2.10, I get differing behaviors when Tomcat isn't running. Machine: Solaris 8, Apache 1.3.33 Relevant configuration JkMount /*.jsp ajp13 1.2.8 Response: !DOCTYPE HTML PUBLIC -//IETF//DTD HTML 2.0//EN HTMLHEAD TITLE500 Internal Server

cvs commit: jakarta-tomcat-catalina/modules/cluster/test/src/share/org/apache/catalina/cluster/tcp SimpleTcpClusterTest.java

2005-04-18 Thread pero
pero2005/04/18 11:55:38 Added: modules/cluster/test/src/share/org/apache/catalina/cluster/tcp SimpleTcpClusterTest.java Log: Test auto ClusterSessionListener creation as no other ClusterListener is configured! Revision ChangesPath 1.1

Re: mod_jk 1.2.10 - return code when Tomcat not running

2005-04-18 Thread Mladen Turk
Marx, Mitchell E (Mitch), ALABS wrote: Using the same configuration files for 1.2.8 and 1.2.10, I get differing behaviors when Tomcat isn't running. 1.2.10 Response: !DOCTYPE HTML PUBLIC -//IETF//DTD HTML 2.0//EN HTMLHEAD TITLE200 OK/TITLE This is bug, and will be fixed. It should return

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/authenticator AuthenticatorBase.java

2005-04-18 Thread keith
keith 2005/04/18 13:20:46 Modified:catalina/src/share/org/apache/catalina/authenticator Tag: TOMCAT_5_0 AuthenticatorBase.java Log: [34083 et al] For webapps with security constraints, we default to sending headers to disable caching. This is

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/authenticator AuthenticatorBase.java

2005-04-18 Thread keith
keith 2005/04/18 13:21:57 Modified:catalina/src/share/org/apache/catalina/authenticator AuthenticatorBase.java Log: [34083 et al] For webapps with security constraints, we default to sending headers to disable caching. This is well-intentioned but IE

DO NOT REPLY [Bug 34506] New: - Default encoding issue running Tomcat on z/os

2005-04-18 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=34506. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/authenticator AuthenticatorBase.java

2005-04-18 Thread Remy Maucherat
[EMAIL PROTECTED] wrote: keith 2005/04/18 13:21:57 Modified:catalina/src/share/org/apache/catalina/authenticator AuthenticatorBase.java Log: [34083 et al] For webapps with security constraints, we default to sending headers to disable caching. This is

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/authenticator AuthenticatorBase.java

2005-04-18 Thread Keith Wannamaker
I'd like to omit pragma header by default. What specific client requires it? The community has identified a specific, widespread failure with the former code-- it did not work out of the box with IE under SSL.So, if we want to keep the pragma header the default, what are the reasons?

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/authenticator AuthenticatorBase.java

2005-04-18 Thread Remy Maucherat
Keith Wannamaker wrote: I'd like to omit pragma header by default. What specific client requires it? The community has identified a specific, widespread failure with the former code-- it did not work out of the box with IE under SSL.So, if we want to keep the pragma header the default,

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/authenticator AuthenticatorBase.java

2005-04-18 Thread remm
remm2005/04/18 14:47:17 Modified:catalina/src/share/org/apache/catalina/authenticator AuthenticatorBase.java Log: - Since my previous comments are being ignored, I am making the necessary changes. Revision ChangesPath 1.27 +7 -7

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/authenticator AuthenticatorBase.java

2005-04-18 Thread remm
remm2005/04/18 14:48:14 Modified:catalina/src/share/org/apache/catalina/authenticator AuthenticatorBase.java Log: - Typo. Revision ChangesPath 1.28 +7 -7

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core StandardServer.java

2005-04-18 Thread remm
remm2005/04/18 15:02:02 Modified:catalina/src/share/org/apache/catalina/core StandardServer.java Log: - All done: great job Peter. Revision ChangesPath 1.43 +1 -4

Re: mod_jk 1.2.10 - return code when Tomcat not running

2005-04-18 Thread William A. Rowe, Jr.
At 02:04 PM 4/18/2005, Mladen Turk wrote: This is bug, and will be fixed. It should return SERVER_BUSY (503) if can not connect to Tomcat. You can try to use the load balancer with the single worker, and it should work like explained. It depends; Connection refused == 503

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/authenticator AuthenticatorBase.java

2005-04-18 Thread Keith Wannamaker
Pragma has never been sent out on a secure connection until recently (rev 1.13) This is brand new behavior and it causes problems with IE under SSL. At the time you even said you'd be willing to roll it back. I'd be happy to leave cache-control to no-cache, it is the Pragma that is killing

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/authenticator AuthenticatorBase.java

2005-04-18 Thread Remy Maucherat
Keith Wannamaker wrote: Pragma has never been sent out on a secure connection until recently (rev 1.13) This is brand new behavior and it causes problems with IE under SSL. At the time you even said you'd be willing to roll it back. Coincidentally, it was sufficiently long ago that I actually

DO NOT REPLY [Bug 34509] New: - tag names that are xml:Name but not java identifier are not accepted

2005-04-18 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=34509. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

cvs commit: jakarta-tomcat-catalina/webapps/manager/WEB-INF/classes/org/apache/catalina/manager StatusManagerServlet.java StatusTransformer.java

2005-04-18 Thread remm
remm2005/04/18 15:50:24 Modified:webapps/manager/WEB-INF/classes/org/apache/catalina/manager StatusManagerServlet.java StatusTransformer.java Log: - Add some OS level stats if APR is available. Swallow silently if APR is not available. Revision

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/authenticator AuthenticatorBase.java

2005-04-18 Thread Keith Wannamaker
I read: // FIXME: Disabled for Mozilla FORM support over SSL // (improper caching issue) Indeed (I now remember the issue), there would be serious issues should this not be the default. The issue here is, apparently, that Mozilla has a caching bug we are working around,