Re: [users@httpd] How to debug 70014 and 70007 errors

2012-08-14 Thread ivan Gouin
Hi Rainer, Keep Alive Timeout wasn't set on my config But its default value of 5 seconds was the reason why the connection closed. In fact the root cause is the behavior of the CXF client who didn't take care of the close announcement of this connection. We're trying to fix this issue but

Re: [users@httpd] How to debug 70014 and 70007 errors

2012-08-12 Thread Rainer Jung
On 08.08.2012 16:20, ivan Gouin wrote: Hi, Here's more information about my issue: Here i will call user : the application who post the request. apache : the httpd server who receive request from the client and send them to tomcat tomcat: the web server tomcat, a Web Service application

Re: [users@httpd] How to debug 70014 and 70007 errors

2012-08-09 Thread ivan Gouin
Hi Rainer, Seems like KeepAliveTimeout Directive was able to resolve my issue Thanks for your helps On 8 August 2012 16:20, ivan Gouin gouin.i...@gmail.com wrote: Hi, Here's more information about my issue: Here i will call user : the application who post the request. apache : the

Re: [users@httpd] How to debug 70014 and 70007 errors

2012-08-08 Thread ivan Gouin
Hi, Here's more information about my issue: Here i will call user : the application who post the request. apache : the httpd server who receive request from the client and send them to tomcat tomcat: the web server tomcat, a Web Service application Versions user : Apache CXF client 2.2.9

Re: [users@httpd] How to debug 70014 and 70007 errors

2012-08-03 Thread ivan Gouin
Here's what i see on the tcpdump: Got a TCP connect 3-way handshake. (SYN/SYN-ACK/ACK) Got 7 POST request who got a return code 200 After the 7 POST, got a [ FIN, ACK] from th server. Then RST from the server Then the 8th request who goes in time out Is there some kind of timeout in a tcp

Re: [users@httpd] How to debug 70014 and 70007 errors

2012-08-03 Thread Rainer Jung
Hi Ivan, On 03.08.2012 17:23, ivan Gouin wrote: Here's what i see on the tcpdump: Got a TCP connect 3-way handshake. (SYN/SYN-ACK/ACK) Got 7 POST request who got a return code 200 After the 7 POST, got a [ FIN, ACK] from th server. Then RST from the server Then the 8th request who goes in

Re: [users@httpd] How to debug 70014 and 70007 errors

2012-07-30 Thread ivan Gouin
Hi, Got some Tcpdump ! What i can see is that everytime when we got the issue, our httpd server got an RST from the tomcat server. Does someone have a clue on what's happening? 104 15:17:51.887648 X.X.X.X X.X.X.X TCP 551 50300 45371 [PSH, ACK] Seq=459 Ack=1518 Win=49232 Len=485 TSval=702118294

[users@httpd] How to debug 70014 and 70007 errors

2012-07-25 Thread ivan Gouin
Hi, I've got those error in my httpd error log: [Wed Jul 25 08:10:55 2012] [error] (70014)End of file found: proxy: prefetch request body failed to *.*.*.*:50300 (...) from . () [Wed Jul 25 00:13:18 2012] [error] (70007)The timeout specified has expired: proxy: prefetch request body failed

Re: [users@httpd] How to debug 70014 and 70007 errors

2012-07-25 Thread Rainer Jung
On 25.07.2012 09:52, ivan Gouin wrote: Hi, I've got those error in my httpd error log: [Wed Jul 25 08:10:55 2012] [error] (70014)End of file found: proxy: prefetch request body failed to *.*.*.*:50300 (...) from . () [Wed Jul 25 00:13:18 2012] [error] (70007)The timeout specified has

Re: [users@httpd] How to debug 70014 and 70007 errors

2012-07-25 Thread ivan Gouin
Hi rainer, For case 70007, the timeout expired, in access log , i've got a 300 second timeout In the same time, tomcat's access log haven't any trace of the corresponding request. For these request, response time is about 30-100ms Apache is Apache/2.2.17 Tomcat is 6.0.26 (jdk1.6.0_24) I'm