Hello, We are using HttpClient 2.0 within a local network to send XML files between 2 servers. We send 4 XML documents in 4 separate requests, one after the other. The problem we are seeing is that the 3rd request does not get sent due to a ConnectionTimeoutException. We have set the connection timeout to 5000 milliseconds, but in the logs we see that the exception is thrown 2 milliseconds later. After the 3rd request fails, the 4th request works fine.
With each request we send the connection:close header so a new connection should be opend every time. One strange thing we see is that after the 2nd request it takes about 20 seconds for HttpMethodBase to acknowledge that the connection should be closed. With the other requests, this is almost instantanious. I am not convinced this is an HttpClient problem as i am unable to replicate the problem in my test environment (of course it only happens in the production environment :-). Maybe someone has some insight into what's happening. Here are our details: HttpClient2-20040526 j2sdk1.4.2 I've included the wire and debug logs (with the XML documents removed). The INFO lines are from our application to give more detail on what the exception was. Thanks for your help, Nick
[mnc]2004-05-27 12:30:04,096 DEBUG GetMethod - enter GetMethod(String) [mnc]2004-05-27 12:30:04,096 DEBUG HttpMethodBase - HttpMethodBase.addRequestHeader(Header) [mnc]2004-05-27 12:30:04,097 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.setRequestBody(String) [mnc]2004-05-27 12:30:04,097 DEBUG PostMethod - enter PostMethod.clearRequestBody() [mnc]2004-05-27 12:30:04,097 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.clearRequestBody() [mnc]2004-05-27 12:30:04,100 DEBUG HttpClient - enter HttpClient.executeMethod(HttpMethod) [mnc]2004-05-27 12:30:04,101 DEBUG HttpClient - enter HttpClient.executeMethod(HostConfiguration,HttpMethod,HttpState) [mnc]2004-05-27 12:30:04,101 DEBUG MultiThreadedHttpConnectionManager - enter HttpConnectionManager.getConnection(HostConfiguration, long) [mnc]2004-05-27 12:30:04,101 DEBUG MultiThreadedHttpConnectionManager - HttpConnectionManager.getConnection: config = HostConfiguration[host=192.168.0.47, protocol=http:80, port=8047], timeout = 0 [mnc]2004-05-27 12:30:04,102 DEBUG MultiThreadedHttpConnectionManager - enter HttpConnectionManager.ConnectionPool.getHostPool(HostConfiguration) [mnc]2004-05-27 12:30:04,114 DEBUG MultiThreadedHttpConnectionManager - enter HttpConnectionManager.ConnectionPool.getHostPool(HostConfiguration) [mnc]2004-05-27 12:30:04,115 DEBUG MultiThreadedHttpConnectionManager - Allocating new connection, hostConfig=HostConfiguration[host=192.168.0.47, protocol=http:80, port=8047] [mnc]2004-05-27 12:30:04,149 DEBUG HttpConnection - enter HttpConnection.open() [mnc]2004-05-27 12:30:04,156 DEBUG HttpConnection - HttpConnection.setSoTimeout(25000) [mnc]2004-05-27 12:30:04,156 DEBUG HttpMethodBase - enter HttpMethodBase.execute(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,156 DEBUG HttpMethodBase - Execute loop try 1 [mnc]2004-05-27 12:30:04,157 DEBUG HttpMethodBase - enter HttpMethodBase.processRequest(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,157 DEBUG HttpMethodBase - Attempt number 1 to process request [mnc]2004-05-27 12:30:04,157 DEBUG HttpMethodBase - enter HttpMethodBase.writeRequest(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,157 DEBUG HttpMethodBase - enter HttpMethodBase.writeRequestLine(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,157 DEBUG HttpMethodBase - enter HttpMethodBase.generateRequestLine(HttpConnection, String, String, String, String) [mnc]2004-05-27 12:30:04,162 DEBUG wire - >> "POST /Blue/sms/xml HTTP/1.1[\r][\n]" [mnc]2004-05-27 12:30:04,162 DEBUG HttpConnection - enter HttpConnection.print(String) [mnc]2004-05-27 12:30:04,169 DEBUG HttpConnection - enter HttpConnection.write(byte[]) [mnc]2004-05-27 12:30:04,169 DEBUG HttpConnection - enter HttpConnection.write(byte[], int, int) [mnc]2004-05-27 12:30:04,169 DEBUG HttpMethodBase - enter HttpMethodBase.writeRequestHeaders(HttpState,HttpConnection) [mnc]2004-05-27 12:30:04,169 DEBUG ExpectContinueMethod - enter ExpectContinueMethod.addRequestHeaders(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,169 DEBUG HttpMethodBase - enter HttpMethodBase.addRequestHeaders(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,169 DEBUG HttpMethodBase - enter HttpMethodBase.addUserAgentRequestHeaders(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,169 DEBUG HttpMethodBase - enter HttpMethodBase.addHostRequestHeader(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,170 DEBUG HttpMethodBase - Adding Host request header [mnc]2004-05-27 12:30:04,170 DEBUG HttpMethodBase - enter HttpMethodBase.addCookieRequestHeader(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,187 DEBUG HttpState - enter HttpState.getCookies() [mnc]2004-05-27 12:30:04,192 DEBUG CookieSpec - enter CookieSpecBase.match(String, int, String, boolean, Cookie[]) [mnc]2004-05-27 12:30:04,192 DEBUG HttpMethodBase - enter HttpMethodBase.addAuthorizationRequestHeader(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,193 DEBUG HttpMethodBase - enter HttpMethodBase.addProxyAuthorizationRequestHeader(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,193 DEBUG HttpMethodBase - enter HttpMethodBase.addProxyConnectionHeader(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,193 DEBUG EntityEnclosingMethod - enter HttpMethodBase.addContentLengthRequestHeader(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,193 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.getRequestContentLength() [mnc]2004-05-27 12:30:04,193 DEBUG PostMethod - enter PostMethod.hasRequestContent() [mnc]2004-05-27 12:30:04,193 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.hasRequestContent() [mnc]2004-05-27 12:30:04,193 DEBUG PostMethod - enter PostMethod.renerateRequestBody() [mnc]2004-05-27 12:30:04,193 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.renerateRequestBody() [mnc]2004-05-27 12:30:04,193 DEBUG HttpMethodBase - enter getContentCharSet( Header contentheader ) [mnc]2004-05-27 12:30:04,202 DEBUG HeaderElement - enter HeaderElement.parse(String) [mnc]2004-05-27 12:30:04,202 DEBUG HeaderElement - enter HeaderElement.parsePair(char[], int, int) [mnc]2004-05-27 12:30:04,202 DEBUG HeaderElement - enter HeaderElement.parsePair(char[], int, int) [mnc]2004-05-27 12:30:04,203 DEBUG HttpMethodBase - HttpMethodBase.addRequestHeader(Header) [mnc]2004-05-27 12:30:04,203 DEBUG wire - >> "Connection: close[\r][\n]" [mnc]2004-05-27 12:30:04,203 DEBUG HttpConnection - enter HttpConnection.print(String) [mnc]2004-05-27 12:30:04,204 DEBUG HttpConnection - enter HttpConnection.write(byte[]) [mnc]2004-05-27 12:30:04,204 DEBUG HttpConnection - enter HttpConnection.write(byte[], int, int) [mnc]2004-05-27 12:30:04,204 DEBUG wire - >> "Content-type: text/xml; charset=UTF-8[\r][\n]" [mnc]2004-05-27 12:30:04,204 DEBUG HttpConnection - enter HttpConnection.print(String) [mnc]2004-05-27 12:30:04,204 DEBUG HttpConnection - enter HttpConnection.write(byte[]) [mnc]2004-05-27 12:30:04,204 DEBUG HttpConnection - enter HttpConnection.write(byte[], int, int) [mnc]2004-05-27 12:30:04,204 DEBUG wire - >> "User-Agent: Jakarta Commons-HttpClient/2.0final[\r][\n]" [mnc]2004-05-27 12:30:04,204 DEBUG HttpConnection - enter HttpConnection.print(String) [mnc]2004-05-27 12:30:04,204 DEBUG HttpConnection - enter HttpConnection.write(byte[]) [mnc]2004-05-27 12:30:04,204 DEBUG HttpConnection - enter HttpConnection.write(byte[], int, int) [mnc]2004-05-27 12:30:04,205 DEBUG wire - >> "Host: 192.168.0.47:8047[\r][\n]" [mnc]2004-05-27 12:30:04,205 DEBUG HttpConnection - enter HttpConnection.print(String) [mnc]2004-05-27 12:30:04,205 DEBUG HttpConnection - enter HttpConnection.write(byte[]) [mnc]2004-05-27 12:30:04,205 DEBUG HttpConnection - enter HttpConnection.write(byte[], int, int) [mnc]2004-05-27 12:30:04,205 DEBUG wire - >> "Content-Length: 422[\r][\n]" [mnc]2004-05-27 12:30:04,205 DEBUG HttpConnection - enter HttpConnection.print(String) [mnc]2004-05-27 12:30:04,205 DEBUG HttpConnection - enter HttpConnection.write(byte[]) [mnc]2004-05-27 12:30:04,205 DEBUG HttpConnection - enter HttpConnection.write(byte[], int, int) [mnc]2004-05-27 12:30:04,205 DEBUG HttpConnection - enter HttpConnection.writeLine() [mnc]2004-05-27 12:30:04,205 DEBUG HttpConnection - enter HttpConnection.write(byte[]) [mnc]2004-05-27 12:30:04,205 DEBUG HttpConnection - enter HttpConnection.write(byte[], int, int) [mnc]2004-05-27 12:30:04,206 DEBUG HttpConnection - enter HttpConnection.flushRequestOutputStream() [mnc]2004-05-27 12:30:04,206 DEBUG wire - >> "[\r][\n]" [mnc]2004-05-27 12:30:04,206 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.writeRequestBody(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,206 DEBUG PostMethod - enter PostMethod.hasRequestContent() [mnc]2004-05-27 12:30:04,206 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.hasRequestContent() [mnc]2004-05-27 12:30:04,206 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.getRequestContentLength() [mnc]2004-05-27 12:30:04,206 DEBUG PostMethod - enter PostMethod.hasRequestContent() [mnc]2004-05-27 12:30:04,207 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.hasRequestContent() [mnc]2004-05-27 12:30:04,207 DEBUG EntityEnclosingMethod - Using buffered request body [mnc]2004-05-27 12:30:04,207 DEBUG HttpConnection - enter HttpConnection.getRequestOutputStream() [mnc]2004-05-27 12:30:04,208 DEBUG wire - >> [mnc]2004-05-27 12:30:04,208 DEBUG wire - >> [mnc]2004-05-27 12:30:04,209 DEBUG wire - >> [mnc]2004-05-27 12:30:04,209 DEBUG wire - >> [mnc]2004-05-27 12:30:04,211 DEBUG wire - >> [mnc]2004-05-27 12:30:04,211 DEBUG wire - >> [mnc]2004-05-27 12:30:04,211 DEBUG wire - >> [mnc]2004-05-27 12:30:04,212 DEBUG wire - >> [mnc]2004-05-27 12:30:04,212 DEBUG wire - >> [mnc]2004-05-27 12:30:04,212 DEBUG wire - >> [mnc]2004-05-27 12:30:04,212 DEBUG EntityEnclosingMethod - Request body sent [mnc]2004-05-27 12:30:04,212 DEBUG HttpConnection - enter HttpConnection.flushRequestOutputStream() [mnc]2004-05-27 12:30:04,212 DEBUG HttpMethodBase - enter HttpMethodBase.readResponse(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,212 DEBUG HttpMethodBase - enter HttpMethodBase.readStatusLine(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,212 DEBUG HttpConnection - enter HttpConnection.readLine() [mnc]2004-05-27 12:30:04,217 DEBUG HttpParser - enter HttpParser.readLine() [mnc]2004-05-27 12:30:04,217 DEBUG HttpParser - enter HttpParser.readRawLine() [mnc]2004-05-27 12:30:04,252 DEBUG wire - << "HTTP/1.1 200 OK[\r][\n]" [mnc]2004-05-27 12:30:04,252 DEBUG HttpMethodBase - enter HttpMethodBase.readResponseHeaders(HttpState,HttpConnection) [mnc]2004-05-27 12:30:04,252 DEBUG HttpConnection - enter HttpConnection.getResponseInputStream() [mnc]2004-05-27 12:30:04,252 DEBUG HttpParser - enter HeaderParser.parseHeaders(HttpConnection, HeaderGroup) [mnc]2004-05-27 12:30:04,252 DEBUG HttpParser - enter HttpParser.readLine() [mnc]2004-05-27 12:30:04,252 DEBUG HttpParser - enter HttpParser.readRawLine() [mnc]2004-05-27 12:30:04,254 DEBUG HttpParser - enter HttpParser.readLine() [mnc]2004-05-27 12:30:04,254 DEBUG HttpParser - enter HttpParser.readRawLine() [mnc]2004-05-27 12:30:04,255 DEBUG HttpParser - enter HttpParser.readLine() [mnc]2004-05-27 12:30:04,255 DEBUG HttpParser - enter HttpParser.readRawLine() [mnc]2004-05-27 12:30:04,255 DEBUG HttpParser - enter HttpParser.readLine() [mnc]2004-05-27 12:30:04,255 DEBUG HttpParser - enter HttpParser.readRawLine() [mnc]2004-05-27 12:30:04,256 DEBUG HttpParser - enter HttpParser.readLine() [mnc]2004-05-27 12:30:04,256 DEBUG HttpParser - enter HttpParser.readRawLine() [mnc]2004-05-27 12:30:04,256 DEBUG wire - << "Content-Type: text/xml;charset=UTF-8[\r][\n]" [mnc]2004-05-27 12:30:04,256 DEBUG wire - << "Date: Thu, 27 May 2004 10:30:02 GMT[\r][\n]" [mnc]2004-05-27 12:30:04,257 DEBUG wire - << "Server: Apache-Coyote/1.1[\r][\n]" [mnc]2004-05-27 12:30:04,257 DEBUG wire - << "Connection: close[\r][\n]" [mnc]2004-05-27 12:30:04,257 DEBUG HttpMethodBase - enter HttpMethodBase.processResponseHeaders(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,257 DEBUG GetMethod - enter GetMethod.readResponseBody(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,257 DEBUG HttpMethodBase - enter HttpMethodBase.readResponseBody(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,257 DEBUG HttpMethodBase - enter HttpMethodBase.readResponseBody(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,257 DEBUG HttpConnection - enter HttpConnection.getResponseInputStream() [mnc]2004-05-27 12:30:04,258 DEBUG HttpMethodBase - enter HttpMethodBase.canResponseHaveBody(int) [mnc]2004-05-27 12:30:04,262 DEBUG wire - << [mnc]2004-05-27 12:30:04,262 DEBUG wire - << [mnc]2004-05-27 12:30:04,263 DEBUG wire - << [mnc]2004-05-27 12:30:04,263 DEBUG wire - << [mnc]2004-05-27 12:30:04,263 DEBUG wire - << [mnc]2004-05-27 12:30:04,263 DEBUG wire - << [mnc]2004-05-27 12:30:04,263 DEBUG wire - << [mnc]2004-05-27 12:30:04,263 DEBUG wire - << [mnc]2004-05-27 12:30:04,263 DEBUG GenericSAXParser - startDocument: Starting document parsing... [mnc]2004-05-27 12:30:04,265 DEBUG HttpMethodBase - Should close connection in response to Connection: close [mnc]2004-05-27 12:30:04,265 DEBUG HttpConnection - enter HttpConnection.close() [mnc]2004-05-27 12:30:04,265 DEBUG HttpConnection - enter HttpConnection.closeSockedAndStreams() [mnc]2004-05-27 12:30:04,265 DEBUG HttpConnection - enter HttpConnection.releaseConnection() [mnc]2004-05-27 12:30:04,265 DEBUG MultiThreadedHttpConnectionManager - enter HttpConnectionManager.releaseConnection(HttpConnection) [mnc]2004-05-27 12:30:04,269 DEBUG MultiThreadedHttpConnectionManager - Freeing connection, hostConfig=HostConfiguration[host=192.168.0.47, protocol=http:80, port=8047] [mnc]2004-05-27 12:30:04,269 DEBUG MultiThreadedHttpConnectionManager - enter HttpConnectionManager.ConnectionPool.getHostPool(HostConfiguration) [mnc]2004-05-27 12:30:04,270 DEBUG MultiThreadedHttpConnectionManager - Notifying no-one, there are no waiting threads [mnc]2004-05-27 12:30:04,270 DEBUG GenericSAXParser - endDocument: Document parsing completed. [mnc]2004-05-27 12:30:04,290 DEBUG GetMethod - enter GetMethod(String) [mnc]2004-05-27 12:30:04,290 DEBUG HttpMethodBase - HttpMethodBase.addRequestHeader(Header) [mnc]2004-05-27 12:30:04,290 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.setRequestBody(String) [mnc]2004-05-27 12:30:04,290 DEBUG PostMethod - enter PostMethod.clearRequestBody() [mnc]2004-05-27 12:30:04,290 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.clearRequestBody() [mnc]2004-05-27 12:30:04,290 DEBUG HttpClient - enter HttpClient.executeMethod(HttpMethod) [mnc]2004-05-27 12:30:04,290 DEBUG HttpClient - enter HttpClient.executeMethod(HostConfiguration,HttpMethod,HttpState) [mnc]2004-05-27 12:30:04,290 DEBUG MultiThreadedHttpConnectionManager - enter HttpConnectionManager.getConnection(HostConfiguration, long) [mnc]2004-05-27 12:30:04,291 DEBUG MultiThreadedHttpConnectionManager - HttpConnectionManager.getConnection: config = HostConfiguration[host=192.168.0.47, protocol=http:80, port=8047], timeout = 0 [mnc]2004-05-27 12:30:04,291 DEBUG MultiThreadedHttpConnectionManager - enter HttpConnectionManager.ConnectionPool.getHostPool(HostConfiguration) [mnc]2004-05-27 12:30:04,291 DEBUG MultiThreadedHttpConnectionManager - enter HttpConnectionManager.ConnectionPool.getHostPool(HostConfiguration) [mnc]2004-05-27 12:30:04,291 DEBUG MultiThreadedHttpConnectionManager - Getting free connection, hostConfig=HostConfiguration[host=192.168.0.47, protocol=http:80, port=8047] [mnc]2004-05-27 12:30:04,291 DEBUG HttpConnection - Connection is stale, closing... [mnc]2004-05-27 12:30:04,291 DEBUG HttpConnection - enter HttpConnection.close() [mnc]2004-05-27 12:30:04,291 DEBUG HttpConnection - enter HttpConnection.closeSockedAndStreams() [mnc]2004-05-27 12:30:04,291 DEBUG HttpConnection - enter HttpConnection.open() [mnc]2004-05-27 12:30:04,293 DEBUG HttpConnection - HttpConnection.setSoTimeout(25000) [mnc]2004-05-27 12:30:04,293 DEBUG HttpMethodBase - enter HttpMethodBase.execute(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,293 DEBUG HttpMethodBase - Execute loop try 1 [mnc]2004-05-27 12:30:04,293 DEBUG HttpMethodBase - enter HttpMethodBase.processRequest(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,293 DEBUG HttpMethodBase - Attempt number 1 to process request [mnc]2004-05-27 12:30:04,293 DEBUG HttpMethodBase - enter HttpMethodBase.writeRequest(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,293 DEBUG HttpMethodBase - enter HttpMethodBase.writeRequestLine(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,293 DEBUG HttpMethodBase - enter HttpMethodBase.generateRequestLine(HttpConnection, String, String, String, String) [mnc]2004-05-27 12:30:04,294 DEBUG wire - >> "POST /Pro/sms/xml HTTP/1.1[\r][\n]" [mnc]2004-05-27 12:30:04,294 DEBUG HttpConnection - enter HttpConnection.print(String) [mnc]2004-05-27 12:30:04,294 DEBUG HttpConnection - enter HttpConnection.write(byte[]) [mnc]2004-05-27 12:30:04,294 DEBUG HttpConnection - enter HttpConnection.write(byte[], int, int) [mnc]2004-05-27 12:30:04,294 DEBUG HttpMethodBase - enter HttpMethodBase.writeRequestHeaders(HttpState,HttpConnection) [mnc]2004-05-27 12:30:04,294 DEBUG ExpectContinueMethod - enter ExpectContinueMethod.addRequestHeaders(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,294 DEBUG HttpMethodBase - enter HttpMethodBase.addRequestHeaders(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,294 DEBUG HttpMethodBase - enter HttpMethodBase.addUserAgentRequestHeaders(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,294 DEBUG HttpMethodBase - enter HttpMethodBase.addHostRequestHeader(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,294 DEBUG HttpMethodBase - Adding Host request header [mnc]2004-05-27 12:30:04,295 DEBUG HttpMethodBase - enter HttpMethodBase.addCookieRequestHeader(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,295 DEBUG HttpState - enter HttpState.getCookies() [mnc]2004-05-27 12:30:04,295 DEBUG CookieSpec - enter CookieSpecBase.match(String, int, String, boolean, Cookie[]) [mnc]2004-05-27 12:30:04,295 DEBUG HttpMethodBase - enter HttpMethodBase.addAuthorizationRequestHeader(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,295 DEBUG HttpMethodBase - enter HttpMethodBase.addProxyAuthorizationRequestHeader(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,295 DEBUG HttpMethodBase - enter HttpMethodBase.addProxyConnectionHeader(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,295 DEBUG EntityEnclosingMethod - enter HttpMethodBase.addContentLengthRequestHeader(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,295 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.getRequestContentLength() [mnc]2004-05-27 12:30:04,295 DEBUG PostMethod - enter PostMethod.hasRequestContent() [mnc]2004-05-27 12:30:04,295 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.hasRequestContent() [mnc]2004-05-27 12:30:04,295 DEBUG PostMethod - enter PostMethod.renerateRequestBody() [mnc]2004-05-27 12:30:04,295 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.renerateRequestBody() [mnc]2004-05-27 12:30:04,295 DEBUG HttpMethodBase - enter getContentCharSet( Header contentheader ) [mnc]2004-05-27 12:30:04,295 DEBUG HeaderElement - enter HeaderElement.parse(String) [mnc]2004-05-27 12:30:04,296 DEBUG HeaderElement - enter HeaderElement.parsePair(char[], int, int) [mnc]2004-05-27 12:30:04,296 DEBUG HeaderElement - enter HeaderElement.parsePair(char[], int, int) [mnc]2004-05-27 12:30:04,296 DEBUG HttpMethodBase - HttpMethodBase.addRequestHeader(Header) [mnc]2004-05-27 12:30:04,296 DEBUG wire - >> "Connection: close[\r][\n]" [mnc]2004-05-27 12:30:04,296 DEBUG HttpConnection - enter HttpConnection.print(String) [mnc]2004-05-27 12:30:04,296 DEBUG HttpConnection - enter HttpConnection.write(byte[]) [mnc]2004-05-27 12:30:04,296 DEBUG HttpConnection - enter HttpConnection.write(byte[], int, int) [mnc]2004-05-27 12:30:04,296 DEBUG wire - >> "Content-type: text/xml; charset=UTF-8[\r][\n]" [mnc]2004-05-27 12:30:04,297 DEBUG HttpConnection - enter HttpConnection.print(String) [mnc]2004-05-27 12:30:04,297 DEBUG HttpConnection - enter HttpConnection.write(byte[]) [mnc]2004-05-27 12:30:04,297 DEBUG HttpConnection - enter HttpConnection.write(byte[], int, int) [mnc]2004-05-27 12:30:04,297 DEBUG wire - >> "User-Agent: Jakarta Commons-HttpClient/2.0final[\r][\n]" [mnc]2004-05-27 12:30:04,297 DEBUG HttpConnection - enter HttpConnection.print(String) [mnc]2004-05-27 12:30:04,297 DEBUG HttpConnection - enter HttpConnection.write(byte[]) [mnc]2004-05-27 12:30:04,297 DEBUG HttpConnection - enter HttpConnection.write(byte[], int, int) [mnc]2004-05-27 12:30:04,297 DEBUG wire - >> "Host: 192.168.0.47:8047[\r][\n]" [mnc]2004-05-27 12:30:04,297 DEBUG HttpConnection - enter HttpConnection.print(String) [mnc]2004-05-27 12:30:04,298 DEBUG HttpConnection - enter HttpConnection.write(byte[]) [mnc]2004-05-27 12:30:04,298 DEBUG HttpConnection - enter HttpConnection.write(byte[], int, int) [mnc]2004-05-27 12:30:04,298 DEBUG wire - >> "Content-Length: 423[\r][\n]" [mnc]2004-05-27 12:30:04,298 DEBUG HttpConnection - enter HttpConnection.print(String) [mnc]2004-05-27 12:30:04,298 DEBUG HttpConnection - enter HttpConnection.write(byte[]) [mnc]2004-05-27 12:30:04,298 DEBUG HttpConnection - enter HttpConnection.write(byte[], int, int) [mnc]2004-05-27 12:30:04,298 DEBUG HttpConnection - enter HttpConnection.writeLine() [mnc]2004-05-27 12:30:04,298 DEBUG HttpConnection - enter HttpConnection.write(byte[]) [mnc]2004-05-27 12:30:04,298 DEBUG HttpConnection - enter HttpConnection.write(byte[], int, int) [mnc]2004-05-27 12:30:04,298 DEBUG HttpConnection - enter HttpConnection.flushRequestOutputStream() [mnc]2004-05-27 12:30:04,299 DEBUG wire - >> "[\r][\n]" [mnc]2004-05-27 12:30:04,299 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.writeRequestBody(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,299 DEBUG PostMethod - enter PostMethod.hasRequestContent() [mnc]2004-05-27 12:30:04,299 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.hasRequestContent() [mnc]2004-05-27 12:30:04,299 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.getRequestContentLength() [mnc]2004-05-27 12:30:04,299 DEBUG PostMethod - enter PostMethod.hasRequestContent() [mnc]2004-05-27 12:30:04,299 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.hasRequestContent() [mnc]2004-05-27 12:30:04,299 DEBUG EntityEnclosingMethod - Using buffered request body [mnc]2004-05-27 12:30:04,299 DEBUG HttpConnection - enter HttpConnection.getRequestOutputStream() [mnc]2004-05-27 12:30:04,299 DEBUG wire - >> [mnc]2004-05-27 12:30:04,299 DEBUG wire - >> [mnc]2004-05-27 12:30:04,300 DEBUG wire - >> [mnc]2004-05-27 12:30:04,301 DEBUG wire - >> [mnc]2004-05-27 12:30:04,301 DEBUG wire - >> [mnc]2004-05-27 12:30:04,301 DEBUG wire - >> [mnc]2004-05-27 12:30:04,301 DEBUG wire - >> [mnc]2004-05-27 12:30:04,302 DEBUG wire - >> [mnc]2004-05-27 12:30:04,302 DEBUG wire - >> [mnc]2004-05-27 12:30:04,302 DEBUG wire - >> [mnc]2004-05-27 12:30:04,302 DEBUG EntityEnclosingMethod - Request body sent [mnc]2004-05-27 12:30:04,302 DEBUG HttpConnection - enter HttpConnection.flushRequestOutputStream() [mnc]2004-05-27 12:30:04,302 DEBUG HttpMethodBase - enter HttpMethodBase.readResponse(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,303 DEBUG HttpMethodBase - enter HttpMethodBase.readStatusLine(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,303 DEBUG HttpConnection - enter HttpConnection.readLine() [mnc]2004-05-27 12:30:04,303 DEBUG HttpParser - enter HttpParser.readLine() [mnc]2004-05-27 12:30:04,303 DEBUG HttpParser - enter HttpParser.readRawLine() [mnc]2004-05-27 12:30:04,344 DEBUG wire - << "HTTP/1.1 200 OK[\r][\n]" [mnc]2004-05-27 12:30:04,344 DEBUG HttpMethodBase - enter HttpMethodBase.readResponseHeaders(HttpState,HttpConnection) [mnc]2004-05-27 12:30:04,344 DEBUG HttpConnection - enter HttpConnection.getResponseInputStream() [mnc]2004-05-27 12:30:04,344 DEBUG HttpParser - enter HeaderParser.parseHeaders(HttpConnection, HeaderGroup) [mnc]2004-05-27 12:30:04,344 DEBUG HttpParser - enter HttpParser.readLine() [mnc]2004-05-27 12:30:04,344 DEBUG HttpParser - enter HttpParser.readRawLine() [mnc]2004-05-27 12:30:04,345 DEBUG HttpParser - enter HttpParser.readLine() [mnc]2004-05-27 12:30:04,345 DEBUG HttpParser - enter HttpParser.readRawLine() [mnc]2004-05-27 12:30:04,346 DEBUG HttpParser - enter HttpParser.readLine() [mnc]2004-05-27 12:30:04,346 DEBUG HttpParser - enter HttpParser.readRawLine() [mnc]2004-05-27 12:30:04,347 DEBUG HttpParser - enter HttpParser.readLine() [mnc]2004-05-27 12:30:04,347 DEBUG HttpParser - enter HttpParser.readRawLine() [mnc]2004-05-27 12:30:04,347 DEBUG HttpParser - enter HttpParser.readLine() [mnc]2004-05-27 12:30:04,347 DEBUG HttpParser - enter HttpParser.readRawLine() [mnc]2004-05-27 12:30:04,348 DEBUG wire - << "Content-Type: text/xml;charset=UTF-8[\r][\n]" [mnc]2004-05-27 12:30:04,348 DEBUG wire - << "Date: Thu, 27 May 2004 10:30:02 GMT[\r][\n]" [mnc]2004-05-27 12:30:04,348 DEBUG wire - << "Server: Apache-Coyote/1.1[\r][\n]" [mnc]2004-05-27 12:30:04,348 DEBUG wire - << "Connection: close[\r][\n]" [mnc]2004-05-27 12:30:04,348 DEBUG HttpMethodBase - enter HttpMethodBase.processResponseHeaders(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,348 DEBUG GetMethod - enter GetMethod.readResponseBody(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,348 DEBUG HttpMethodBase - enter HttpMethodBase.readResponseBody(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,348 DEBUG HttpMethodBase - enter HttpMethodBase.readResponseBody(HttpState, HttpConnection) [mnc]2004-05-27 12:30:04,348 DEBUG HttpConnection - enter HttpConnection.getResponseInputStream() [mnc]2004-05-27 12:30:04,348 DEBUG HttpMethodBase - enter HttpMethodBase.canResponseHaveBody(int) [mnc]2004-05-27 12:30:04,349 DEBUG wire - << [mnc]2004-05-27 12:30:04,349 DEBUG wire - << [mnc]2004-05-27 12:30:04,349 DEBUG wire - << [mnc]2004-05-27 12:30:04,349 DEBUG wire - << [mnc]2004-05-27 12:30:04,349 DEBUG wire - << [mnc]2004-05-27 12:30:04,349 DEBUG wire - << [mnc]2004-05-27 12:30:04,350 DEBUG wire - << [mnc]2004-05-27 12:30:04,350 DEBUG wire - << [mnc]2004-05-27 12:30:04,350 DEBUG GenericSAXParser - startDocument: Starting document parsing... [mnc]2004-05-27 12:30:23,900 DEBUG HttpMethodBase - Should close connection in response to Connection: close [mnc]2004-05-27 12:30:23,900 DEBUG HttpConnection - enter HttpConnection.close() [mnc]2004-05-27 12:30:23,900 DEBUG HttpConnection - enter HttpConnection.closeSockedAndStreams() [mnc]2004-05-27 12:30:23,900 DEBUG HttpConnection - enter HttpConnection.releaseConnection() [mnc]2004-05-27 12:30:23,900 DEBUG MultiThreadedHttpConnectionManager - enter HttpConnectionManager.releaseConnection(HttpConnection) [mnc]2004-05-27 12:30:23,900 DEBUG MultiThreadedHttpConnectionManager - Freeing connection, hostConfig=HostConfiguration[host=192.168.0.47, protocol=http:80, port=8047] [mnc]2004-05-27 12:30:23,900 DEBUG MultiThreadedHttpConnectionManager - enter HttpConnectionManager.ConnectionPool.getHostPool(HostConfiguration) [mnc]2004-05-27 12:30:23,900 DEBUG MultiThreadedHttpConnectionManager - Notifying no-one, there are no waiting threads [mnc]2004-05-27 12:30:23,900 DEBUG GenericSAXParser - endDocument: Document parsing completed. [mnc]2004-05-27 12:30:23,906 DEBUG GetMethod - enter GetMethod(String) [mnc]2004-05-27 12:30:23,906 DEBUG HttpMethodBase - HttpMethodBase.addRequestHeader(Header) [mnc]2004-05-27 12:30:23,908 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.setRequestBody(String) [mnc]2004-05-27 12:30:23,908 DEBUG PostMethod - enter PostMethod.clearRequestBody() [mnc]2004-05-27 12:30:23,908 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.clearRequestBody() [mnc]2004-05-27 12:30:23,908 DEBUG HttpClient - enter HttpClient.executeMethod(HttpMethod) [mnc]2004-05-27 12:30:23,908 DEBUG HttpClient - enter HttpClient.executeMethod(HostConfiguration,HttpMethod,HttpState) [mnc]2004-05-27 12:30:23,908 DEBUG MultiThreadedHttpConnectionManager - enter HttpConnectionManager.getConnection(HostConfiguration, long) [mnc]2004-05-27 12:30:23,908 DEBUG MultiThreadedHttpConnectionManager - HttpConnectionManager.getConnection: config = HostConfiguration[host=192.168.0.47, protocol=http:80, port=8047], timeout = 0 [mnc]2004-05-27 12:30:23,908 DEBUG MultiThreadedHttpConnectionManager - enter HttpConnectionManager.ConnectionPool.getHostPool(HostConfiguration) [mnc]2004-05-27 12:30:23,908 DEBUG MultiThreadedHttpConnectionManager - enter HttpConnectionManager.ConnectionPool.getHostPool(HostConfiguration) [mnc]2004-05-27 12:30:23,908 DEBUG MultiThreadedHttpConnectionManager - Getting free connection, hostConfig=HostConfiguration[host=192.168.0.47, protocol=http:80, port=8047] [mnc]2004-05-27 12:30:23,908 DEBUG HttpConnection - Connection is stale, closing... [mnc]2004-05-27 12:30:23,909 DEBUG HttpConnection - enter HttpConnection.close() [mnc]2004-05-27 12:30:23,911 DEBUG HttpConnection - enter HttpConnection.closeSockedAndStreams() [mnc]2004-05-27 12:30:23,911 DEBUG HttpConnection - enter HttpConnection.open() [mnc]2004-05-27 12:30:23,913 WARN HttpConnection - The host 192.168.0.47:8047 (or proxy null:-1) did not accept the connection within timeout of 5000 milliseconds [mnc]2004-05-27 12:30:23,913 DEBUG HttpConnection - enter HttpConnection.releaseConnection() [mnc]2004-05-27 12:30:23,913 DEBUG MultiThreadedHttpConnectionManager - enter HttpConnectionManager.releaseConnection(HttpConnection) [mnc]2004-05-27 12:30:23,914 DEBUG MultiThreadedHttpConnectionManager - Freeing connection, hostConfig=HostConfiguration[host=192.168.0.47, protocol=http:80, port=8047] [mnc]2004-05-27 12:30:23,914 DEBUG MultiThreadedHttpConnectionManager - enter HttpConnectionManager.ConnectionPool.getHostPool(HostConfiguration) [mnc]2004-05-27 12:30:23,914 DEBUG MultiThreadedHttpConnectionManager - Notifying no-one, there are no waiting threads [mnc]2004-05-27 12:30:23,914 INFO XMLService - connecterror1: null [mnc]2004-05-27 12:30:23,914 INFO XMLService - connecterror2: org.apache.commons.httpclient.HttpConnection$ConnectionTimeoutException [mnc]2004-05-27 12:30:23,914 INFO XMLService - connecterror3: org.apache.commons.httpclient.HttpConnection$ConnectionTimeoutException [mnc]2004-05-27 12:30:23,915 INFO XMLService - URI was: http://192.168.0.47:8047/Pro/sms/xml [mnc]2004-05-27 12:30:23,920 DEBUG GetMethod - enter GetMethod(String) [mnc]2004-05-27 12:30:23,920 DEBUG HttpMethodBase - HttpMethodBase.addRequestHeader(Header) [mnc]2004-05-27 12:30:23,920 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.setRequestBody(String) [mnc]2004-05-27 12:30:23,920 DEBUG PostMethod - enter PostMethod.clearRequestBody() [mnc]2004-05-27 12:30:23,920 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.clearRequestBody() [mnc]2004-05-27 12:30:23,920 DEBUG HttpClient - enter HttpClient.executeMethod(HttpMethod) [mnc]2004-05-27 12:30:23,920 DEBUG HttpClient - enter HttpClient.executeMethod(HostConfiguration,HttpMethod,HttpState) [mnc]2004-05-27 12:30:23,920 DEBUG MultiThreadedHttpConnectionManager - enter HttpConnectionManager.getConnection(HostConfiguration, long) [mnc]2004-05-27 12:30:23,920 DEBUG MultiThreadedHttpConnectionManager - HttpConnectionManager.getConnection: config = HostConfiguration[host=192.168.0.47, protocol=http:80, port=8047], timeout = 0 [mnc]2004-05-27 12:30:23,920 DEBUG MultiThreadedHttpConnectionManager - enter HttpConnectionManager.ConnectionPool.getHostPool(HostConfiguration) [mnc]2004-05-27 12:30:23,920 DEBUG MultiThreadedHttpConnectionManager - enter HttpConnectionManager.ConnectionPool.getHostPool(HostConfiguration) [mnc]2004-05-27 12:30:23,921 DEBUG MultiThreadedHttpConnectionManager - Getting free connection, hostConfig=HostConfiguration[host=192.168.0.47, protocol=http:80, port=8047] [mnc]2004-05-27 12:30:23,921 DEBUG HttpConnection - Connection is stale, closing... [mnc]2004-05-27 12:30:23,921 DEBUG HttpConnection - enter HttpConnection.close() [mnc]2004-05-27 12:30:23,921 DEBUG HttpConnection - enter HttpConnection.closeSockedAndStreams() [mnc]2004-05-27 12:30:23,921 DEBUG HttpConnection - enter HttpConnection.open() [mnc]2004-05-27 12:30:23,922 DEBUG HttpConnection - HttpConnection.setSoTimeout(25000) [mnc]2004-05-27 12:30:23,923 DEBUG HttpMethodBase - enter HttpMethodBase.execute(HttpState, HttpConnection) [mnc]2004-05-27 12:30:23,923 DEBUG HttpMethodBase - Execute loop try 1 [mnc]2004-05-27 12:30:23,923 DEBUG HttpMethodBase - enter HttpMethodBase.processRequest(HttpState, HttpConnection) [mnc]2004-05-27 12:30:23,923 DEBUG HttpMethodBase - Attempt number 1 to process request [mnc]2004-05-27 12:30:23,923 DEBUG HttpMethodBase - enter HttpMethodBase.writeRequest(HttpState, HttpConnection) [mnc]2004-05-27 12:30:23,923 DEBUG HttpMethodBase - enter HttpMethodBase.writeRequestLine(HttpState, HttpConnection) [mnc]2004-05-27 12:30:23,923 DEBUG HttpMethodBase - enter HttpMethodBase.generateRequestLine(HttpConnection, String, String, String, String) [mnc]2004-05-27 12:30:23,923 DEBUG wire - >> "POST /Pro/sms/xml HTTP/1.1[\r][\n]" [mnc]2004-05-27 12:30:23,923 DEBUG HttpConnection - enter HttpConnection.print(String) [mnc]2004-05-27 12:30:23,923 DEBUG HttpConnection - enter HttpConnection.write(byte[]) [mnc]2004-05-27 12:30:23,923 DEBUG HttpConnection - enter HttpConnection.write(byte[], int, int) [mnc]2004-05-27 12:30:23,924 DEBUG HttpMethodBase - enter HttpMethodBase.writeRequestHeaders(HttpState,HttpConnection) [mnc]2004-05-27 12:30:23,926 DEBUG ExpectContinueMethod - enter ExpectContinueMethod.addRequestHeaders(HttpState, HttpConnection) [mnc]2004-05-27 12:30:23,926 DEBUG HttpMethodBase - enter HttpMethodBase.addRequestHeaders(HttpState, HttpConnection) [mnc]2004-05-27 12:30:23,926 DEBUG HttpMethodBase - enter HttpMethodBase.addUserAgentRequestHeaders(HttpState, HttpConnection) [mnc]2004-05-27 12:30:23,926 DEBUG HttpMethodBase - enter HttpMethodBase.addHostRequestHeader(HttpState, HttpConnection) [mnc]2004-05-27 12:30:23,926 DEBUG HttpMethodBase - Adding Host request header [mnc]2004-05-27 12:30:23,926 DEBUG HttpMethodBase - enter HttpMethodBase.addCookieRequestHeader(HttpState, HttpConnection) [mnc]2004-05-27 12:30:23,926 DEBUG HttpState - enter HttpState.getCookies() [mnc]2004-05-27 12:30:23,926 DEBUG CookieSpec - enter CookieSpecBase.match(String, int, String, boolean, Cookie[]) [mnc]2004-05-27 12:30:23,926 DEBUG HttpMethodBase - enter HttpMethodBase.addAuthorizationRequestHeader(HttpState, HttpConnection) [mnc]2004-05-27 12:30:23,926 DEBUG HttpMethodBase - enter HttpMethodBase.addProxyAuthorizationRequestHeader(HttpState, HttpConnection) [mnc]2004-05-27 12:30:23,926 DEBUG HttpMethodBase - enter HttpMethodBase.addProxyConnectionHeader(HttpState, HttpConnection) [mnc]2004-05-27 12:30:23,927 DEBUG EntityEnclosingMethod - enter HttpMethodBase.addContentLengthRequestHeader(HttpState, HttpConnection) [mnc]2004-05-27 12:30:23,927 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.getRequestContentLength() [mnc]2004-05-27 12:30:23,927 DEBUG PostMethod - enter PostMethod.hasRequestContent() [mnc]2004-05-27 12:30:23,927 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.hasRequestContent() [mnc]2004-05-27 12:30:23,927 DEBUG PostMethod - enter PostMethod.renerateRequestBody() [mnc]2004-05-27 12:30:23,927 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.renerateRequestBody() [mnc]2004-05-27 12:30:23,927 DEBUG HttpMethodBase - enter getContentCharSet( Header contentheader ) [mnc]2004-05-27 12:30:23,927 DEBUG HeaderElement - enter HeaderElement.parse(String) [mnc]2004-05-27 12:30:23,927 DEBUG HeaderElement - enter HeaderElement.parsePair(char[], int, int) [mnc]2004-05-27 12:30:23,927 DEBUG HeaderElement - enter HeaderElement.parsePair(char[], int, int) [mnc]2004-05-27 12:30:23,927 DEBUG HttpMethodBase - HttpMethodBase.addRequestHeader(Header) [mnc]2004-05-27 12:30:23,928 DEBUG wire - >> "Connection: close[\r][\n]" [mnc]2004-05-27 12:30:23,928 DEBUG HttpConnection - enter HttpConnection.print(String) [mnc]2004-05-27 12:30:23,928 DEBUG HttpConnection - enter HttpConnection.write(byte[]) [mnc]2004-05-27 12:30:23,928 DEBUG HttpConnection - enter HttpConnection.write(byte[], int, int) [mnc]2004-05-27 12:30:23,928 DEBUG wire - >> "Content-type: text/xml; charset=UTF-8[\r][\n]" [mnc]2004-05-27 12:30:23,928 DEBUG HttpConnection - enter HttpConnection.print(String) [mnc]2004-05-27 12:30:23,928 DEBUG HttpConnection - enter HttpConnection.write(byte[]) [mnc]2004-05-27 12:30:23,928 DEBUG HttpConnection - enter HttpConnection.write(byte[], int, int) [mnc]2004-05-27 12:30:23,928 DEBUG wire - >> "User-Agent: Jakarta Commons-HttpClient/2.0final[\r][\n]" [mnc]2004-05-27 12:30:23,928 DEBUG HttpConnection - enter HttpConnection.print(String) [mnc]2004-05-27 12:30:23,929 DEBUG HttpConnection - enter HttpConnection.write(byte[]) [mnc]2004-05-27 12:30:23,929 DEBUG HttpConnection - enter HttpConnection.write(byte[], int, int) [mnc]2004-05-27 12:30:23,929 DEBUG wire - >> "Host: 192.168.0.47:8047[\r][\n]" [mnc]2004-05-27 12:30:23,929 DEBUG HttpConnection - enter HttpConnection.print(String) [mnc]2004-05-27 12:30:23,929 DEBUG HttpConnection - enter HttpConnection.write(byte[]) [mnc]2004-05-27 12:30:23,929 DEBUG HttpConnection - enter HttpConnection.write(byte[], int, int) [mnc]2004-05-27 12:30:23,929 DEBUG wire - >> "Content-Length: 422[\r][\n]" [mnc]2004-05-27 12:30:23,929 DEBUG HttpConnection - enter HttpConnection.print(String) [mnc]2004-05-27 12:30:23,929 DEBUG HttpConnection - enter HttpConnection.write(byte[]) [mnc]2004-05-27 12:30:23,929 DEBUG HttpConnection - enter HttpConnection.write(byte[], int, int) [mnc]2004-05-27 12:30:23,929 DEBUG HttpConnection - enter HttpConnection.writeLine() [mnc]2004-05-27 12:30:23,929 DEBUG HttpConnection - enter HttpConnection.write(byte[]) [mnc]2004-05-27 12:30:23,929 DEBUG HttpConnection - enter HttpConnection.write(byte[], int, int) [mnc]2004-05-27 12:30:23,930 DEBUG HttpConnection - enter HttpConnection.flushRequestOutputStream() [mnc]2004-05-27 12:30:23,930 DEBUG wire - >> "[\r][\n]" [mnc]2004-05-27 12:30:23,930 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.writeRequestBody(HttpState, HttpConnection) [mnc]2004-05-27 12:30:23,930 DEBUG PostMethod - enter PostMethod.hasRequestContent() [mnc]2004-05-27 12:30:23,930 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.hasRequestContent() [mnc]2004-05-27 12:30:23,930 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.getRequestContentLength() [mnc]2004-05-27 12:30:23,930 DEBUG PostMethod - enter PostMethod.hasRequestContent() [mnc]2004-05-27 12:30:23,930 DEBUG EntityEnclosingMethod - enter EntityEnclosingMethod.hasRequestContent() [mnc]2004-05-27 12:30:23,930 DEBUG EntityEnclosingMethod - Using buffered request body [mnc]2004-05-27 12:30:23,930 DEBUG HttpConnection - enter HttpConnection.getRequestOutputStream() [mnc]2004-05-27 12:30:23,930 DEBUG wire - >> [mnc]2004-05-27 12:30:23,931 DEBUG wire - >> [mnc]2004-05-27 12:30:23,931 DEBUG wire - >> [mnc]2004-05-27 12:30:23,931 DEBUG wire - >> [mnc]2004-05-27 12:30:23,931 DEBUG wire - >> [mnc]2004-05-27 12:30:23,931 DEBUG wire - >> [mnc]2004-05-27 12:30:23,931 DEBUG wire - >> [mnc]2004-05-27 12:30:23,931 DEBUG wire - >> [mnc]2004-05-27 12:30:23,931 DEBUG wire - >> [mnc]2004-05-27 12:30:23,931 DEBUG wire - >> [mnc]2004-05-27 12:30:23,931 DEBUG EntityEnclosingMethod - Request body sent [mnc]2004-05-27 12:30:23,931 DEBUG HttpConnection - enter HttpConnection.flushRequestOutputStream() [mnc]2004-05-27 12:30:23,932 DEBUG HttpMethodBase - enter HttpMethodBase.readResponse(HttpState, HttpConnection) [mnc]2004-05-27 12:30:23,932 DEBUG HttpMethodBase - enter HttpMethodBase.readStatusLine(HttpState, HttpConnection) [mnc]2004-05-27 12:30:23,932 DEBUG HttpConnection - enter HttpConnection.readLine() [mnc]2004-05-27 12:30:23,932 DEBUG HttpParser - enter HttpParser.readLine() [mnc]2004-05-27 12:30:23,932 DEBUG HttpParser - enter HttpParser.readRawLine() [mnc]2004-05-27 12:30:23,966 DEBUG wire - << "HTTP/1.1 200 OK[\r][\n]" [mnc]2004-05-27 12:30:23,966 DEBUG HttpMethodBase - enter HttpMethodBase.readResponseHeaders(HttpState,HttpConnection) [mnc]2004-05-27 12:30:23,966 DEBUG HttpConnection - enter HttpConnection.getResponseInputStream() [mnc]2004-05-27 12:30:23,966 DEBUG HttpParser - enter HeaderParser.parseHeaders(HttpConnection, HeaderGroup) [mnc]2004-05-27 12:30:23,966 DEBUG HttpParser - enter HttpParser.readLine() [mnc]2004-05-27 12:30:23,966 DEBUG HttpParser - enter HttpParser.readRawLine() [mnc]2004-05-27 12:30:23,967 DEBUG HttpParser - enter HttpParser.readLine() [mnc]2004-05-27 12:30:23,967 DEBUG HttpParser - enter HttpParser.readRawLine() [mnc]2004-05-27 12:30:23,968 DEBUG HttpParser - enter HttpParser.readLine() [mnc]2004-05-27 12:30:23,968 DEBUG HttpParser - enter HttpParser.readRawLine() [mnc]2004-05-27 12:30:23,969 DEBUG HttpParser - enter HttpParser.readLine() [mnc]2004-05-27 12:30:23,969 DEBUG HttpParser - enter HttpParser.readRawLine() [mnc]2004-05-27 12:30:23,969 DEBUG HttpParser - enter HttpParser.readLine() [mnc]2004-05-27 12:30:23,969 DEBUG HttpParser - enter HttpParser.readRawLine() [mnc]2004-05-27 12:30:23,969 DEBUG wire - << "Content-Type: text/xml;charset=UTF-8[\r][\n]" [mnc]2004-05-27 12:30:23,970 DEBUG wire - << "Date: Thu, 27 May 2004 10:30:22 GMT[\r][\n]" [mnc]2004-05-27 12:30:23,970 DEBUG wire - << "Server: Apache-Coyote/1.1[\r][\n]" [mnc]2004-05-27 12:30:23,970 DEBUG wire - << "Connection: close[\r][\n]" [mnc]2004-05-27 12:30:23,970 DEBUG HttpMethodBase - enter HttpMethodBase.processResponseHeaders(HttpState, HttpConnection) [mnc]2004-05-27 12:30:23,970 DEBUG GetMethod - enter GetMethod.readResponseBody(HttpState, HttpConnection) [mnc]2004-05-27 12:30:23,970 DEBUG HttpMethodBase - enter HttpMethodBase.readResponseBody(HttpState, HttpConnection) [mnc]2004-05-27 12:30:23,970 DEBUG HttpMethodBase - enter HttpMethodBase.readResponseBody(HttpState, HttpConnection) [mnc]2004-05-27 12:30:23,970 DEBUG HttpConnection - enter HttpConnection.getResponseInputStream() [mnc]2004-05-27 12:30:23,970 DEBUG HttpMethodBase - enter HttpMethodBase.canResponseHaveBody(int) [mnc]2004-05-27 12:30:23,971 DEBUG wire - << [mnc]2004-05-27 12:30:23,971 DEBUG wire - << [mnc]2004-05-27 12:30:23,971 DEBUG wire - << [mnc]2004-05-27 12:30:23,971 DEBUG wire - << [mnc]2004-05-27 12:30:23,971 DEBUG wire - << [mnc]2004-05-27 12:30:23,971 DEBUG wire - << [mnc]2004-05-27 12:30:23,971 DEBUG wire - << [mnc]2004-05-27 12:30:23,971 DEBUG wire - << [mnc]2004-05-27 12:30:23,972 DEBUG GenericSAXParser - startDocument: Starting document parsing... [mnc]2004-05-27 12:30:32,860 DEBUG HttpMethodBase - Should close connection in response to Connection: close [mnc]2004-05-27 12:30:32,860 DEBUG HttpConnection - enter HttpConnection.close() [mnc]2004-05-27 12:30:32,860 DEBUG HttpConnection - enter HttpConnection.closeSockedAndStreams() [mnc]2004-05-27 12:30:32,860 DEBUG HttpConnection - enter HttpConnection.releaseConnection() [mnc]2004-05-27 12:30:32,860 DEBUG MultiThreadedHttpConnectionManager - enter HttpConnectionManager.releaseConnection(HttpConnection) [mnc]2004-05-27 12:30:32,861 DEBUG MultiThreadedHttpConnectionManager - Freeing connection, hostConfig=HostConfiguration[host=192.168.0.47, protocol=http:80, port=8047] [mnc]2004-05-27 12:30:32,861 DEBUG MultiThreadedHttpConnectionManager - enter HttpConnectionManager.ConnectionPool.getHostPool(HostConfiguration) [mnc]2004-05-27 12:30:32,861 DEBUG MultiThreadedHttpConnectionManager - Notifying no-one, there are no waiting threads [mnc]2004-05-27 12:30:32,861 DEBUG GenericSAXParser - endDocument: Document parsing completed. [mnc]2004-05-27 12:30:32,861 DEBUG SpoolWatcher - Transmission result: ok [mnc]2004-05-27 12:30:32,863 DEBUG ApiLogger - inserted translog_uid: 49 [mnc]2004-05-27 12:30:32,874 DEBUG SpoolManager - removed spool_uid: 13
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]