POST http://xxx/test HTTP/1.1
Accept-Encoding: gzip,deflate
Content-Type: text/xml;charset=UTF-8
SOAPAction: ""
User-Agent: Jakarta Commons-HttpClient/3.1
Host: xxx:1041
Content-Length: 1911
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:prop="http://...">
<soapenv:Header>
.....
</soapenv:Header>
<soapenv:Body>
.....
</soapenv:Body>
</soapenv:Envelope>
私はSOAP UIで見ると、Accept-Encodingはgzip、deflateです。 これは、httpでSOAPペイロードが圧縮されてから送信されることを意味しますか?サーバー側でHTTPプロトコルの一部として解凍されていますか?HTTP SOAPペイロードエンコーディング
おかげ