Click here to Skip to main content
15,860,972 members
Articles / Web Development / ASP.NET

The Two Interceptors: HttpModule and HttpHandlers

Rate me:
Please Sign up or sign in to vote.
4.91/5 (113 votes)
4 Mar 2009CPOL5 min read 429.6K   3.9K   272   53
The two interceptors: HttpModule and HttpHandlers

Table of Contents

Introduction

Many times we want to implement pre-processing logic before a request hits the IIS resources. For instance you would like to apply security mechanism, URL rewriting, filter something in the request, etc. ASP.NET has provided two types of interception HttpModule and HttpHandler. This article walks through it.

The Problem

Many times we need to inject some kind of logic before the page is requested. Some of the commonly used pre-processing logics are stat counters, URL rewriting, authentication / authorization and many more. We can do this in the code behind but then that can lead to lot of complication and tangled code. The code behind will not solve the purpose because in some implementations like authorization, we want the logic to execute before it reaches the resource. ASP.NET provides two ways of injecting logic in the request pipeline HttpHandlers and HttpModules.

Image 1

HttpHandler - The Extension Based Preprocessor

HttpHandler help us to inject pre-processing logic based on the extension of the file name requested. So when a page is requested, HttpHandler executes on the base of extension file names and on the base of verbs. For instance, you can visualize from the figure below how we have different handlers mapped to file extension. We can also map one handler to multiple file extensions. For instance, when any client requests for file with extension ‘GIF’ and ‘JPEG’, handler3 pre-processing logic executes.

Image 2

HttpModule - The Event Based Preprocessor

HttpModule is an event based methodology to inject pre-processing logic before any resource is requested. When any client sends a request for a resource, the request pipeline emits a lot of events as shown in the figure below:

Image 3

Below is a detailed explanation of the events. We have just pasted this from here.

  • BeginRequest: Request has been started. If you need to do something at the beginning of a request (for example, display advertisement banners at the top of each page), synchronize this event.
  • AuthenticateRequest: If you want to plug in your own custom authentication scheme (for example, look up a user against a database to validate the password), build a module that synchronizes this event and authenticates the user in a way that you want to.
  • AuthorizeRequest: This event is used internally to implement authorization mechanisms (for example, to store your access control lists (ACLs) in a database rather than in the file system). Although you can override this event, there are not many good reasons to do so.
  • PreRequestHandlerExecute: This event occurs before the HTTP handler is executed.
  • PostRequestHandlerExecute: This event occurs after the HTTP handler is executed.
  • EndRequest: Request has been completed. You may want to build a debugging module that gathers information throughout the request and then writes the information to the page.

We can register these events with the HttpModules. So when the request pipe line executes depending on the event registered, the logic from the modules is processed.

Image 4

The Overall Picture of Handler and Modules

Now that we have gone through the basics, let's understand what is the Microsoft definition for handler and modules to get the overall picture.

Reference: INFO: ASP.NET HTTP Modules and HTTP Handlers Overview

“Modules are called before and after the handler executes. Modules enable developers to intercept, participate in, or modify each individual request. Handlers are used to process individual endpoint requests. Handlers enable the ASP.NET Framework to process individual HTTP URLs or groups of URL extensions within an application. Unlike modules, only one handler is used to process a request”.

Image 5

Steps to Implement HttpHandlers

Step 1

HttpHandlers are nothing but classes which have pre-processing logic implemented. So the first thing is to create a class project and reference System.Web namespace and implement the IHttpHandler interface as shown in the below code snippet. IHttpHandler interface has two methods which needs to be implemented; one is the ProcessRequest and the other is the IsResuable. In the ProcessRequest method, we are just entering the URL into the file and displaying the same into the browser. We have manipulated the context response object to send the display to the browser.

