I have a servlet that returns a SOAP document in its output stream.

I have a Java client that posts a request using sockets and expects to read
the response (SOAP document) from the socket's input stream.

Everything works fine if I'm posting directly to Tomcat.  I get the
following data from the input stream:

        HTTP/1.1 200 OK
        Content-Type:text/xml
        Date:Mon, 21 Jan 2002 15:19:54 GMT
        Transfer-Encoding:chunked
        Server:Apache Tomcat/4.0.1 (HTTP/1.1 Connector)
        
        44                      // chunk size
        <SOAP data chunk>
        23                      // chunk size.
        <SOAP data chunk>
        0

But when I post to IIS running with isapi_redirect,  the input stream
contains the following:

        HTTP/1.1 200 OK
        Server:Microsoft-IIS/5.0
        Date:Mon, 21 Jan 2002 15:25:54 GMT
        Connection:Close
        Content-Type:text/xml
        
        <SOAP data>

Is chunked data supposed to get handled this way?





--
To unsubscribe:   <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>

Reply via email to