How can I get ASP.NET AJAX to send its JSON response with GZip compression? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T21:54:39Z http://stackoverflow.com/feeds/question/244222 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/244222/how-can-i-get-asp-net-ajax-to-send-its-json-response-with-gzip-compression 7 How can I get ASP.NET AJAX to send its JSON response with GZip compression? Kyle 2008-10-28T18:03:24Z 2009-03-09T11:54:38Z <p>Hi - </p> <p>I have compression enabled within IIS7 and it works as expected on all responses except for those constructed by ASP.NET AJAX. I have a web service that provides data to the client. When the web service is called directly, it is properly compressed. However, when it is called via ASP.NET AJAX, the JSON response is not compressed.</p> <p>How can I get ASP.NET AJAX to send its JSON response with GZip compression?</p> http://stackoverflow.com/questions/244222/how-can-i-get-asp-net-ajax-to-send-its-json-response-with-gzip-compression/245487#245487 0 Answer by Kyle for How can I get ASP.NET AJAX to send its JSON response with GZip compression? Kyle 2008-10-29T01:26:24Z 2008-10-29T01:26:24Z <p>The headers are set as expected, w/ gzip accepted: </p> <p>User-Agent Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.3) Gecko/2008092417 Firefox/3.0.3 (.NET CLR 3.5.30729) Accept-Language en-us,en;q=0.5 Accept-Encoding gzip,deflate Content-Type application/json; charset=utf-8 </p> http://stackoverflow.com/questions/244222/how-can-i-get-asp-net-ajax-to-send-its-json-response-with-gzip-compression/248963#248963 0 Answer by Keltex for How can I get ASP.NET AJAX to send its JSON response with GZip compression? Keltex 2008-10-30T00:59:57Z 2008-10-30T00:59:57Z <p>What browser are you using? There's a bug in IE 6 that causes errors in compression. So ASP.NET AJAX turns off compression to IE 6 browsers:</p> <p><a href="http://weblogs.asp.net/scottgu/archive/2005/06/28/416185.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/archive/2005/06/28/416185.aspx</a></p> <p>Also, did you enable compression for ASMX files?</p> http://stackoverflow.com/questions/244222/how-can-i-get-asp-net-ajax-to-send-its-json-response-with-gzip-compression/264331#264331 0 Answer by Sugendran for How can I get ASP.NET AJAX to send its JSON response with GZip compression? Sugendran 2008-11-05T04:19:06Z 2008-11-05T04:19:06Z <p>Last I checked, the gzipping was something that IIS does (when setup correctly) - and of course when the browser sends the required headers</p> http://stackoverflow.com/questions/244222/how-can-i-get-asp-net-ajax-to-send-its-json-response-with-gzip-compression/266753#266753 1 Answer by stevemegson for How can I get ASP.NET AJAX to send its JSON response with GZip compression? stevemegson 2008-11-05T21:23:26Z 2008-11-05T21:23:26Z <p>IIS7 uses the content-encoding to decide whether to compress the response (assuming of course that the browser can accept gzip). They're set in applicationHost.config, and by default the list is</p> <pre><code>&lt;dynamicTypes&gt; &lt;add mimeType="text/*" enabled="true" /&gt; &lt;add mimeType="message/*" enabled="true" /&gt; &lt;add mimeType="application/x-javascript" enabled="true" /&gt; &lt;add mimeType="*/*" enabled="false" /&gt; &lt;/dynamicTypes&gt; </code></pre> <p>If you call the web service directly, the XML response has a content-type of <code>text/xml</code>, which gets compressed. When called by AJAX, the JSON response has a content type of <code>application/json</code>, so it isn't compressed. Adding the following to applicationHost.config should fix that...</p> <pre><code> &lt;add mimeType="application/json" enabled="true" /&gt; </code></pre> http://stackoverflow.com/questions/244222/how-can-i-get-asp-net-ajax-to-send-its-json-response-with-gzip-compression/304680#304680 0 Answer by Thomas Hansen for How can I get ASP.NET AJAX to send its JSON response with GZip compression? Thomas Hansen 2008-11-20T08:50:27Z 2008-11-20T08:50:27Z <p>In general you don't want to do this unless you wouldn't mind throwing orders of magnitudes the amount of server power into your apps...</p> <p>Also not only server-CPU but also client-CPU becomes a problem when you do this....</p> <p>This concludes with that your app becomes WAY slower if you GZip all your Ajax Responses...!</p> http://stackoverflow.com/questions/244222/how-can-i-get-asp-net-ajax-to-send-its-json-response-with-gzip-compression/625924#625924 0 Answer by Rajiv for How can I get ASP.NET AJAX to send its JSON response with GZip compression? Rajiv 2009-03-09T11:54:38Z 2009-03-09T11:54:38Z <p>Thomas,</p> <p>For performance enhacement of a web application developed in Asp.net with Ajax: 1. Do you advice to your Ajax with Json. In what cases "Yes" and in what cases "No" 2. Gzip increases the CPU utilisation by 30-100 times depending on page size, so it should be used carefully.In your reply, are you referring to a general Gzipped page or specifically Ajax with Json.</p> <p>Cheers Rajiv</p>