Click here to Skip to main content
Licence CPOL
First Posted 11 Jul 2006
Views 45,441
Bookmarked 63 times

HTTP Compression - A Quick and Dirty Solution

By | 11 Jul 2006 | Article
How to use HTTP Compression on ASP.NET 2.0 pages.

Introduction

HTTP Compression is a great thing: it can save up to 70% of the bandwidth. HTTP Compression could be a problem: if you don't have access to IIS, you cannot enable it, for instance. These considerations made me look for a different solution, to be used in particular conditions. In this article, I describe how to implement HTTP Compression on single ASP.NET pages, maintaining compatibility with most browsers, and without touching IIS.

HTTP Compression Made Easy

All the modern browsers support HTTP Compression. I tested this solution with Microsoft Internet Explorer 6 SP1, Mozilla Firefox 1.5.0.4, and Konqueror. The latter has a few (known) problems with GZip streams: the pages are displayed correctly, but a warning message is shown.

When the browser supports HTTP Compression, it sends to the server a specific request header:

Accept-encoding: gzip, deflate

When the server receives that header, it can enable HTTP compression. The server, if it decides to use HTTP Compression, must notify the browser using the response header:

Content-encoding: gzip
-- or --
Content-encoding: deflate

The server then appends the content compressed using the GZip or Deflate algorithm. Note: there are a few other compression algorithms, but they are not supported by all browsers. For further information, take a look at Wikipedia.

The Code

The code is unbelievably simple, and uses the property Filter of the Page object. This property allows you to perform operations on the output stream of the page, for example, replacing every occurrence of :) with the appropriate HTML tag, just to display the smiley (I use this method in my blog). We only have to "replace" the whole output with its compressed bit stream. All we need is to put this simple code snippet in the Page_Load method:

protected void Page_Load(object sender, EventArgs e) {
  if(Request.Headers["Accept-encoding"] != null &&
     Request.Headers["Accept-encoding"].Contains("gzip")) {
       Response.Filter = new GZipStream(Response.Filter, 
                         CompressionMode.Compress, true);
       Response.AppendHeader("Content-encoding", "gzip");
  }
  else if(Request.Headers["Accept-encoding"] != null &&
          Request.Headers["Accept-encoding"].Contains("deflate")) {
      Response.Filter = new DeflateStream(Response.Filter, 
                        CompressionMode.Compress, true);
      Response.AppendHeader("Content-encoding", "deflate");
  }
}

The code "plugs" a GZipStream or a DeflateStream into the Filter object (it's an instance of System.IO.Stream), trying to detect which algorithm the browser supports. Note: the two classes (GZipStream and DeflateStream) use the same compression algorithm.

Refinements

Since it seems that Konqueror has problems with GZip/Deflate, we should disable HTTP Compression for that browser. We can do that by checking the User Agent. The code then becomes:

protected void Page_Load(object sender, EventArgs e) {
  if(!Request.UserAgent.ToLower().Contains("konqueror")) {
    if(Request.Headers["Accept-encoding"] != null &&
       Request.Headers["Accept-encoding"].Contains("gzip")) {
          Response.Filter = new GZipStream(Response.Filter, 
                            CompressionMode.Compress, true);
          Response.AppendHeader("Content-encoding", "gzip");
    }
    else if(Request.Headers["Accept-encoding"] != null &&
            Request.Headers["Accept-encoding"].Contains("deflate")) {
          Response.Filter = new DeflateStream(Response.Filter, 
                            CompressionMode.Compress, true);
          Response.AppendHeader("Content-encoding", "deflate");
    }
  }
}

Conclusions and Disclaimer

As the article's title states, this is a quick and dirty solution, with all its problems, bugs, and worst-practices. It should be considered a mere proof-of-concept, although it actually works. In the coming weeks, I'll investigate deeply into this topic because I believe it may actually become a nice way to implement HTTP Compression on a per-page basis.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Dario Solera

Founder
Threeplicate
Italy Italy

Member

Follow on Twitter Follow on Twitter
Google+
Dario Solera is the co-founder of Threeplicate Srl.
 
He is also the founder and main developer of the ScrewTurn Wiki project, now maintained by Threeplicate.
 
His interests are mainly politics, F1 and digital photography. He hopes, someday, to learn skydiving.

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

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralCompression for javascript does not work Pinmemberedsanfor236:28 20 Oct '06  
GeneralRe: Compression for javascript does not work PinmemberDario Solera6:34 20 Oct '06  
GeneralRe: Compression for javascript does not work Pinmemberhungpvtn5:13 22 Oct '06  
QuestionASP.NET v 1.1 support ?? Pinmembermarcin.rawicki3:48 18 Sep '06  
AnswerRe: ASP.NET v 1.1 support ?? PinmemberDario Solera3:53 18 Sep '06  
GeneralRe: ASP.NET v 1.1 support ?? Pinmembermarcin.rawicki4:00 18 Sep '06  
GeneralHTTP Compression module [modified] PinmemberLuis Carlos Gallego6:32 9 Aug '06  
QuestionHow to make sure that it was applied? [modified] Pinmemberdathq16:51 11 Jul '06  
When we using httpcompress, how to make sure that is is running? I mean that, in case we don't check through port80 website. Only in local computer.
I think that your solution is good one. We should use it in a Page base class and then, all pages in application inherit from.
 
Http Compression is a great topic. Wait for your articles Wink | ;)
 
dathq
 
-- modified at 22:52 Tuesday 11th July, 2006
AnswerRe: How to make sure that it was applied? PinmemberDario Solera21:31 11 Jul '06  
GeneralRe: How to make sure that it was applied? [modified] Pinmemberdathq23:04 11 Jul '06  
GeneralRe: How to make sure that it was applied? PinmemberDario Solera1:22 12 Jul '06  
GeneralRe: How to make sure that it was applied? Pinmemberdathq9:07 12 Jul '06  
AnswerRe: How to make sure that it was applied? PinmemberJoyprakash Saikia9:51 17 Jul '06  
AnswerRe: How to make sure that it was applied? PinmemberHeavensDoor0:42 21 Jul '06  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120529.1 | Last Updated 11 Jul 2006
Article Copyright 2006 by Dario Solera
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid