Click here to Skip to main content
15,886,026 members
Articles / Web Development / ASP.NET
Article

HTTP compression in .NET Framework 2.0

Rate me:
Please Sign up or sign in to vote.
4.64/5 (20 votes)
1 May 20072 min read 233.9K   1.7K   72   60
An article on how to request and handle HTTP compression in .NET Framework 2.0.

Introduction

This article describes the implementation of a utility class that will allow HTTP requests informing the server (or any appliance in the network between the client and the server) what types of compression it can handle and uncompress the response from the server (if any) without changing the client application.

HTTP compression is very useful when the cost of the connection is high.

The factory pattern of creating WebRequest instances

The WebRequest supplies two methods to create instances:

The WebRequest class uses instances of classes that implement the IWebRequestCreate interface and are registered in the webRequestModules section in the configuration files. The Create method (called by both CreateDefault and Create) returns an initialized instance of a WebRequest descendent class capable of performing a standard request/response transaction for the protocol without needing any protocol-specific fields modified.

On the other hand, the previously created WebRequest derived instances will return WebResponse derived instances that will handle the HTTP response.

Because of the way the factory pattern is implemented, we can change the behavior of already built applications (our applications or even the .NET Framework) to request and handle HTTP compression, changing only the configuration files.

Since in versions 2.0 and above of the .NET framework already support compression, there is no need to supply WebRequestand WebResponse derived class implementations. All that's needed is a class that implements the IWebRequestCreate interface to create the WebRequestderived instance and set it up.

The code

As shown before, to add HTTP compression to our applications, we just have to build three classes:

CompressibleHttpRequestCreator

In order for the applications that use HttpWebRequest and HttpWebResponse to work without any changes, CompressibleHttpRequestCreator.Create has to return a HttpWebRequest instance. Unfortunately, there is no public construtor for HttpWebRequest or publicly accessible implementation of IWebRequestCreate.Create that creates a HttpWebRequest instance, so some reflection will be needed.

The implementation of IWebRequestCreate.Create just creates an instance of HttpWebRequest and sets its HttpWebRequest.AutomaticDecompression to accept all types of compression.

C#
public class CompressibleHttpRequestCreator : IWebRequestCreate
{
    public CompressibleHttpRequestCreator()
    {
    }

    WebRequest IWebRequestCreate.Create(Uri uri)
    {
        HttpWebRequest httpWebRequest = 
            Activator.CreateInstance(typeof(HttpWebRequest),
            BindingFlags.CreateInstance | BindingFlags.Public | 
            BindingFlags.NonPublic | BindingFlags.Instance,
            null, new object[] { uri, null }, null) as HttpWebRequest;

        if (httpWebRequest == null)
        {
            return null;
        }

        httpWebRequest.AutomaticDecompression =DecompressionMethods.GZip | 
            DecompressionMethods.Deflate;

        return httpWebRequest;
    }
}  

Configuration

Now, to add HTTP compression support to any application, all that's needed is to add the corresponding entries to the webRequestModules section in the configuration file.

XML
<configuration>
  <system.net>
    <webRequestModules>
      <remove prefix="http:"/>
      <add prefix="http:" 
            type="Pajocomo.Net.CompressibleHttpRequestCreator, Pajocomo" />
    </webRequestModules>
  </system.net>
</configuration>

History

When I first ported this from .NET 1.1, I completely missed the fact that HttpWebRequest and HttpWebResponse already implemented compression.

Thanks to Björn to point that out to me.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior) Paulo Morgado
Portugal Portugal