C#
using System;
using System.Web;
using System.IO;
namespace MyPipeLine
{
public class clsMyHandler : IHttpHandler
{
public void ProcessRequest(System.Web.HttpContext context)
{
context.Response.Write("The page request is " + context.Request.RawUrl.ToString());
StreamWriter sw = new StreamWriter(@"C:\requestLog.txt",true);
sw.WriteLine("Page requested at " + DateTime.Now.ToString() + 
			context.Request.RawUrl); sw.Close();
}
public bool IsReusable
{
get
{
return true;
}
}
}

Step 2

In step 2, we need to make an entry of HttpHandlers tag. In the tag, we need to specify which kind of extension requested will invoke our class.

XML
<system.web>
<httpHandlers>
<add verb="*" path="*.Shiv,*.Koirala" type="MyPipeLine.clsMyHandler, MyPipeLine"/>
</httpHandlers>
</system.web>

Once done, request for page name with extension ‘Shiv’ and you should see a display as shown below. So what has happened is when the IIS sees that request is for a ‘.shiv’ page extension, it just calls the clsMyHandler class pre-processing logic.

Image 6

Steps to Implement HttpModule

Step 1

As discussed previously, HttpModule is an event pre-processor. So the first thing is to implement the IHttpModule and register the necessary events which this module should subscribe. For instance, we have registered in this sample for BeginRequest and EndRequest events. In those events, we have just written an entry on to the log file.

C#
public class clsMyModule : IHttpModule
{
public clsMyModule()
{}
public void Init(HttpApplication objApplication)
{
// Register event handler of the pipe line
objApplication.BeginRequest += new EventHandler(this.context_BeginRequest);
objApplication.EndRequest += new EventHandler(this.context_EndRequest);
}
public void Dispose()
{
}
public void context_EndRequest(object sender, EventArgs e)
{
StreamWriter sw = new StreamWriter(@"C:\requestLog.txt",true);
sw.WriteLine("End Request called at " + DateTime.Now.ToString()); sw.Close();
}
public void context_BeginRequest(object sender, EventArgs e)
{
StreamWriter sw = new StreamWriter(@"C:\requestLog.txt",true);
sw.WriteLine("Begin request called at " + DateTime.Now.ToString()); sw.Close();
}
}

Step 2

We need to enter those module entries into the HttpModule tag as shown in the below code snippet:

ASP.NET
<httpModules>
<add name="clsMyModule" type="MyPipeLine.clsMyModule, MyPipeLine"/>
</httpModules>

The Final Output

If you run the code, you should see something like this in the RequestLog.txt. The above example is not so practical. But it will help us understand the fundamentals.

Begin request called at 11/12/2008 6:32:00 PM
End Request called at 11/12/2008 6:32:00 PM
Begin request called at 11/12/2008 6:32:03 PM
End Request called at 11/12/2008 6:32:03 PM
Begin request called at 11/12/2008 6:32:06 PM
End Request called at 11/12/2008 6:32:06 PM
Begin request called at 11/12/2008 8:36:04 PM
End Request called at 11/12/2008 8:36:04 PM
Begin request called at 11/12/2008 8:37:06 PM
End Request called at 11/12/2008 8:37:06 PM
Begin request called at 11/12/2008 8:37:09 PM
End Request called at 11/12/2008 8:37:09 PM
Begin request called at 11/12/2008 8:37:38 PM
Page requested at 11/12/2008 8:37:38 PM/WebSiteHandlerDemo/Articles.shiv
End Request called at 11/12/2008 8:37:38 PM

Reference

For further reading do watch the below interview preparation videos and step by step video series.

License

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


Written By
Architect https://www.questpond.com
India India

Comments and Discussions

 
QuestionGood but need improvements Pin
Dheeraj Kumar Kesri23-May-16 18:32
professionalDheeraj Kumar Kesri23-May-16 18:32 
QuestionI can't get your demo working Pin
ratamoa10-Apr-16 18:32
ratamoa10-Apr-16 18:32 
PraiseTwo Thumbs Up Pin
Member 791645117-Jan-16 3:45
Member 791645117-Jan-16 3:45 
PraiseGood article Pin
Prasanna Devarajan11-Nov-15 7:23
Prasanna Devarajan11-Nov-15 7:23 
QuestionGood article Pin
ajayendra270714-Apr-15 21:45
ajayendra270714-Apr-15 21:45 
GeneralSimple yet clear Pin
RaviKumarMvs15-Feb-15 23:35
RaviKumarMvs15-Feb-15 23:35 
QuestionHttphandler for Webdav Pin
kkpraveen8824-Dec-14 9:48
kkpraveen8824-Dec-14 9:48 
GeneralMy vote of 3 Pin
H.J25-Feb-14 1:04
H.J25-Feb-14 1:04 
QuestionAwesome article Pin
Suresh Dammannapeta30-Jan-14 22:50
Suresh Dammannapeta30-Jan-14 22:50 
GeneralMy vote of 5 Pin
Azziet11-Mar-13 2:52
Azziet11-Mar-13 2:52 
QuestionHttpHandlers are not Interceptors Pin
rajesh_chan28-Jan-13 17:38
rajesh_chan28-Jan-13 17:38 
Please note that HttpHandlers are not Interceptors.
HttpHandlers are controllers in the Model-View-Controller pattern,
or to in Microsoft Jargon they are called as Page Controller or Front Controller.
GeneralMy vote of 5 Pin
shinnapongk9-Dec-12 14:52
professionalshinnapongk9-Dec-12 14:52 
QuestionWhich one is best? Pin
Vitaly Tomilov5-Oct-12 1:40
Vitaly Tomilov5-Oct-12 1:40 
QuestionGetting Error Pin
Bitla Phanindra28-Sep-12 2:40
Bitla Phanindra28-Sep-12 2:40 
AnswerRe: Getting Error Pin
Amol_27101982, India12-Oct-12 0:37
Amol_27101982, India12-Oct-12 0:37 
GeneralRe: Getting Error Pin
Bitla Phanindra12-Oct-12 2:23
Bitla Phanindra12-Oct-12 2:23 
GeneralRe: Getting Error Pin
Amol_27101982, India15-Oct-12 4:46
Amol_27101982, India15-Oct-12 4:46 
GeneralRe: Getting Error Pin
Amol_27101982, India15-Oct-12 4:48
Amol_27101982, India15-Oct-12 4:48 
GeneralRe: Getting Error Pin
Bitla Phanindra15-Oct-12 21:29
Bitla Phanindra15-Oct-12 21:29 
GeneralMy vote of 5 Pin
saanj11-Sep-12 23:15
saanj11-Sep-12 23:15 
GeneralMy vote of 5 Pin
sumanvidiyala6-Sep-12 16:03
sumanvidiyala6-Sep-12 16:03 
GeneralMy vote of 5 Pin
Gerard Castelló Viader23-Aug-12 23:03
Gerard Castelló Viader23-Aug-12 23:03 
Questionexcellent Pin
thinkindia4-Aug-12 5:43
thinkindia4-Aug-12 5:43 
GeneralHat's off to you sir..! Pin
Shubham Bhave3-Aug-12 3:28
Shubham Bhave3-Aug-12 3:28 
QuestionVery Nice Explanation Pin
Member 823840818-Jun-12 20:57
Member 823840818-Jun-12 20:57 

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.