0

我正在构建一个简单的 WCF 服务。我的 web.config 如下:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <system.serviceModel>
<bindings>
    <basicHttpBinding>
        <binding name="MyBasicHttpBinding">
            <security mode="None">
                <transport clientCredentialType="None" />
            </security>
        </binding>
    </basicHttpBinding>
</bindings>
<services>
  <!-- This section is optional with the default configuration
    model introduced in .NET Framework 4 -->
  <service name="WcfService1.Service1" behaviorConfiguration="MyServiceTypeBehaviors">

    <endpoint address="http://companyserver/wcftest/service1.svc"
              binding="basicHttpBinding"
      bindingConfiguration="MyBasicHttpBinding"
              contract="WcfService1.IService1" />

    <endpoint address="mex"
              binding="mexHttpBinding"
              contract="IMetadataExchange" />
  </service>
</services>
<behaviors>
    <serviceBehaviors>
        <behavior name="MyServiceTypeBehaviors" >
            <serviceMetadata httpGetEnabled="true" />
        </behavior>
    </serviceBehaviors>
</behaviors>

  </system.serviceModel>
</configuration>

当我尝试使用该服务时,它会显示以下错误消息:

内容类型应用程序/soap+xml;服务http://companyserver/wcftest/Service1.svc不支持 charset=utf-8 。客户端和服务绑定可能不匹配。

4

1 回答 1

0

检查客户端和服务中的绑定配置。那里一定有偏差。例如,您是否在客户端和服务器上使用相同的安全模型?

于 2011-06-20T09:37:41.267 回答