http://blog.csdn.net/kufeiyun/article/details/9363621

当你有一个RESTful的web service,并且请求返回的数据格式为JSON格式,你可能希望无论客户端请求头中是否包含Accept-Encoding: gzip,都希望对数据进行gzip/compressed处理,只需对mime type list进行如下设置,添加如下内容

application/json; charset=utf-8

操作步骤:

1.配置文件编辑

                                            http://blog.csdn.net/kufeiyun/article/details/9363621_第1张图片

2. 选择 system.webServer/httpCompression

http://blog.csdn.net/kufeiyun/article/details/9363621_第2张图片

3.添加mimeType

http://blog.csdn.net/kufeiyun/article/details/9363621_第3张图片

之后记着要点击应用完成保存

或者使用AppCmd.exe ( %windir%\system32\inetsrv)进行命令行模式进行添加:

命令如下:appcmd.exe set config -section:system.webServer/httpCompression /+"dynamicTypes.[mimeType='application/json; charset=utf-8',enabled='True']" /commit:apphost

使用命令行的好处是,他可以为“Entry Path”添加 Entry Type属性,而使用图形界面操作,虽然有Entry path ,但是没有为其添加对应的Entry type,虽然不影响使用,但是我更喜欢完整

 

      然后重启IIS, 使用Fiddler或者Viola监控http请求响应,就会看到响应内容进行了GZIP Encoding,点击“click here to transform”看看解码内容



http://blog.csdn.net/kufeiyun/article/details/9363621

你可能感兴趣的:(http://blog.csdn.net/kufeiyun/article/details/9363621)