我面临以下问题:发送带有 MTOM 附件的 SAAJ 请求时,原始请求正文如下所示
<soapenv:Body>
<ns1:UploadMsgRq>
<ns2:Attachment><xop:Include href="cid:testfile.xml" xmlns:xop="http://www.w3.org/2004/08/xop/include"/></ns2:Attachment>
</ns1:UploadMsgRq>
</soapenv:Body>>
附件标签值转换为
<ns2:Attachment>PHN0YXJ0Pkdhc3Nlcjwvc3RhcnQ+</ns2:Attachment>
这是我附件的 base64 值,我不希望发生这种情况,特别是附件已经添加为 MTOM 部分。同样的代码也在 JBOSS 上按需要工作。
我应该在 websphere 中进行特殊处理吗?