Please Help!
   
    I am using Apache Axis to send a SOAP reqeust to a remote server, but I am never getting a response back.  My application just "hangs" for a loooong time.  Hours.  If I leave it overnight, I come back the next day to an IO exception stating that the connection timed-out.  I have confirmed that the remote server is receiving my request, that it is properly formatted, AND that the response is being sent to me.  My feeling is that the remote server is setting the content-length of the message incorrectly (too large for content of the response), and my code just ends up waiting for "the rest of the message" that doesn't exist
    My problem is that I do not understand the content-lenght field, or rather, what all it includes.  The response that I am getting from the remote server is below.  Can anyone tell from the message itself if the content-lenght is set correctly?   The server admin says that he includes all leading spaces (to accomplish the indenting/formatting) in the count for the content length, as well as the cr/lf at the end of each line.  I would have assumed that this should not be included.
 
Thanks in advance for your response to this question!
 
Reid 
 
-----------------------------------------------

HTTP/1.1 200 OK
 
Date: Fri, 28 Mar 2003 21:43:35 GMT
 
Content-Type: text/xml
 
Content-Length: 652
 
 
<?xml version="1.0" encoding="UTF-8"?>
   <soap:Body>
  <GetCustomerResult>
    <ResultStatus>
      <Code>CstmNF</Code>
      <Level>Error</Level>
      <Message>Le client 55000 n'existe pas.</Message>
    </ResultStatus>
  </GetCustomerResult>
</GetCustomerResponse>
   </soap:Body>
</soap:Envelope>

Reply via email to