WCF客户端无法读取" mutlipart / reoated"

时间:2016-08-23 11:27:57

标签: c# wcf

我有一个简单的WCF客户端。

装订

var binding = new WSHttpBinding(SecurityMode.Transport);
binding.Security.Transport.ClientCredentialType = HttpClientCredentialType.Certificate;

所以现在我的问题。服务器响应这样的事情:

--MIMEBoundary_4c0931c2662c48df1de58a689b82ce1eb3373535d903393a
Content-Type: text/xml; charset=UTF-8
Content-Transfer-Encoding: binary
Content-ID: <0.5c0931c2662c48df1de58a689b82ce1eb3373535d903393a@apache.org>

<?xml version="1.0" encoding="UTF-8"?>
<--rest of the response xml-->
--MIMEBoundary_4c0931c2662c48df1de58a689b82ce1eb3373535d903393a--

看起来普通的响应只是简单地打包在MIMEBoundary中。我尝试切换到MTOM。但我得到了这个错误:

  

为MTOM消息创建阅读器时出错。

     

MTOM消息的类型为&#39; application / xop + xml&#39;

我能做什么?

0 个答案:

没有答案