我试图保存一个wireshark捕获以供以后的分析和回放,我注意到重组的流有一系列的ff9/n,分散在其中,这将破坏消息。是什么导致这个序列嵌入到流中?我在其他请求中没有看到这个工件,所以这仅仅反映了连线上的实际内容,还是wireshark的一个特性?
例如。
POST /gatewayvnext/xdr.svc HTTP/1.1
Content-Type: multipart/related; type="application/xop+xml"; boundary="uuid:b08aed3e-8972-4f75-a5f1-74ee6f0f9a4e"; start="<root.message@cxf.apache.org>"; start-info="application/soap+xml"; action="urn:ihe:iti:2007:ProvideAndRegisterDocumentSet-b"
Accept: */*
User-Agent: Apache CXF 2.2.9
Cache-Control: no-cache
Pragma: no-cache
Host: directuat
Connection: keep-alive
Transfer-Encoding: chunked
ff9
--uuid:b08aed3e-8972-4f75-a5f1-74ee6f0f9a4e
Content-Type: application/xop+xml; charset=UTF-8; type="application/soap+xml"; action="urn:ihe:iti:2007:ProvideAndRegisterDocumentSet-b";
Content-Transfer-Encoding: binary
Content-ID: <root.message@cxf.apache.org>发布于 2014-09-29 18:24:07
它反映了电线上的实际情况。
请注意,HTTP报头包括“传输-编码:块”。这些项目是分块传输编码的一部分。
https://stackoverflow.com/questions/26103998
复制相似问题