1

我正在使用 Web 服务来处理数据。在我看来,我正在正确发送请求。我从 wsdl 添加了 Web 引用并添加了一个安全令牌。但是当我试图得到响应时,它会抛出以下错误:

无效操作异常:“客户端发现响应内容类型为 'multipart/related”。

据我了解,我收到以下错误,因为该服务使用 MTOM 发送 pdf 文件。有没有办法修复网络参考,因为它可以正确解码 MTOM 而不会出错,或者我应该为它创建一个解码器。并在不使用网络参考的情况下发送请求。

我尝试使用行响应并将其传递给 MTOM 阅读器

 XmlDictionaryReader mtomReader = XmlDictionaryReader.CreateMtomReader(response.GetResponseStream() , Encoding.UTF8, XmlDictionaryReaderQuotas.Max);

但得到另一个错误

System.Xml.XmlException:未找到 MTOM 消息的 Content-Type 标头。

响应示例:

--MIMEBoundaryurn_uuid_F468164F66D5B7FD071377072332741
Content-Type: application/xop+xml; charset=iso-8859-1; type="text/xml"
Content-Transfer-Encoding: binary
Content-ID: <0.urn:uuid:F468164F66D5B7FD071377072332742@apache.org>

肥皂-xml

--MIMEBoundaryurn_uuid_F468164F66D5B7FD071377072332741
Content-Type: application/pdf
Content-Transfer-Encoding: binary
Content-ID: <urn:uuid:F468164F66D5B7FD071377072332744@apache.org>

PDF二进制

 --MIMEBoundaryurn_uuid_F468164F66D5B7FD071377072332741--
4

1 回答 1

1

对于 ASP.NET 为 ChangeService (Rational Synergy) WSDL 文件生成的代码和设置,我遇到了类似的问题。我还收到了 MIME 标头以及 XML 消息。假设您使用的是服务引用,我必须使用以下更改修改 web.config 文件

首先,我必须将 HttpBinding 从 basicHttpBinding 修改为 webHttpBinding,添加行为并配置端点。

在下面的配置中,更改以粗体标记

<bindings>
  <!--  basicHttpBinding>
    <binding name="ChangeServiceHttpBinding" messageEncoding="Mtom" />
  </basicHttpBinding  -->
  <webHttpBinding>
    <binding name="ChangeServiceHttpBinding" />
  </webHttpBinding>
</bindings>
<behaviors>
  <endpointBehaviors>
    <behavior name="webEndpoint">
      <webHttp defaultBodyStyle="Wrapped" defaultOutgoingResponseFormat="Xml"
          helpEnabled="true"/>
    </behavior>
  </endpointBehaviors>
</behaviors>    
<client>
  <endpoint address="http://hostname:port_number/change/webservices/ChangeService" 
            binding="webHttpBinding" 
            bindingConfiguration="ChangeServiceHttpBinding"               
            contract="ChangeSynergyService.ChangeService" 
            name="ChangeServiceHttpPort" behaviorConfiguration="webEndpoint" />
</client>

希望这可以帮助

于 2014-04-04T16:27:30.577 回答