Comments and Discussions

 
GeneralRe: System.Runtime.Serialization.dll Pin
Jntn14-May-06 22:22
Jntn14-May-06 22:22 
GeneralRe: System.Runtime.Serialization.dll Pin
Paulo Morgado14-May-06 23:39
professionalPaulo Morgado14-May-06 23:39 
Generalweb service specific exception Pin
Petr Melichar22-Apr-06 2:03
Petr Melichar22-Apr-06 2:03 
GeneralRe: web service specific exception Pin
Paulo Morgado14-May-06 10:20
professionalPaulo Morgado14-May-06 10:20 
AnswerRe: web service specific exception Pin
realmaestro3-Apr-07 15:48
realmaestro3-Apr-07 15:48 
GeneralRe: web service specific exception Pin
Paulo Morgado3-Apr-07 21:59
professionalPaulo Morgado3-Apr-07 21:59 
QuestionImport problem Pin
TommyB811-Mar-06 4:09
TommyB811-Mar-06 4:09 
AnswerRe: Import problem Pin
Paulo Morgado12-Mar-06 1:07
professionalPaulo Morgado12-Mar-06 1:07 
Using Ethereal and Fiddler, did you check if the Accept-Encoding is being sent?

You could set breakpoints in CompressibleHttpRequestCreator.Create, CompressibleHttpWebRequest.BeforeGetResponse, CompressibleHttpWebRequest.AfterGetResponse and CompressibleHttpWebResponse.GetResponseStream to see what's going on.

To make sure the right classes are instantiated, you can, also, create the WebRequest instance like this:

IWebRequestCreate webRequestCreate = new CompressibleHttpRequestCreator();
WebRequest webRequest = webRequestCreate.Create(uri);
WebResponse webResponse = webRequest.GetResponse();

You can register a IWebRequestCreate descendant for a spceified prefix in code using WebRequest.RegisterPrefix, but you can't override the definitions for HTTP and HTTPS. And you would end up with your code tightly coupled with these classes. This is the sort of thing you want plugguble.

Paulo Morgado
Portugal - Europe's West Coast
GeneralRe: Import problem Pin
TommyB812-Mar-06 1:24
TommyB812-Mar-06 1:24 
GeneralRe: Import problem Pin
Paulo Morgado12-Mar-06 2:01
professionalPaulo Morgado12-Mar-06 2:01 
GeneralRe: Import problem Pin
TommyB812-Mar-06 2:30
TommyB812-Mar-06 2:30 
GeneralRe: Import problem Pin
Paulo Morgado12-Mar-06 6:37
professionalPaulo Morgado12-Mar-06 6:37 
AnswerRe: Import problem Pin
TommyB812-Mar-06 6:44
TommyB812-Mar-06 6:44 
QuestionHelp - How to do? Pin
RSArockiam6-Feb-06 20:44
RSArockiam6-Feb-06 20:44 
AnswerRe: Help - How to do? Pin
Paulo Morgado7-Feb-06 0:11
professionalPaulo Morgado7-Feb-06 0:11 
GeneralRe: Help - How to do? Pin
RSArockiam7-Feb-06 1:52
RSArockiam7-Feb-06 1:52 
GeneralRe: Help - How to do? Pin
Paulo Morgado7-Feb-06 12:11
professionalPaulo Morgado7-Feb-06 12:11 
GeneralRe: Help - How to do? Pin
RSArockiam7-Feb-06 18:39
RSArockiam7-Feb-06 18:39 
GeneralRe: Help - How to do? Pin
Paulo Morgado8-Feb-06 13:02
professionalPaulo Morgado8-Feb-06 13:02 
GeneralExcluding File Types Pin
IgDev27-Jan-06 10:22
IgDev27-Jan-06 10:22 
GeneralRe: Excluding File Types Pin
Paulo Morgado27-Jan-06 11:16
professionalPaulo Morgado27-Jan-06 11:16 
QuestionCould you give me more infomation? Pin
Ahfu13-Jan-06 19:56
Ahfu13-Jan-06 19:56 
AnswerRe: Could you give me more infomation? Pin
Paulo Morgado14-Jan-06 1:07
professionalPaulo Morgado14-Jan-06 1:07 
GeneralHTTP compression in the .NET Framework 1.1 Pin
Paulo Morgado13-Jan-06 11:50
professionalPaulo Morgado13-Jan-06 11:50 

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

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