【发布时间】:2012-03-16 15:14:22
【问题描述】:
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。 这意味着 SOAP 有效负载在通过 http 发送之前被压缩?并在服务器端解压缩为 HTTP 协议的一部分?
谢谢
【问题讨论】: