webservice有关application/xop+xml的异常

Posted 贫民窟里的程序高手

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webservice有关application/xop+xml的异常相关的知识,希望对你有一定的参考价值。

今天同事调用一个webservice时返回类似错误

响应消息的内容类型 multipart/related; type="application/xop+xml"; boundary="uuid:026bd32a-6fb3-45a6-8559-fe68024bfe2a"; start="<[email protected]>"; start-info="text/xml" 与绑定(text/xml; charset=utf-8)的内容类型不匹配。如果使用自定义编码器,请确保正确实现 

搜索找到这个地方

http://stackoverflow.com/questions/10496186/error-consuming-webservice-content-type-application-xopxml-does-not-match-ex

原来只需修改配置的编码方式为“Mtom”就能解决问题

<configuration>
  <system.serviceModel>
    <bindings>
      <basicHttpBinding>
        <binding messageEncoding="Mtom">          
        </binding>
      </basicHttpBinding>
    </bindings>
  </system.serviceModel>
</configuration>

以上是关于webservice有关application/xop+xml的异常的主要内容,如果未能解决你的问题,请参考以下文章

webservice有关application/xop+xml的异常

使用Postman测试WebService(SOAP协议)接口

Web Service有关术语的解释

Web Service有关术语的解释

WebService的开发手段

webservice