Настройка сжатия Gzip для asp.net с постом jquery - PullRequest
0 голосов
/ 08 марта 2012

В моем приложении я делаю пост jquery, который получает массив объектов json. Какие настройки мне нужно сделать как на iis7.5, так и на json?

Я сделал пользовательский httpmodule

private void Compress(object sender, EventArgs e)
        {
            HttpApplication app = (HttpApplication)sender;
            HttpRequest request = app.Request;
            HttpResponse response = app.Response;

            //Ajax Web Service request is always starts with application/json
            if (request.ContentType.ToLower(CultureInfo.InvariantCulture).StartsWith("application/json"))
            {
                //User may be using an older version of IE which does not support compression, so skip those
                if (!((request.Browser.IsBrowser("IE")) && (request.Browser.MajorVersion <= 6)))
                {
                    string acceptEncoding = request.Headers["Accept-Encoding"];

                    if (!string.IsNullOrEmpty(acceptEncoding))
                    {
                        acceptEncoding = acceptEncoding.ToLower(CultureInfo.InvariantCulture);

                        if (acceptEncoding.Contains("gzip"))
                        {
                            response.Filter = new GZipStream(response.Filter, CompressionMode.Compress);
                            response.AddHeader("Content-encoding", "gzip");
                        }
                        else if (acceptEncoding.Contains("deflate"))
                        {
                            response.Filter = new DeflateStream(response.Filter, CompressionMode.Compress);
                            response.AddHeader("Content-encoding", "deflate");
                        }
                    }
                }
            }
        }

В посте jquery я добавил

$.ajax({
    type: "POST", //GET or POST or PUT or DELETE verb
    url: newGrid.Serviceurl, // Location of the service
    data: JSON.stringify(newGrid), //Data sent to server
    contentType: newGrid.contenttype, // content type sent to server
    dataType: "json", //Expected data format from server
    processdata: true, //True or False
    beforeSend: function (request) {
        request.setRequestHeader("Accept-Encoding", "gzip");
    },
    success: function (result) { // get an array of json objects 
        alert('done');
    }
 });

изменения web.config -

<httpModules>
  <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
  <add name="GzipCompression" type="GzipCompression"/>
</httpModules>

Есть ли какие-либо другие изменения конфигурации, которые мне нужно сделать.

1 Ответ

0 голосов
/ 08 марта 2012

Ошибка произошла из-за записи web.config.В IIS7.5 будет использоваться

...