我正在构建一个简单的 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 。客户端和服务绑定可能不匹配。