WCF服务客户端:内容类型text / html;响应消息的charset = utf-8与绑定的内容类型不匹配

问题描述 投票:59回答:17

我在我的本地IIS服务器上运行了一个WCF服务。我已将其添加为C#Website Project的服务引用,并且它会添加正常并自动生成代理类。

但是,当我尝试调用任何服务合同时,我收到以下错误:

描述:执行当前Web请求期间发生未处理的异常。请查看堆栈跟踪以获取有关错误及其源自代码的位置的更多信息。

异常详细信息:System.ServiceModel.ProtocolException:内容类型text / html;响应消息的charset = utf-8与绑定的内容类型不匹配(application / soap + xml; charset = utf-8)。如果使用自定义编码器,请确保正确实现IsContentTypeSupported方法。响应的前1024个字节是:'function bredir(d,u,r,v,c){var w,h,wd,hd,bi; var b = false; var p = false; var s = [[ 300250,假],[250250,假],[240400,假],[336280,假],[180150,假],[468,60,假],[234,60,假],[88,31,假],[120,90,假],[120,60,假],[120240,假],[125125,假],[728,90,假],[160600,假],[120600,假] [300600,假],[300125,假],[530300,假],[190200,假],[470250,假],[720300,真],[500350,真],[550480,真]]; if(typeof(window.innerHeight)=='number'){h = window.innerHeight; w = window.innerWidth;} else if(typeof(document.body.offsetHeight)=='number'){h = document。 body.offsetHeight; w = document.body.offsetWidth;} for(var i = 0; i

我还有一个控制台应用程序,它也与WCF服务通信,控制台应用程序能够调用方法,而不会出现此错误。

以下是我的配置文件的摘录。

WCF服务Web.Config:

<system.serviceModel>
   <services>
      <service name="ScraperService" behaviorConfiguration="ScraperServiceBehavior">
         <endpoint address=""
                   binding="wsHttpBinding" 
                   bindingConfiguration="WSHttpBinding_IScraperService"
                   contract="IScraperService" />
         <endpoint address="mex" 
                   binding="mexHttpBinding" 
                   contract="IMetadataExchange" />
         <host>
            <baseAddresses>
                <add baseAddress="http://example.com" />
            </baseAddresses>
         </host>
      </service>
   </services>
   <bindings>
       <wsHttpBinding>
           <binding name="WSHttpBinding_IScraperService"
                    bypassProxyOnLocal="false" transactionFlow="false"
                    hostNameComparisonMode="StrongWildcard"
                    maxBufferPoolSize="2000000" maxReceivedMessageSize="2000000"
                    messageEncoding="Text" textEncoding="utf-8"
                    useDefaultWebProxy="true" allowCookies="false">
               <readerQuotas 
                     maxDepth="2000000" maxStringContentLength="2000000" 
                     maxArrayLength="2000000" maxBytesPerRead="2000000"
                     maxNameTableCharCount="2000000" />
               <reliableSession 
                     enabled="false" ordered="true" inactivityTimeout="00:10:00" />
               <security mode="Message">
                   <message clientCredentialType="Windows"
                            negotiateServiceCredential="true"
                            algorithmSuite="Default"
                            establishSecurityContext="true" />
               </security>
            </binding>
          </wsHttpBinding>
      </bindings>
      <behaviors>
          <serviceBehaviors>
              <behavior name="ScraperServiceBehavior">
                  <serviceMetadata httpGetEnabled="true" />
                  <serviceDebug includeExceptionDetailInFaults="true" />
              </behavior>
          </serviceBehaviors>
     </behaviors>
</system.serviceModel>

网站项目服务客户Web.Config

