Hi Ortwin, Thank you for your reply. I've answered your questions below:
1. Why does the method need to be retried in the first place? Answer: We've been getting "HttpRecoverableException" and I've initially coded a custom retry for handling these types of exceptions. However, I came across an info somewhere that suggests using DefaultMethodRetryHandler in lieu of a custom retry which works perfectly. 2. Which version of HttpClient are you using? Answer: commons-httpclient-2.0.1 3. Is it an authentication problem? Answer: No. We can see in the log file authentication works just fine. 4. Are you using proxy by any chance? Answer: No. Computer that encountered this error connects to ISP via dialup. Computer in other locations that also uses dialup had no problem. 5. Are you opening many simultanous connections to the same host? Answer: Yes. But currently while we're tracing the problem we've stripped it down to not do simultaneous connection. 6. Which HTTP Version does the server use? Answer: HTTP 1.1 7. Can you provide a wire log or packet log of the communication? Answer? Sure! How do I do that? I've attached a text file of what I think you may be looking for. At line 137 the HTTPRecoverable exception first occurs and then goes on for two more then the exception is thrown. More info: Computer was on a dialup connection to an ISP. Other locations also are on dialup but different ISP but works just fine. Operating system is Windows is 98. Any help is greatly appreciated. Thanks. Dennis -----Original Message----- From: Ortwin Glück [mailto:[EMAIL PROTECTED] Sent: Friday, August 20, 2004 1:52 AM To: Commons HttpClient Project Subject: Re: HttpRecoverableException Dennis, The question is, why does the method need to be retried in the first place. You should avoid having to retry expensive methods like POST and PUT normally. Furthermore a lot of questinos arise here: * Which version of HttpClient are you using? * Is it an authentication problem? (would expect a different exception) * Are you using a proxy by any chance? * Are you opening many simultanous connections to the same host? * Which HTTP Version does the server use? * Can you provide a wire log or packet log of the communication? Thanks Ortwin Glück Labajo, Dennis wrote: > > > Hi all. > > > > I badly need help on an error (HttpRecoverableException) I'm getting. > Here's part of my java source code: > > > > > > << the class where httpclient instance is created >> > > > > MultiThreadedHttpConnectionManager cmgr = new > > MultiThreadedHttpConnectionManager(); > > cmgr.setConnectionStaleCheckingEnabled( true ); > > cmgr.setMaxConnectionsPerHost( 10 ); > > cmgr.setMaxTotalConnections( 100 ); > > HttpClient httpclient = new HttpClient(cmgr); > > httpclient.setConnectionTimeout(30000); > > httpclient.setTimeout(30000); > > httpclient.setState( this.commonHttpState); > > > > > > > > << class where httppost is made >> > > > > DefaultMethodRetryHandler methodretry = new DefaultMethodRetryHandler(); > > methodretry.setRequestSentRetryEnabled(true); > > PostMethod httppost = new PostMethod(this.server_url.toString()); > > httppost.setMethodRetryHandler(methodretry); > > httpClient.executeMethod(httppost); > > > > > > > > I do see the recoverable exception caught three times: > > > > 2004/08/19 11:55:44:650 CDT [INFO] HttpMethodBase - -Recoverable > exception caught when processing request > > > > But on the fourth recoverable exception, I get this: > > > > 2004/08/19 11:56:07:440 CDT [WARN] HttpMethodBase - -Recoverable > exception caught but MethodRetryHandler.retryMethod() returned false, > rethrowing exception > > 2004/08/19 11:56:07:440 CDT [DEBUG] MultiThreadedHttpConnectionManager - > -Freeing connection, > hostConfig=HostConfiguration[host=nwapeople2.nwa.com, > protocol=https:443, port=443] > > 2004/08/19 11:56:07:440 CDT [DEBUG] MultiThreadedHttpConnectionManager - > -Notifying no-one, there are no waiting threads > > 2004/08/19 11:56:07:490 CDT [WARN] MainMenu - -Web Service Exception: > he.commons.httpclient.HttpRecoverableException: Error in parsing the > status line from the response: unable to find line starting with "HTTP" > > > > > > > > Is there something I'm not doing right? > > > > Thanks. > > > > Dennis > > > > > > > > -- _________________________________________________________________ NOSE applied intelligence ag ortwin glück [www] http://www.nose.ch software engineer hardturmstrasse 171 [pgp id] 0x81CF3416 8005 zürich [office] +41-1-277 57 35 switzerland [fax] +41-1-277 57 12 --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
2004/08/19 11:54:07:100 CDT [DEBUG] HttpClient - -Java version: 1.4.2_04 2004/08/19 11:54:07:100 CDT [DEBUG] HttpClient - -Java vendor: Sun Microsystems Inc. 2004/08/19 11:54:07:150 CDT [DEBUG] HttpClient - -Java class path: C:\PROGRAM FILES\JAVA\J2RE1.4.2_04\JAVAWS\javaws-l10n.jar 2004/08/19 11:54:07:150 CDT [DEBUG] HttpClient - -Operating system name: Windows 98 2004/08/19 11:54:07:150 CDT [DEBUG] HttpClient - -Operating system architecture: x86 2004/08/19 11:54:07:150 CDT [DEBUG] HttpClient - -Operating system version: 4.10 2004/08/19 11:54:07:150 CDT [DEBUG] HttpClient - -SUN 1.42: SUN (DSA key/parameter generation; DSA signing; SHA-1, MD5 digests; SecureRandom; X.509 certificates; JKS keystore; PKIX CertPathValidator; PKIX CertPathBuilder; LDAP, Collection CertStores) 2004/08/19 11:54:07:150 CDT [DEBUG] HttpClient - -SunJSSE 1.42: Sun JSSE provider(implements RSA Signatures, PKCS12, SunX509 key/trust factories, SSLv3, TLSv1) 2004/08/19 11:54:07:150 CDT [DEBUG] HttpClient - -SunRsaSign 1.42: SUN's provider for RSA signatures 2004/08/19 11:54:07:150 CDT [DEBUG] HttpClient - -SunJCE 1.42: SunJCE Provider (implements DES, Triple DES, AES, Blowfish, PBE, Diffie-Hellman, HMAC-MD5, HMAC-SHA1) 2004/08/19 11:54:07:150 CDT [DEBUG] HttpClient - -SunJGSS 1.0: Sun (Kerberos v5) 2004/08/19 11:54:10:170 CDT [DEBUG] HttpConnection - -HttpConnection.setSoTimeout(0) 2004/08/19 11:54:10:170 CDT [DEBUG] HttpMethodBase - -Execute loop try 1 2004/08/19 11:54:10:230 CDT [DEBUG] HttpMethodBase - -Adding Host request header 2004/08/19 11:54:12:260 CDT [DEBUG] HttpMethodBase - -Authorization required 2004/08/19 11:54:12:370 CDT [DEBUG] HttpAuthenticator - -Authenticating with the 'nwapeople2.nwa.com' authentication realm at nwapeople2.nwa.com 2004/08/19 11:54:12:430 CDT [DEBUG] HttpMethodBase - -HttpMethodBase.execute(): Server demanded authentication credentials, will try again. 2004/08/19 11:54:12:480 CDT [DEBUG] HttpMethodBase - -Resorting to protocol version default close connection policy 2004/08/19 11:54:12:480 CDT [DEBUG] HttpMethodBase - -Should NOT close connection, using HTTP/1.1. 2004/08/19 11:54:12:480 CDT [DEBUG] HttpMethodBase - -Execute loop try 2 2004/08/19 11:54:12:480 CDT [DEBUG] HttpMethodBase - -Request to add Host header ignored: header already added 2004/08/19 11:54:14:180 CDT [DEBUG] HttpMethodBase - -Cookie accepted: "$Version=0; JSESSIONID=Bka4bkzbn9RdFwIT2VzV2FYIEVtrgkULA2MCufQAE4uU5Jsc21sO!-2054356346!bidi1.mn.nwa.com!9091!7002; $Path=/" 2004/08/19 11:54:17:200 CDT [DEBUG] HttpMethodBase - -Should close connection in response to Connection: close 2004/08/19 11:54:24:560 CDT [DEBUG] MultiThreadedHttpConnectionManager - -HttpConnectionManager.getConnection: config = HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443], timeout = 0 2004/08/19 11:54:24:560 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Allocating new connection, hostConfig=HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443] 2004/08/19 11:54:24:730 CDT [DEBUG] HttpConnection - -HttpConnection.setSoTimeout(30000) 2004/08/19 11:54:24:730 CDT [DEBUG] HttpMethodBase - -Execute loop try 1 2004/08/19 11:54:24:730 CDT [DEBUG] HttpMethodBase - -Adding Host request header 2004/08/19 11:54:24:730 CDT [DEBUG] HttpMethodBase - -Default charset used: ISO-8859-1 2004/08/19 11:54:25:660 CDT [DEBUG] EntityEnclosingMethod - -Using buffered request body 2004/08/19 11:54:25:660 CDT [DEBUG] EntityEnclosingMethod - -Request body sent 2004/08/19 11:54:26:710 CDT [DEBUG] HttpMethodBase - -Authorization required 2004/08/19 11:54:26:710 CDT [DEBUG] HttpAuthenticator - -Authenticating with the 'nwapeople2.nwa.com' authentication realm at nwapeople2.nwa.com 2004/08/19 11:54:26:710 CDT [DEBUG] HttpMethodBase - -HttpMethodBase.execute(): Server demanded authentication credentials, will try again. 2004/08/19 11:54:26:710 CDT [DEBUG] HttpMethodBase - -Resorting to protocol version default close connection policy 2004/08/19 11:54:26:710 CDT [DEBUG] HttpMethodBase - -Should NOT close connection, using HTTP/1.1. 2004/08/19 11:54:26:760 CDT [DEBUG] HttpMethodBase - -Execute loop try 2 2004/08/19 11:54:26:760 CDT [DEBUG] HttpMethodBase - -Request to add Host header ignored: header already added 2004/08/19 11:54:26:760 CDT [DEBUG] EntityEnclosingMethod - -Using buffered request body 2004/08/19 11:54:26:760 CDT [DEBUG] EntityEnclosingMethod - -Request body sent 2004/08/19 11:54:27:420 CDT [DEBUG] HttpMethodBase - -Resorting to protocol version default close connection policy 2004/08/19 11:54:27:420 CDT [DEBUG] HttpMethodBase - -Should NOT close connection, using HTTP/1.1. 2004/08/19 11:54:27:420 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Freeing connection, hostConfig=HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443] 2004/08/19 11:54:27:420 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Notifying no-one, there are no waiting threads 2004/08/19 11:54:27:470 CDT [DEBUG] MultiThreadedHttpConnectionManager - -HttpConnectionManager.getConnection: config = HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443], timeout = 0 2004/08/19 11:54:27:530 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Getting free connection, hostConfig=HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443] 2004/08/19 11:54:27:530 CDT [DEBUG] HttpConnection - -HttpConnection.setSoTimeout(30000) 2004/08/19 11:54:27:530 CDT [DEBUG] HttpMethodBase - -Execute loop try 1 2004/08/19 11:54:27:530 CDT [DEBUG] HttpMethodBase - -Adding Host request header 2004/08/19 11:54:27:530 CDT [DEBUG] HttpMethodBase - -Default charset used: ISO-8859-1 2004/08/19 11:54:27:580 CDT [DEBUG] EntityEnclosingMethod - -Using buffered request body 2004/08/19 11:54:27:580 CDT [DEBUG] EntityEnclosingMethod - -Request body sent 2004/08/19 11:54:28:630 CDT [DEBUG] HttpMethodBase - -Authorization required 2004/08/19 11:54:28:630 CDT [DEBUG] HttpAuthenticator - -Authenticating with the 'nwapeople2.nwa.com' authentication realm at nwapeople2.nwa.com 2004/08/19 11:54:28:630 CDT [DEBUG] HttpMethodBase - -HttpMethodBase.execute(): Server demanded authentication credentials, will try again. 2004/08/19 11:54:28:630 CDT [DEBUG] HttpMethodBase - -Resorting to protocol version default close connection policy 2004/08/19 11:54:28:680 CDT [DEBUG] HttpMethodBase - -Should NOT close connection, using HTTP/1.1. 2004/08/19 11:54:28:680 CDT [DEBUG] HttpMethodBase - -Execute loop try 2 2004/08/19 11:54:28:680 CDT [DEBUG] HttpMethodBase - -Request to add Host header ignored: header already added 2004/08/19 11:54:28:740 CDT [DEBUG] EntityEnclosingMethod - -Using buffered request body 2004/08/19 11:54:28:740 CDT [DEBUG] EntityEnclosingMethod - -Request body sent 2004/08/19 11:54:29:890 CDT [DEBUG] HttpMethodBase - -Resorting to protocol version default close connection policy 2004/08/19 11:54:29:890 CDT [DEBUG] HttpMethodBase - -Should NOT close connection, using HTTP/1.1. 2004/08/19 11:54:29:890 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Freeing connection, hostConfig=HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443] 2004/08/19 11:54:29:890 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Notifying no-one, there are no waiting threads 2004/08/19 11:54:43:350 CDT [DEBUG] MultiThreadedHttpConnectionManager - -HttpConnectionManager.getConnection: config = HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443], timeout = 0 2004/08/19 11:54:43:350 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Getting free connection, hostConfig=HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443] 2004/08/19 11:54:43:350 CDT [DEBUG] HttpConnection - -HttpConnection.setSoTimeout(30000) 2004/08/19 11:54:43:350 CDT [DEBUG] HttpMethodBase - -Execute loop try 1 2004/08/19 11:54:43:350 CDT [DEBUG] HttpMethodBase - -Adding Host request header 2004/08/19 11:54:43:350 CDT [DEBUG] HttpMethodBase - -Default charset used: ISO-8859-1 2004/08/19 11:54:43:350 CDT [DEBUG] EntityEnclosingMethod - -Using buffered request body 2004/08/19 11:54:43:350 CDT [DEBUG] EntityEnclosingMethod - -Request body sent 2004/08/19 11:54:44:610 CDT [DEBUG] HttpMethodBase - -Authorization required 2004/08/19 11:54:44:610 CDT [DEBUG] HttpAuthenticator - -Authenticating with the 'nwapeople2.nwa.com' authentication realm at nwapeople2.nwa.com 2004/08/19 11:54:44:610 CDT [DEBUG] HttpMethodBase - -HttpMethodBase.execute(): Server demanded authentication credentials, will try again. 2004/08/19 11:54:44:610 CDT [DEBUG] HttpMethodBase - -Resorting to protocol version default close connection policy 2004/08/19 11:54:44:610 CDT [DEBUG] HttpMethodBase - -Should NOT close connection, using HTTP/1.1. 2004/08/19 11:54:44:610 CDT [DEBUG] HttpMethodBase - -Execute loop try 2 2004/08/19 11:54:44:610 CDT [DEBUG] HttpMethodBase - -Request to add Host header ignored: header already added 2004/08/19 11:54:44:610 CDT [DEBUG] EntityEnclosingMethod - -Using buffered request body 2004/08/19 11:54:44:610 CDT [DEBUG] EntityEnclosingMethod - -Request body sent 2004/08/19 11:54:48:070 CDT [DEBUG] HttpMethodBase - -Should close connection in response to Connection: close 2004/08/19 11:54:48:070 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Freeing connection, hostConfig=HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443] 2004/08/19 11:54:48:070 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Notifying no-one, there are no waiting threads 2004/08/19 11:54:48:290 CDT [DEBUG] MultiThreadedHttpConnectionManager - -HttpConnectionManager.getConnection: config = HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443], timeout = 0 2004/08/19 11:54:48:290 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Getting free connection, hostConfig=HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443] 2004/08/19 11:54:48:400 CDT [DEBUG] HttpConnection - -HttpConnection.setSoTimeout(30000) 2004/08/19 11:54:48:400 CDT [DEBUG] HttpMethodBase - -Execute loop try 1 2004/08/19 11:54:48:460 CDT [DEBUG] HttpMethodBase - -Adding Host request header 2004/08/19 11:54:48:460 CDT [DEBUG] HttpMethodBase - -Default charset used: ISO-8859-1 2004/08/19 11:54:49:450 CDT [DEBUG] EntityEnclosingMethod - -Using buffered request body 2004/08/19 11:54:49:450 CDT [DEBUG] EntityEnclosingMethod - -Request body sent 2004/08/19 11:54:50:490 CDT [DEBUG] HttpMethodBase - -Authorization required 2004/08/19 11:54:50:490 CDT [DEBUG] HttpAuthenticator - -Authenticating with the 'nwapeople2.nwa.com' authentication realm at nwapeople2.nwa.com 2004/08/19 11:54:50:490 CDT [DEBUG] HttpMethodBase - -HttpMethodBase.execute(): Server demanded authentication credentials, will try again. 2004/08/19 11:54:50:490 CDT [DEBUG] HttpMethodBase - -Resorting to protocol version default close connection policy 2004/08/19 11:54:50:490 CDT [DEBUG] HttpMethodBase - -Should NOT close connection, using HTTP/1.1. 2004/08/19 11:54:50:490 CDT [DEBUG] HttpMethodBase - -Execute loop try 2 2004/08/19 11:54:50:490 CDT [DEBUG] HttpMethodBase - -Request to add Host header ignored: header already added 2004/08/19 11:54:50:490 CDT [DEBUG] EntityEnclosingMethod - -Using buffered request body 2004/08/19 11:54:50:540 CDT [DEBUG] EntityEnclosingMethod - -Request body sent 2004/08/19 11:54:51:970 CDT [DEBUG] HttpMethodBase - -Resorting to protocol version default close connection policy 2004/08/19 11:54:51:970 CDT [DEBUG] HttpMethodBase - -Should NOT close connection, using HTTP/1.1. 2004/08/19 11:54:51:970 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Freeing connection, hostConfig=HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443] 2004/08/19 11:54:51:970 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Notifying no-one, there are no waiting threads 2004/08/19 11:54:53:620 CDT [DEBUG] MultiThreadedHttpConnectionManager - -HttpConnectionManager.getConnection: config = HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443], timeout = 0 2004/08/19 11:54:53:620 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Getting free connection, hostConfig=HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443] 2004/08/19 11:54:53:620 CDT [DEBUG] HttpConnection - -HttpConnection.setSoTimeout(30000) 2004/08/19 11:54:53:620 CDT [DEBUG] HttpMethodBase - -Execute loop try 1 2004/08/19 11:54:53:620 CDT [DEBUG] HttpMethodBase - -Adding Host request header 2004/08/19 11:54:53:670 CDT [DEBUG] HttpMethodBase - -Default charset used: ISO-8859-1 2004/08/19 11:54:53:670 CDT [DEBUG] EntityEnclosingMethod - -Using buffered request body 2004/08/19 11:54:53:670 CDT [DEBUG] EntityEnclosingMethod - -Request body sent 2004/08/19 11:54:54:720 CDT [DEBUG] HttpMethodBase - -Authorization required 2004/08/19 11:54:54:720 CDT [DEBUG] HttpAuthenticator - -Authenticating with the 'nwapeople2.nwa.com' authentication realm at nwapeople2.nwa.com 2004/08/19 11:54:54:720 CDT [DEBUG] HttpMethodBase - -HttpMethodBase.execute(): Server demanded authentication credentials, will try again. 2004/08/19 11:54:54:720 CDT [DEBUG] HttpMethodBase - -Resorting to protocol version default close connection policy 2004/08/19 11:54:54:720 CDT [DEBUG] HttpMethodBase - -Should NOT close connection, using HTTP/1.1. 2004/08/19 11:54:54:720 CDT [DEBUG] HttpMethodBase - -Execute loop try 2 2004/08/19 11:54:54:720 CDT [DEBUG] HttpMethodBase - -Request to add Host header ignored: header already added 2004/08/19 11:54:54:720 CDT [DEBUG] EntityEnclosingMethod - -Using buffered request body 2004/08/19 11:54:54:720 CDT [DEBUG] EntityEnclosingMethod - -Request body sent 2004/08/19 11:54:55:320 CDT [DEBUG] HttpMethodBase - -Resorting to protocol version default close connection policy 2004/08/19 11:54:55:320 CDT [DEBUG] HttpMethodBase - -Should NOT close connection, using HTTP/1.1. 2004/08/19 11:54:55:320 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Freeing connection, hostConfig=HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443] 2004/08/19 11:54:55:320 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Notifying no-one, there are no waiting threads 2004/08/19 11:55:39:320 CDT [DEBUG] MultiThreadedHttpConnectionManager - -HttpConnectionManager.getConnection: config = HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443], timeout = 0 2004/08/19 11:55:39:320 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Getting free connection, hostConfig=HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443] 2004/08/19 11:55:39:320 CDT [DEBUG] HttpConnection - -HttpConnection.setSoTimeout(30000) 2004/08/19 11:55:39:320 CDT [DEBUG] HttpMethodBase - -Execute loop try 1 2004/08/19 11:55:39:370 CDT [DEBUG] HttpMethodBase - -Adding Host request header 2004/08/19 11:55:39:370 CDT [DEBUG] HttpMethodBase - -Default charset used: ISO-8859-1 2004/08/19 11:55:39:480 CDT [DEBUG] EntityEnclosingMethod - -Using buffered request body 2004/08/19 11:55:39:480 CDT [DEBUG] EntityEnclosingMethod - -Request body sent 2004/08/19 11:55:44:650 CDT [DEBUG] HttpMethodBase - -Closing the connection. 2004/08/19 11:55:44:650 CDT [INFO] HttpMethodBase - -Recoverable exception caught when processing request 2004/08/19 11:55:44:650 CDT [DEBUG] HttpMethodBase - -Opening the connection. 2004/08/19 11:55:44:760 CDT [DEBUG] HttpMethodBase - -Request to add Host header ignored: header already added 2004/08/19 11:55:47:170 CDT [DEBUG] EntityEnclosingMethod - -Using buffered request body 2004/08/19 11:55:47:230 CDT [DEBUG] EntityEnclosingMethod - -Request body sent 2004/08/19 11:55:52:010 CDT [DEBUG] HttpMethodBase - -Closing the connection. 2004/08/19 11:55:52:010 CDT [INFO] HttpMethodBase - -Recoverable exception caught when processing request 2004/08/19 11:55:52:010 CDT [DEBUG] HttpMethodBase - -Opening the connection. 2004/08/19 11:55:52:120 CDT [DEBUG] HttpMethodBase - -Request to add Host header ignored: header already added 2004/08/19 11:55:54:860 CDT [DEBUG] EntityEnclosingMethod - -Using buffered request body 2004/08/19 11:55:54:860 CDT [DEBUG] EntityEnclosingMethod - -Request body sent 2004/08/19 11:55:59:690 CDT [DEBUG] HttpMethodBase - -Closing the connection. 2004/08/19 11:55:59:690 CDT [INFO] HttpMethodBase - -Recoverable exception caught when processing request 2004/08/19 11:55:59:690 CDT [DEBUG] HttpMethodBase - -Opening the connection. 2004/08/19 11:55:59:750 CDT [DEBUG] HttpMethodBase - -Request to add Host header ignored: header already added 2004/08/19 11:56:02:550 CDT [DEBUG] EntityEnclosingMethod - -Using buffered request body 2004/08/19 11:56:02:610 CDT [DEBUG] EntityEnclosingMethod - -Request body sent 2004/08/19 11:56:07:380 CDT [DEBUG] HttpMethodBase - -Closing the connection. 2004/08/19 11:56:07:380 CDT [INFO] HttpMethodBase - -Recoverable exception caught when processing request 2004/08/19 11:56:07:440 CDT [WARN] HttpMethodBase - -Recoverable exception caught but MethodRetryHandler.retryMethod() returned false, rethrowing exception 2004/08/19 11:56:07:440 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Freeing connection, hostConfig=HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443] 2004/08/19 11:56:07:440 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Notifying no-one, there are no waiting threads 2004/08/19 11:56:21:880 CDT [DEBUG] MultiThreadedHttpConnectionManager - -HttpConnectionManager.getConnection: config = HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443], timeout = 0 2004/08/19 11:56:21:880 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Getting free connection, hostConfig=HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443] 2004/08/19 11:56:21:990 CDT [DEBUG] HttpConnection - -HttpConnection.setSoTimeout(30000) 2004/08/19 11:56:22:050 CDT [DEBUG] HttpMethodBase - -Execute loop try 1 2004/08/19 11:56:22:050 CDT [DEBUG] HttpMethodBase - -Adding Host request header 2004/08/19 11:56:22:050 CDT [DEBUG] HttpMethodBase - -Default charset used: ISO-8859-1 2004/08/19 11:56:22:980 CDT [DEBUG] EntityEnclosingMethod - -Using buffered request body 2004/08/19 11:56:22:980 CDT [DEBUG] EntityEnclosingMethod - -Request body sent 2004/08/19 11:56:27:760 CDT [DEBUG] HttpMethodBase - -Closing the connection. 2004/08/19 11:56:27:760 CDT [INFO] HttpMethodBase - -Recoverable exception caught when processing request 2004/08/19 11:56:27:760 CDT [DEBUG] HttpMethodBase - -Opening the connection. 2004/08/19 11:56:27:820 CDT [DEBUG] HttpMethodBase - -Request to add Host header ignored: header already added 2004/08/19 11:56:30:560 CDT [DEBUG] EntityEnclosingMethod - -Using buffered request body 2004/08/19 11:56:30:560 CDT [DEBUG] EntityEnclosingMethod - -Request body sent 2004/08/19 11:56:36:820 CDT [DEBUG] HttpMethodBase - -Closing the connection. 2004/08/19 11:56:36:820 CDT [INFO] HttpMethodBase - -Recoverable exception caught when processing request 2004/08/19 11:56:36:820 CDT [DEBUG] HttpMethodBase - -Opening the connection. 2004/08/19 11:56:36:930 CDT [DEBUG] HttpMethodBase - -Request to add Host header ignored: header already added 2004/08/19 11:56:38:200 CDT [DEBUG] EntityEnclosingMethod - -Using buffered request body 2004/08/19 11:56:38:250 CDT [DEBUG] EntityEnclosingMethod - -Request body sent 2004/08/19 11:56:44:510 CDT [DEBUG] HttpMethodBase - -Closing the connection. 2004/08/19 11:56:44:570 CDT [INFO] HttpMethodBase - -Recoverable exception caught when processing request 2004/08/19 11:56:44:570 CDT [DEBUG] HttpMethodBase - -Opening the connection. 2004/08/19 11:56:44:620 CDT [DEBUG] HttpMethodBase - -Request to add Host header ignored: header already added 2004/08/19 11:56:46:000 CDT [DEBUG] EntityEnclosingMethod - -Using buffered request body 2004/08/19 11:56:46:000 CDT [DEBUG] EntityEnclosingMethod - -Request body sent 2004/08/19 11:56:52:310 CDT [DEBUG] HttpMethodBase - -Closing the connection. 2004/08/19 11:56:52:310 CDT [INFO] HttpMethodBase - -Recoverable exception caught when processing request 2004/08/19 11:56:52:310 CDT [WARN] HttpMethodBase - -Recoverable exception caught but MethodRetryHandler.retryMethod() returned false, rethrowing exception 2004/08/19 11:56:52:310 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Freeing connection, hostConfig=HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443] 2004/08/19 11:56:52:310 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Notifying no-one, there are no waiting threads 2004/08/19 11:57:01:430 CDT [DEBUG] MultiThreadedHttpConnectionManager - -HttpConnectionManager.getConnection: config = HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443], timeout = 0 2004/08/19 11:57:01:430 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Getting free connection, hostConfig=HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443] 2004/08/19 11:57:01:540 CDT [DEBUG] HttpConnection - -HttpConnection.setSoTimeout(30000) 2004/08/19 11:57:01:540 CDT [DEBUG] HttpMethodBase - -Execute loop try 1 2004/08/19 11:57:01:540 CDT [DEBUG] HttpMethodBase - -Adding Host request header 2004/08/19 11:57:01:540 CDT [DEBUG] HttpMethodBase - -Default charset used: ISO-8859-1 2004/08/19 11:57:02:530 CDT [DEBUG] EntityEnclosingMethod - -Using buffered request body 2004/08/19 11:57:02:580 CDT [DEBUG] EntityEnclosingMethod - -Request body sent 2004/08/19 11:57:07:470 CDT [DEBUG] HttpMethodBase - -Closing the connection. 2004/08/19 11:57:07:470 CDT [INFO] HttpMethodBase - -Recoverable exception caught when processing request 2004/08/19 11:57:07:470 CDT [DEBUG] HttpMethodBase - -Opening the connection. 2004/08/19 11:57:07:640 CDT [DEBUG] HttpMethodBase - -Request to add Host header ignored: header already added 2004/08/19 11:57:10:600 CDT [DEBUG] EntityEnclosingMethod - -Using buffered request body 2004/08/19 11:57:10:600 CDT [DEBUG] EntityEnclosingMethod - -Request body sent 2004/08/19 11:57:15:490 CDT [DEBUG] HttpMethodBase - -Closing the connection. 2004/08/19 11:57:15:490 CDT [INFO] HttpMethodBase - -Recoverable exception caught when processing request 2004/08/19 11:57:15:550 CDT [DEBUG] HttpMethodBase - -Opening the connection. 2004/08/19 11:57:15:600 CDT [DEBUG] HttpMethodBase - -Request to add Host header ignored: header already added 2004/08/19 11:57:19:280 CDT [DEBUG] EntityEnclosingMethod - -Using buffered request body 2004/08/19 11:57:19:340 CDT [DEBUG] EntityEnclosingMethod - -Request body sent 2004/08/19 11:57:24:230 CDT [DEBUG] HttpMethodBase - -Closing the connection. 2004/08/19 11:57:24:230 CDT [INFO] HttpMethodBase - -Recoverable exception caught when processing request 2004/08/19 11:57:24:230 CDT [DEBUG] HttpMethodBase - -Opening the connection. 2004/08/19 11:57:24:340 CDT [DEBUG] HttpMethodBase - -Request to add Host header ignored: header already added 2004/08/19 11:57:27:030 CDT [DEBUG] EntityEnclosingMethod - -Using buffered request body 2004/08/19 11:57:27:080 CDT [DEBUG] EntityEnclosingMethod - -Request body sent 2004/08/19 11:57:31:860 CDT [DEBUG] HttpMethodBase - -Closing the connection. 2004/08/19 11:57:31:860 CDT [INFO] HttpMethodBase - -Recoverable exception caught when processing request 2004/08/19 11:57:31:860 CDT [WARN] HttpMethodBase - -Recoverable exception caught but MethodRetryHandler.retryMethod() returned false, rethrowing exception 2004/08/19 11:57:31:860 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Freeing connection, hostConfig=HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443] 2004/08/19 11:57:31:860 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Notifying no-one, there are no waiting threads 2004/08/19 11:57:51:960 CDT [DEBUG] MultiThreadedHttpConnectionManager - -HttpConnectionManager.getConnection: config = HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443], timeout = 0 2004/08/19 11:57:51:960 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Getting free connection, hostConfig=HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443] 2004/08/19 11:57:52:070 CDT [DEBUG] HttpConnection - -HttpConnection.setSoTimeout(30000) 2004/08/19 11:57:52:070 CDT [DEBUG] HttpMethodBase - -Execute loop try 1 2004/08/19 11:57:52:070 CDT [DEBUG] HttpMethodBase - -Adding Host request header 2004/08/19 11:57:52:070 CDT [DEBUG] HttpMethodBase - -Default charset used: ISO-8859-1 2004/08/19 11:57:52:950 CDT [DEBUG] EntityEnclosingMethod - -Using buffered request body 2004/08/19 11:57:52:950 CDT [DEBUG] EntityEnclosingMethod - -Request body sent 2004/08/19 11:57:53:990 CDT [DEBUG] HttpMethodBase - -Authorization required 2004/08/19 11:57:53:990 CDT [DEBUG] HttpAuthenticator - -Authenticating with the 'nwapeople2.nwa.com' authentication realm at nwapeople2.nwa.com 2004/08/19 11:57:53:990 CDT [DEBUG] HttpMethodBase - -HttpMethodBase.execute(): Server demanded authentication credentials, will try again. 2004/08/19 11:57:53:990 CDT [DEBUG] HttpMethodBase - -Resorting to protocol version default close connection policy 2004/08/19 11:57:53:990 CDT [DEBUG] HttpMethodBase - -Should NOT close connection, using HTTP/1.1. 2004/08/19 11:57:53:990 CDT [DEBUG] HttpMethodBase - -Execute loop try 2 2004/08/19 11:57:53:990 CDT [DEBUG] HttpMethodBase - -Request to add Host header ignored: header already added 2004/08/19 11:57:53:990 CDT [DEBUG] EntityEnclosingMethod - -Using buffered request body 2004/08/19 11:57:53:990 CDT [DEBUG] EntityEnclosingMethod - -Request body sent 2004/08/19 11:57:54:540 CDT [DEBUG] HttpMethodBase - -Resorting to protocol version default close connection policy 2004/08/19 11:57:54:540 CDT [DEBUG] HttpMethodBase - -Should NOT close connection, using HTTP/1.1. 2004/08/19 11:57:54:540 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Freeing connection, hostConfig=HostConfiguration[host=nwapeople2.nwa.com, protocol=https:443, port=443] 2004/08/19 11:57:54:540 CDT [DEBUG] MultiThreadedHttpConnectionManager - -Notifying no-one, there are no waiting threads
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]