1

我试图在我的 c# 项目中使用的远程服务器上的 apache 或 jboss 上托管了一个 wsdl。我在 Visual Studio 中添加了一个服务引用,它自动为我生成了一个 app.config 文件,其中system.serviceModel部分如下所示

<system.serviceModel>
    <bindings>
        <basicHttpBinding>
            <binding name="ArtesiaWebServicesHttpBinding" closeTimeout="00:01:00"
                openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
                allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
                maxBufferSize="655360" maxBufferPoolSize="524288" maxReceivedMessageSize="655360"
                messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
                useDefaultWebProxy="true">
                <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
                    maxBytesPerRead="4096" maxNameTableCharCount="16384" />
                <security mode="None">
                    <transport clientCredentialType="None" proxyCredentialType="None"
                        realm="" />
                    <message clientCredentialType="UserName" algorithmSuite="Default" />
                </security>
            </binding>
        </basicHttpBinding>
    </bindings>
    <client>
        <endpoint address="http://serverpath/ArtesiaWebServices"
            binding="basicHttpBinding" bindingConfiguration="ArtesiaWebServicesHttpBinding"
            contract="DAMService.ArtesiaWebServicesInterface" name="ArtesiaWebServicesHttpPort" />
    </client>
</system.serviceModel>

在运行时,在方法调用期间,我收到以下错误:

内容类型 multipart/related;类型=“应用程序/xop+xml”;开始=“”;开始信息=“文本/xml”;响应消息的boundary="----=_Part_386_1206794365.1374255761229"与绑定的内容类型不匹配 (text/xml; charset=utf-8)。如果使用自定义编码器,请确保正确实现 IsContentTypeSupported 方法。

可能是什么问题呢?

4

1 回答 1

0

该问题已通过将绑定的 messageEncoding 属性更改为“Mtom”而不是“Text”来解决

于 2013-07-22T05:37:51.777 回答