WCF 服务接受 GZip 消息
本文关键字:GZip 消息 服务 WCF | 更新日期: 2023-09-27 18:33:33
我可能错过了显而易见的内容,但是我怎样才能使WCF服务上的一种方法PutMessage可以同时接受GZip'd和普通请求?现在我从我的服务中看到此错误:
Cannot process the message because the content type 'application/gzip' was not the expected type 'text/xml; charset=utf-8'.
我尝试使用binaryMessageCoding/compressionFormat="GZip"和httpTransport添加自定义绑定。这是否需要配置多个绑定和多个终结点?还是多个绑定和一个端点?一个端点和一个绑定?
我无法更改发送代码,因为它是我无法访问的第三方。
这是我到目前为止的Web.config:
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior name="UserNameAuthenticationBehaviour">
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
<serviceCredentials>
<userNameAuthentication userNamePasswordValidationMode="Custom" customUserNamePasswordValidatorType="API.Star.XXXUsernamePasswordValidator, API" />
</serviceCredentials>
</behavior>
</serviceBehaviors>
</behaviors>
<bindings>
<basicHttpBinding>
<binding name="API.Star.starTransport">
<security mode="TransportWithMessageCredential">
<transport clientCredentialType="Basic" />
<message clientCredentialType="UserName" />
</security>
</binding>
</basicHttpBinding>
<customBinding>
<binding name="API.Star.starTransportGzip">
<binaryMessageEncoding compressionFormat="GZip" />
<httpTransport />
</binding>
</customBinding>
</bindings>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
<services>
<service name="API.Star.StarWebService" behaviorConfiguration="UserNameAuthenticationBehaviour">
<endpoint name="StarWebServiceEndpoint" address="" binding="basicHttpBinding" bindingConfiguration="API.Star.starTransport" contract="API.Star.operations" bindingNamespace="http://www.starstandards.org/webservices/2005/10/transport" />
<endpoint name="StarWebServiceEndpointGzip" address="" binding="customBinding" bindingConfiguration="API.Star.starTransportGzip" contract="API.Star.operations" bindingNamespace="http://www.starstandards.org/webservices/2005/10/transport" />
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
</service>
</services>
</system.serviceModel>
在 IIS 上承载服务时,不需要对 .NET 4+ 执行任何特殊操作。您只需要在 IIS 上启用 HTTP 压缩。
查看 WCF 4 中的新增功能中有关 HTTP 解压缩的部分,以获取有关如何在 IIS 7 中启用 HTTP 压缩的一些链接。
在 WCF 4.5 中,您还可以获得对二进制编码器的压缩支持。检查压缩和二进制编码器部分