压缩Web服务JSON响应在IIS 8.5中不起作用

时间:2018-12-12 11:21:58

标签: asp.net json asp.net-mvc web-services iis-8.5

我有一个asmx网络服务,该服务会返回地图的车库清单。数据大小约为4MB,我需要减小它以便减少地图加载时间。

我在服务器的aplicationHost.config文件中添加了以下标记,但它仍然无法正常工作。

<httpCompression directory="%SystemDrive%\inetpub\temp\IIS Temporary Compressed Files">
            <scheme name="gzip" dll="%Windir%\system32\inetsrv\gzip.dll" staticCompressionLevel="9" dynamicCompressionLevel="9" />
            <dynamicTypes>
                <add mimeType="text/*" enabled="true" />
                <add mimeType="message/*" enabled="true" />
                <add mimeType="application/x-javascript" enabled="true" />
                <add mimeType="application/javascript" enabled="true" />
                <add mimeType="application/json" enabled="true" />
                <add mimeType="application/json; q=0.5" enabled="true" />
                <add mimeType="application/json; charset=utf-8" enabled="true" />
                <add mimeType="application/json; q=0.5; charset=utf-8" enabled="true" />
                <add mimeType="*/*" enabled="false" />
            </dynamicTypes>
            <staticTypes>
                <add mimeType="text/*" enabled="true" />
                <add mimeType="message/*" enabled="true" />
                <add mimeType="application/javascript" enabled="true" />
                <add mimeType="application/atom+xml" enabled="true" />
                <add mimeType="application/xaml+xml" enabled="true" />
                <add mimeType="*/*" enabled="false" />
            </staticTypes>
        </httpCompression>

我在这里错过了什么吗?我尚未向web.config添加任何内容。我是否也应该在网站web.config文件中添加相同的标签?

您可以在附件中看到当前的响应时间

enter image description here

enter image description here

0 个答案:

没有答案