RE: Tomcat connections not closing.

2007-11-02 Thread Roark, Mike
PROTECTED] To: Tomcat Users List users@tomcat.apache.org; [EMAIL PROTECTED] Sent: Wednesday, October 31, 2007 11:04 AM Subject: RE: Tomcat connections not closing. Well, yes and no. Yes, the problem has abated, and possibly been eliminated. However, we have no idea what change fixed it. We changed

Re: Tomcat connections not closing.

2007-11-01 Thread Martin Gainty
@tomcat.apache.org; [EMAIL PROTECTED] Sent: Wednesday, October 31, 2007 11:04 AM Subject: RE: Tomcat connections not closing. Well, yes and no. Yes, the problem has abated, and possibly been eliminated. However, we have no idea what change fixed it. We changed nothing in tomcat, but some changes

RE: Tomcat connections not closing.

2007-10-31 Thread Roark, Mike
to look into it, but just keeping watch over it... -Mike -Original Message- From: Ralph Goers [mailto:[EMAIL PROTECTED] Sent: Saturday, October 27, 2007 10:48 AM To: Tomcat Users List Subject: Re: Tomcat connections not closing. Mike, Have you been able to make any progress

Re: Tomcat connections not closing.

2007-10-27 Thread Ralph Goers
Mike, Have you been able to make any progress with this? I'm very interested in the outcome as we experience the same problem. Ralph Roark, Mike wrote: Filip, Thanks for the help. You were right about the default for disableUploadTimeout. I must have been looking at 5.0 docs before, it

Re: Tomcat connections not closing.

2007-10-27 Thread Martin Gainty
http://tomcat.apache.org/tomcat-4.1-doc/config/coyote.html I would check the connectionLinger parameter M-- - Original Message - From: Ralph Goers [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Saturday, October 27, 2007 11:47 AM Subject: Re: Tomcat connections

Re: Tomcat connections not closing.

2007-10-27 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Martin, Martin Gainty wrote: http://tomcat.apache.org/tomcat-4.1-doc/config/coyote.html I would check the connectionLinger parameter Version mismatch. :( Please match versions next time you are attempting to give advise. - -chris -BEGIN

RE: Tomcat connections not closing.

2007-10-15 Thread Roark, Mike
: Friday, October 05, 2007 9:34 AM To: Tomcat Users List Subject: RE: Tomcat connections not closing. Thanks Filip. We believe that disableUploadTimeout is defaulting to false in our setup. connectionTimeout seems to refer to the time until the request URI is received. We are receiving the URI

RE: Tomcat connections not closing.

2007-10-10 Thread Roark, Mike
:[EMAIL PROTECTED] Sent: Friday, October 05, 2007 9:34 AM To: Tomcat Users List Subject: RE: Tomcat connections not closing. Thanks Filip. We believe that disableUploadTimeout is defaulting to false in our setup. connectionTimeout seems to refer to the time until the request URI is received. We

Re: Tomcat connections not closing.

2007-10-10 Thread Filip Hanik - Dev Lists
05, 2007 9:34 AM To: Tomcat Users List Subject: RE: Tomcat connections not closing. Thanks Filip. We believe that disableUploadTimeout is defaulting to false in our setup. connectionTimeout seems to refer to the time until the request URI is received. We are receiving the URI, the problem occurs

Re: Tomcat connections not closing.

2007-10-08 Thread Filip Hanik - Dev Lists
connectionTimeout - gets set to your sockets SO_TIMEOUT, but disableUploadTimeout=true unsets the value in the line above, causing socketWrite0 to not have a timeout, hence if you set disableUploadTimeout=false, then you will make sure that socket read and writes from your servlets/jsps, will

Re: Tomcat connections not closing.

2007-10-07 Thread rgoers
FWIW we have been experiencing this problem intermittently for 2 years and still haven't figured out what is causing it. We changed from IBM JDK 1.4.2 to Sun 1.5, tomcat to JBoss 4.0.3. The only difference is that in our case once the thread gets stuck it never seems to time out - at least as far

Re: Tomcat connections not closing.

2007-10-05 Thread Rainer Jung
Some comments, but not a real solution: The FIN from the client comes in, when the server had already sent out a couple of packets without getting an ACK. The ACK in the FIN does not ACK the latest server packet, instead it is related to a packet some steps earlier (you can check the sequence

RE: Tomcat connections not closing.

2007-10-05 Thread Roark, Mike
though, just to make sure. -Mike -Original Message- From: Filip Hanik - Dev Lists [mailto:[EMAIL PROTECTED] Sent: Thursday, October 04, 2007 4:03 PM To: Tomcat Users List Subject: Re: Tomcat connections not closing. try setting connectionTimeout=5000 disableUploadTimeout

RE: Tomcat connections not closing.

2007-10-05 Thread Roark, Mike
Thank Rainer. That's a good point about the sequence numbers. -Mike -Original Message- From: Rainer Jung [mailto:[EMAIL PROTECTED] Sent: Friday, October 05, 2007 2:44 AM To: Tomcat Users List Subject: Re: Tomcat connections not closing. Some comments, but not a real solution

Re: Tomcat connections not closing.

2007-10-04 Thread Filip Hanik - Dev Lists
try setting connectionTimeout=5000 disableUploadTimeout=false I believe the 2nd parameter, should not set the timeout to infinite while you are inside of a request Filip Roark, Mike wrote: Hello Tomcat users, We are having difficulty with connections to Tomcat remaining open after the