<system.serviceModel>
   <bindings>
      <wsHttpBinding>
          <binding name="WSHttpBinding_IScraperService" 
              closeTimeout="00:01:00" openTimeout="00:01:00" 
              receiveTimeout="00:10:00" sendTimeout="00:01:00"
              bypassProxyOnLocal="false" transactionFlow="false" 
              hostNameComparisonMode="StrongWildcard"
              maxBufferPoolSize="524288" maxReceivedMessageSize="65536" 
              messageEncoding="Text" textEncoding="utf-8"
              useDefaultWebProxy="true" allowCookies="false">
              <readerQuotas 
                  maxDepth="32" maxStringContentLength="8192" 
                  maxArrayLength="16384" maxBytesPerRead="4096" 
                  maxNameTableCharCount="16384" />
              <reliableSession enabled="false"
                  ordered="true" inactivityTimeout="00:10:00" />
              <security mode="Message">
                  <transport clientCredentialType="Windows" 
                       proxyCredentialType="None" realm="" />
                  <message clientCredentialType="Windows" 
                       negotiateServiceCredential="true"
                       algorithmSuite="Default" />
              </security>
          </binding>
       </wsHttpBinding>
    </bindings>
<client>
        <endpoint name="WSHttpBinding_IScraperService"
            address="http://example.com/ScraperService.svc"
            binding="wsHttpBinding" 
            bindingConfiguration="WSHttpBinding_IScraperService"
            contract="ScraperService.IScraperService" >
           <identity>
               <servicePrincipalName value="host/FreshNET-II" />
           </identity>
        </endpoint>
     </client>
</system.serviceModel>

这是我第一次尝试创建一个WCF,所以这一切都很新。任何帮助深表感谢。

c# .net wcf web-services
17个回答
26
投票

尝试使用客户端通常运行的相同Windows凭据,在托管服务的服务器上的Web浏览器中浏览http://localhost/ScraperService.svc

我想IIS正在显示某些描述的html错误消息,而不是按预期返回xml。

当您具有执行Internet过滤的http代理服务器时,也会发生这种情况。我对ContentKeeper的体验是拦截任何http / https流量并将其阻止为“非托管内容” - 我们得到的只是一条HTML错误消息。为避免这种情况,您可以将代理服务器例外规则添加到Internet Explorer,以便代理不会拦截您网站的流量:

控制面板> Internet选项>连接>局域网设置>高级>代理设置


1
投票

即使您不使用网络代理,在代理对话框中打开“自动检测设置”也会使此例外处于关闭状态。


1
投票

在我的WCF服务项目中,此问题是由System.Web.Mvc.dll的不同版本引用引起的。所以它可能是DLL不同版本的兼容性问题

我用的时候

System.Web.Mvc.dll版本5.2.2.0 - >它引发错误内容类型text / html;响应消息的charset = utf-8

但是当我使用System.Web.Mvc.dll版本4.0.0.0或更低版本时 - >它工作正常。

我不知道不同版本DLL的问题的原因,但通过更改DLL的verison它适用于我。

当您在WCF项目中添加其他Project的引用时,甚至会生成此错误,并且此引用项目具有不同版本的System.Web.Mvc DLL或可能是任何其他DLL。


0
投票

X ++ binding = endPoint.get_Binding(); binding.set_UseDefaultWebProxy(false);


0
投票

我通过在web.config中设置UseCookies解决了这个问题。

  <system.web>
    <sessionState cookieless="UseCookies" />

并设置enableVersionHeader

  <system.web>
    <httpRuntime targetFramework="4.5.1" enableVersionHeader="false" executionTimeout="1200" shutdownTimeout="1200" maxRequestLength="103424" />

0
投票

如果您同时使用wshttpbinding和https请求,那么我使用以下配置更改解决了它。

 <security mode="TransportWithMessageCredential">
                    <transport clientCredentialType="None" />
                    <message clientCredentialType="Certificate" />
                </security>

0
投票

对我来说,当我在Web.config中注释以下行时问题得到了解决

<httpErrors errorMode="Detailed" />

0
投票

Hy,在我的情况下出现此错误是因为Web服务的应用程序池具有错误的32/64位设置。因此,此错误需要以下修复:您转到IIS,选择Web服务的站点,转到高级设置并获取应用程序池。然后转到应用程序池,选择它,转到“高级设置...”,根据Web服务的32/64位类型选择“启用32位应用程序”并使其启用或禁用。如果设置为True,则表示它只允许32位应用程序,因此对于64位应用程序,您必须将其设置为“禁用”(默认)。


