vmassol 02/01/13 07:52:43
Modified: conf/sample/conf/test/servlet22/tomcat33 server.xml
docs/framework/xdocs changes.xml
Log:
added <code>delaySocketClose="true"</code>, which is a new attribute of Tomcat
3.3.1. The reason is that on fast CPU Tomcat 3.3.0 is releasing too quickly opened
sockets and the Cactus client side gets a "socket closed by peer" exception
Revision Changes Path
1.4 +1 -4
jakarta-cactus/conf/sample/conf/test/servlet22/tomcat33/server.xml
Index: server.xml
===================================================================
RCS file:
/home/cvs/jakarta-cactus/conf/sample/conf/test/servlet22/tomcat33/server.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- server.xml 3 Jan 2002 13:34:48 -0000 1.3
+++ server.xml 13 Jan 2002 15:52:43 -0000 1.4
@@ -5,9 +5,6 @@
<!-- ==================== Global modules ==================== -->
- <LogSetter name="tc_log" timestamps="true" path="tomcat.log"
- verbosityLevel="INFORMATION" />
-
<LogEvents enabled="false" />
<AutoDeploy source="webapps" target="webapps" />
@@ -83,7 +80,7 @@
secure - use SSL ( https )
keystore, keypass - certs for SSL
port -->
- <Http10Connector port="@test.port@"
+ <Http10Connector port="@test.port@" delaySocketClose="true"
secure="false"
maxThreads="100"
maxSpareThreads="50"
1.76 +4 -1 jakarta-cactus/docs/framework/xdocs/changes.xml
Index: changes.xml
===================================================================
RCS file: /home/cvs/jakarta-cactus/docs/framework/xdocs/changes.xml,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- changes.xml 10 Jan 2002 20:00:13 -0000 1.75
+++ changes.xml 13 Jan 2002 15:52:43 -0000 1.76
@@ -137,7 +137,10 @@
</action>
<action dev="VMA" type="fix" due-to="Larry Isaacs"
due-to-email="[EMAIL PROTECTED]">
Improved Tomcat 3.3 configuration that is bundled with the Cactus
- sample application.
+ sample application and added <code>delaySocketClose="true"</code>,
+ which is a new attribute of Tomcat 3.3.1. The reason is that on fast
+ CPU Tomcat 3.3.0 is releasing too quickly opened sockets and the Cactus
+ client side gets a "socket closed by peer" exception.
</action>
<action dev="VMA" type="add">
Added automatic script support for WebLogic 6.1.
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>