Hi to all!

I just want to share new info about the bad response time problem between
Tomcat 4.1.12 and MS IE 6.0.

I found that the performance of Tomcat can be improved setting the options:

enableLookups="false"
tcpNoDelay="true"

in the <Connector className="org.apache.coyote.tomcat4.CoyoteConnector">

At the end the config must be:

<!-- Define a non-SSL Coyote HTTP/1.1 Connector on port 8080 -->
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
               port="8080" minProcessors="5" maxProcessors="75"
               enableLookups="false" redirectPort="8443"
               acceptCount="10" debug="0" connectionTimeout="20000"
               useURIValidationHack="false" tcpNoDelay="true"/>

I hope I will help people with the same problem.


Best regards,

Antonio Gallardo.

P.S: For development I am currently using the Tomcat 4.1.15 (alpha
version) and Cocoon 2.1dev works fine. Also using J2SDK 1.4.1_01 on Red
Hat Linux 8.0
For production. I am using Tomcat 4.1.12, Cocoon 2.1 dev, J2SDK 1.4.1_01
and Red Hat Linux 8.0







---------------------------------------------------------------------
Please check that your question  has not already been answered in the
FAQ before posting.     <http://xml.apache.org/cocoon/faq/index.html>

To unsubscribe, e-mail:     <[EMAIL PROTECTED]>
For additional commands, e-mail:   <[EMAIL PROTECTED]>

Reply via email to