0
投票

对我来说,是指向错误的数据库服务器的Web应用程序连接字符串。


15
投票

来自Web服务器的HTML响应通常表示已提供错误页面而不是来自WCF服务的响应。我的第一个建议是检查您运行WCF客户端的用户是否有权访问该资源。


12
投票

我有一个类似的问题。我通过改变来解决它

<basicHttpBinding>

<basicHttpsBinding>

并且还将我的URL更改为使用https://而不是http://。

同样在<endpoint>节点中,进行更改

binding="basicHttpBinding" 

binding="basicHttpsBinding"

这很有效。


5
投票

发生了什么事情是你试图使用wsHttpBind访问服务,wsHttpBind默认使用安全加密邮件(安全邮件)。另一方面,netTcpBind使用安全加密通道。 (安全传输)...但是BasicHttpBind,根本不需要任何安全性,并且可以访问匿名

所以。在服务器端,添加\将其更改为您的配置。

<bindings>
    <wsHttpBinding>
     <binding name="wsbind"> 
         <security mode="Message">
             <transport clientCredentialType="Windows" proxyCredentialType="None" />
             <message clientCredentialType="Windows" negotiateServiceCredential="true"
                            algorithmSuite="Default" establishSecurityContext="true" />
         </security>
     </binding>
    </wsHttpBinding>
</bindings>

然后添加更改您的端点

<endpoint address="" binding="wsHttpBinding" bindingConfiguration="wsbind" name="wshttpbind" contract="WCFService.IService" > 

应该这样做。


1
投票

在我的情况下,URL重写规则搞乱我的服务名称,它被重写为小写,我收到此错误。

确保您没有小写WCF服务调用。


1
投票

和许多人一样,在我的情况下,由于错误,我也得到了这个。遗憾的是,我只能阅读html错误页面的CSS。

我的问题的根源也是服务器上的重写规则。它正在重写http到https。


1
投票

您可能想要检查服务的配置并确保一切正常。您可以通过浏览器导航到Web服务,以查看是否将在浏览器上呈现架构。

您可能还想检查用于调用服务的凭据。


1
投票

我尝试了上面的所有建议,但最终有效的是将应用程序池管理的管道从集成模式更改为经典模式。 它在自己的应用程序池中运行 - 但它是第一个.NET 4.0服务 - 所有其他服务都在.NET 2.0上使用集成管道模式。它只是一个标准的WCF服务使用是https - 但在Server 2008(而不是R2) - 使用IIS 7(而不是7.5)。


1
投票

我有类似的情况,但客户端配置使用basicHttpBinding。问题是该服务使用的是SOAP 1.2,您无法在basicHttpBinding中指定SOAP 1.2。我修改了客户端配置以使用customBinding而且一切正常。以下是我的customBinding的详细信息以供参考。我尝试使用的服务是使用UserNameOverTransport通过HTTPS进行的。

<customBinding>
    <binding name="myBindingNameHere" sendTimeout="00:03:00">
        <security authenticationMode="UserNameOverTransport" includeTimestamp="false">
            <secureConversationBootstrap />
        </security>
        <textMessageEncoding maxReadPoolSize="64" maxWritePoolSize="16"
              messageVersion="Soap12" writeEncoding="utf-8">
            <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
                maxBytesPerRead="4096" maxNameTableCharCount="16384" />
        </textMessageEncoding>
        <httpsTransport manualAddressing="false" maxBufferPoolSize="4194304"
              maxReceivedMessageSize="4194304" allowCookies="false" authenticationScheme="Basic"
              bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
              keepAliveEnabled="true" maxBufferSize="4194304" proxyAuthenticationScheme="Anonymous"
              realm="" transferMode="Buffered" unsafeConnectionNtlmAuthentication="false"
              useDefaultWebProxy="true" requireClientCertificate="false" />
    </binding>
</customBinding>
© www.soinside.com 2019 - 2024. All rights reserved.