在我的应用程序中,我应该使用WSDL服务
我在VS2010中使用“添加服务参考”下的高级选项将其添加为Web引用。可以访问此服务下的功能。但是当我运行应用程序时,它会抛出错误,如下所示:
Client found response content type of 'multipart/related; type="application/xop+xml"; start="<soap.xml@xfire.codehaus.org>"; start-info="text/xml"; boundary="----=_Part_142_5972.13983051"', but expected 'text/xml'.
我尝试将Web.config文件中的Binding设置更改为
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="HttpBinding" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="2147483647" maxBufferPoolSize="524288" maxReceivedMessageSize="2147483647"
messageEncoding="Mtom" textEncoding="utf-8" transferMode="Buffered"
useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="Transport">
<transport clientCredentialType="Basic" proxyCredentialType="None"
realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
</bindings>
</system.serviceModel>
我已尝试使用“Text”和“MTom”进行MessageEncoding但返回相同的错误。
请告诉我如何处理此错误。
提前致谢...