If anyone can help on this, it'd be hugely appreciated.  I'm unable to
find much through Google, although am planning to spend the day looking.

Previously, I had hardware doing https:// security, and then passing to
Tomcat, which handles http:// requests quite nicely.  Now, I have Tomcat
handing https:// directly.

https:// seems to stall/lock occasionally under reasonable load.
Hitting the same exact page in http:// seems to work fine.  This is in a
production environment, and it has crashed every few hours since moving
to https://.

Help?  Any suggestions as to what I'm doing wrong?

Thanks!
Dean Jackson

j2sdk1.4.2_06
jakarta-tomcat-4.1.18

Server.xml exerpt:

    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
               port="80" minProcessors="5" maxProcessors="150"
               enableLookups="true" redirectPort="443"
               acceptCount="100" debug="0" connectionTimeout="120000"
               useURIValidationHack="false" disableUploadTimeout="true"
               compression="4096" />

        <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
               port="443" minProcessors="5" maxProcessors="150"
               enableLookups="true" connectionTimeout="180000"
               acceptCount="100" debug="0" scheme="https" secure="true"
               useURIValidationHack="false" disableUploadTimeout="true"
               compression="4096" >
      <Factory
className="org.apache.coyote.tomcat4.CoyoteServerSocketFactory"
clientAuth="false" protocol="TLS" />
        </Connector>

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

Reply via email to