Oracle Service Bus - 不支持从 MIME Con​​tent-Transfer-Encoding='7bit' 解码 MIME 附件

Oracle Service Bus - Decoding of MIME attachments from MIME Content-Transfer-Encoding='7bit' not supported

我在启用了 MTOM 的 OSB 12c 中开发了代理服务

我可以成功发送 pdf、doc、ppt 或 xls 格式的二进制文件,但是一旦我发送文本文件,就会出现以下错误:

请求:

<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:upl="http://UploadFileService.acme/">
   <soap:Header/>
   <soap:Body>
      <upl:scanDocRequest>
         <requestMsg>
            <doc>cid:719461305114</doc>
         </requestMsg>
      </upl:scanDocRequest>
   </soap:Body>
</soap:Envelope>

响应:

<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
   <soap:Body>
      <con:fault xmlns:con="http://www.bea.com/wli/sb/context">
         <con:errorCode>OSB-382118</con:errorCode>
         <con:reason>Decoding of MIME attachments from MIME Content-Transfer-Encoding='7bit' not supported</con:reason>
         <con:location>
            <con:node>AntivirusPipelinePairNode</con:node>
            <con:pipeline>request-a00020f.N696e5fe3.0.15143454755.N8000</con:pipeline>
            <con:stage>ReportingIn</con:stage>
            <con:path>request-pipeline</con:path>
         </con:location>
      </con:fault>
   </soap:Body>
</soap:Envelope>

响应失败

Decoding of MIME attachments from MIME Content-Transfer-Encoding='7bit' not supported

Content-type = application/octet-stream 而不是 plain/text 解决了我的问题