I am getting the following exception for redirect responses from HttpClient. Attached is the log from HttpClient. I know that HttpClient does not support redirect directly, hence we have written some code to handle that. The problem seems to be that, occasionally HttpClient does not send the request body though it writes out the Content-Length header. If you send the same request one after another by starting a new JVM for each request, such as running a client from commandline, you will see that, it sends the request body for a few times and then it does not send it once and then it starts to send it again. This behavior keeps repeating. Below is the request sent out by HttpClient and response received by it, captured through a tunnel. I will appreciate if someone can explain the behavior.
Exception in thread "main" java.rmi.RemoteException: java.net.SocketException: S oftware caused connection abort: recv failed; nested exception is: org.apache.commons.httpclient.HttpRecoverableException: java.net.SocketE xception: Software caused connection abort: recv failed at com.sssw.jbroker.web.ServiceException.mapToRemote(ServiceException.ja va:92) at hello.HelloBinding_Stub.sayHello(HelloBinding_Stub.java:85) at hello.Client.main(Client.java:25) Caused by: org.apache.commons.httpclient.HttpRecoverableException: java.net.Sock etException: Software caused connection abort: recv failed at org.apache.commons.httpclient.HttpMethodBase.readResponse(HttpMethodB ase.java:1965) at org.apache.commons.httpclient.HttpMethodBase.processRequest(HttpMetho dBase.java:2659) at org.apache.commons.httpclient.HttpMethodBase.execute(HttpMethodBase.j ava:1093) at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.jav a:675) at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.jav a:558) Request going out from HttpClient: POST /services/hello HTTP/1.1 SOAPAction: "http://www.hello/sayHello" Content-Type: text/xml; charset=utf-8 Connection: keep-alive User-Agent: Jakarta Commons-HttpClient/2.0final Host: 840serv7:54892 Content-Length: 421 Response received by HttpClient: HTTP/1.1 307 redirected Set-Cookie: dispatch-http-rt=840serv7:80; path=/; Content-Length: 0 Location: http://840serv7:80/services/hello Thanks, Zulfi
[DEBUG] HttpConnection - -HttpConnection.setSoTimeout(0) [DEBUG] wire - ->> "POST /services/hello HTTP/1.1[\r][\n]" [DEBUG] wire - ->> "SOAPAction: "http://www.hello/sayHello"[\r][\n]" [DEBUG] wire - ->> "Content-Type: text/xml; charset=utf-8[\r][\n]" [DEBUG] wire - ->> "Connection: keep-alive[\r][\n]" [DEBUG] wire - ->> "User-Agent: Jakarta Commons-HttpClient/2.0final[\r][\n]" [DEBUG] wire - ->> "Host: localhost:9999[\r][\n]" [DEBUG] wire - ->> "Content-Length: 421[\r][\n]" [DEBUG] wire - ->> "[\r][\n]" [DEBUG] wire - ->> "<SOAP-ENV:Envelope xmlns:SOAP-ENV='http://schemas.xmlsoap.or g/soap/envelope/' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http:/ /www.w3.org/2001/XMLSchema-instance' xmlns:SOAP-ENC='http://schemas.xmlsoap.org/ soap/encoding/'><SOAP-ENV:Body><ns1:sayHello SOAP-ENV:encodingStyle='http://sche mas.xmlsoap.org/soap/encoding/' xmlns='' xmlns:ns1='http://www.hello'></ns1:sayH ello></SOAP-ENV:Body></SOAP-ENV:Envelope>"
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]