Click here to Skip to main content
Click here to Skip to main content

Sending Compressed HTTP Reponse in ASP.NET Web Application

By , 6 Nov 2009
 
Sample Image - maximum width is 600 pixels

Introduction

This article will show you how to send a compressed HTTP response.

This will work on any file or response that you're sending but we'll try to avoid compressing very small files or files that are already compressed (like .jpeg)

Background

At my work, I have to send big XML and CSV files to the user. These files can be compressed to much smaller sizes.

One solution is to save the XML as a file in a temporary location on the server, zip it, and then send it to the user.

In this article, I'll show a much better solution for the problem. We'll send the XML as a compressed stream directly to the browser.

Using the Code

This code line will make sure that the browser will open the save file dialog when sending the file:

Response.AppendHeader("Content-Disposition", "attachment; filename=MyFile.xml");

Note that if you don't want the user to download a file, just send the response compress to avoid using this line of code.

The main part of the is code in the SetResponseCompression() method.

First we have to check that the browser supports compression. We'll check the 'Accept-Encoding' header in the request.

A typical header looks like "gzip,deflate".

string acceptEncoding = Request.Headers["Accept-Encoding"].ToLower();
    if (acceptEncoding.Contains("gzip"))
	{ .... 

The next lines set the content encoding to 'gzip' and sets a GZipStream as the Response Filter.

This way the response will be sent as GZip stream and the header will say to the browser that this is a GZip and the browser will know how to open it.

Response.AppendHeader("Content-Encoding", "gzip");
Response.Filter = new GZipStream(Response.Filter, CompressionMode.Compress);

You can use SetResponseCompression() in any page. This will make the response sent compressed.

History

  • 31st October, 2009: Initial version

License

This article, along with any associated source code and files, is licensed under The Common Public License Version 1.0 (CPL)

About the Author

Maxim Novak
Team Leader Leverate
Israel Israel
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
-- There are no messages in this forum --
Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 6 Nov 2009
Article Copyright 2009 by Maxim Novak
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid