与GZip合作的问题

时间:2012-11-07 12:58:47

标签: asp.net-mvc gzip

我在尝试使用GZip时遇到问题。 我在配置文件中使用了以下条目,即applicationHost.config和web.config

<httpCompression>
  <staticTypes>
    <add mimeType="text/*" enabled="true" />        
    <add mimeType="*/*" enabled="false" />
  </staticTypes>
  <dynamicTypes>
    <add mimeType="text/*" enabled="true" />        
    <add mimeType="*/*" enabled="false" />
  </dynamicTypes>
  <scheme name="gzip" dll="%Windir%\system32\inetsrv\gzip.dll" dynamicCompressionLevel="4" />
</httpCompression>
<urlCompression doDynamicCompression="true" doStaticCompression="true"/>

我的应用程序部署在IIS 7.5上。 我已经在网上看到了这些建议,我碰巧听说我不需要编写独占的流代码。配置文件的条目就足够了。 但是当我的WCF服务返回一个记录超过1000的集合对象时,我仍然收到错误。该对象是一个可序列化的对象。 请帮我解决这个问题

0 个答案:

没有答案