Click here to Skip to main content
15,868,139 members
Articles / Desktop Programming / MFC

How to Make an ISAPI Redirection Filter

Rate me:
Please Sign up or sign in to vote.
4.36/5 (20 votes)
10 Sep 20034 min read 411K   2.9K   52   62
How to build a simple ISAPI Filter

Introduction

Redirecting web traffic is a fairly common task, we can redirect from HTML, from ASP (or other scripting engines) and from ISAPI. This tutorial will demonstrate how to reduce server workload by redirecting from ISAPI using MFC using a “redirection filter”. This example will redirect a requested page, while retaining the URL the user sees in their browser.

Html Redirect

The code to redirect a page looks something like the following:

HTML
<META http-equiv="refresh" content="5; URL=http://somewhere.com/page.asp">

ASP Redirect

The ASP code to redirect looks like:

ASP.NET
response.redirect "chrismaunderfanclub.com"

The first relies on you having each page set up to redirect, the second is done via ASP which means it requires use of the scripting engine (server hit).

ISAPI Redirection Filter

We can reduce the server load by using ISAPI filters in C++. This will have the same effect – the downside is that you need to know how to use Visual Studio to do it. The upside is that you don’t use ASP. This filter will change the URL of the file IIS thinks it wants to return, without changing the URL the user sees in their browser.

The Project

Open Visual Studio (I use version 6.0). Make a new project and select “ISAPI Extension Wizard”.

New ISAPI Project

Give your project a name. I’m using “redirector”, click "OK". You should now be presented with the following:

Image 2

Tick “Generate Filter Object” and un-tick “Generate a Server Extension Object”. In case, I’ll also link statically.

Click Next...

Image 3

Because we only want to redirect the actual page and not the page the user thinks it is, we’ll tick “Post-processing of the request headers” and select the notification priority we want the filter to have, in this case, we’ll select “high” to make sure it gets attention before any other filters. Click “Finish” and Visual Studio will now prepare the project for you.

The Code

We will now add our code to redirect all requests from .cfm to .asp. The function of interest is in redirector.cpp and is called OnPreprocHeaders and it looks something like the following:

C++
DWORD CRedirectorFilter::OnPreprocHeaders(
                             CHttpFilterContext* pCtxt, 
                             PHTTP_FILTER_PREPROC_HEADERS pHeaderInfo
                         )
{
    return SF_STATUS_REQ_NEXT_NOTIFICATION;
}

This function is called when the server has preprocessed the client headers. In this example, we want to modify the URL that IIS thinks it wants to return. We’ll try something simple - replacing all Coldfusion (.cfm) extensions with .asp. Why? Perhaps we’re using ASP instead of ColdFusion and don’t want to change the links on the pages themselves.

We need to find out which page has been requested, and then replace .cfm with .asp if necessary. To do this, we need to use the HTTP_FILTER_PREPROC_HEADERS pointer, pHeaderInfo, and the filter context pointer pCtxt.

We want to see the URL requested, to do this, we can ask IIS what the URL was by way of the GetHeader function.

C++
DWORD CRedirectorFilter::OnPreprocHeaders(
                             CHttpFilterContext* pCtxt, 
                             PHTTP_FILTER_PREPROC_HEADERS pHeaderInfo
                         )
{
    char buffer[256]
    DWORD buffSize = sizeof(buffer);
    BOOL  bHeader=pHeaderInfo->GetHeader(pCtxt->m_pFC, "url",
                                             buffer, &buffSize); 
    ...
}

Once we have the URL, we can decide whether to redirect it. I’m going to cheat a little here and use CString to deal with the string code, you can use whatever string code you like:

C++
DWORD CRedirectorFilter::OnPreprocHeaders(
                             CHttpFilterContext* pCtxt,
                             PHTTP_FILTER_PREPROC_HEADERS pHeaderInfo
                         )
{
    char buffer[256];
    DWORD buffSize = sizeof(buffer);
    BOOL bHeader = pHeaderInfo->GetHeader(pCtxt->m_pFC, "url",
                                              buffer, &buffSize); 
    CString urlString(buffer);
    urlString.MakeLower(); // for this exercise 
    if (urlString.Find(".cfm") != -1) //we want to redirect this file
    {
        urlString.Replace(".cfm",".asp");
        char *newUrlString= urlString.GetBuffer(urlString.GetLength());
        pHeaderInfo->SetHeader(pCtxt->m_pFC, "url", newUrlString);
        return SF_STATUS_REQ_HANDLED_NOTIFICATION;
    }
    //we want to leave this alone and let IIS handle it
    return SF_STATUS_REQ_NEXT_NOTIFICATION;
}

Now, build the file and with any luck, there will be no errors!

Adding the Filter to IIS

Next, you will want to add the filter to IIS, or Personal Web Service if you are using it. I’m now going to describe how to add the filter to Personal Web Service.

So, go to Administrative tools (in Windows 2000) and select Internet Services Manger, something like the following will now appear:

Image 4

Right click on “Default Web Site” (or whatever web server you want to add it to) and select “properties”, the following windows should then appear.

Image 5

From the tabs, click on “ISAPI Filters”.

Image 6

Now, assuming there are no filters already present, the box in the middle should be clear (as this example shows) Click the “Add” button…

Image 7

Give your filter a “name”, and use the browse button to locate the redirection filter .dll file.

Image 8

Click “OK” and the filter will now appear, if you want your filter to have higher priority than others that may appear in the list, use the buttons on the left hand side to organize the correct order.

Image 9

Click “OK”. The tabbed dialog will disappear.

Next, we want to stop and start the web service. Right click on the “Default Web Site”, select “Stop” then right click again and select “Start”.

Alternatively, you can click the black square on the rebar to stop the service, and click the “Start item” (black triangle) to restart it.

Testing It

Make a file test.asp and place it in your wwwroot directory of inetpub. Open your web browser and open location http://localhost/test.cfm. If all goes well, then the contents of test.asp will be displayed in the browser.

That’s it, you’re done!

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) TMR
Australia Australia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: Debugging ISAPI Filter? Pin
Lang Deng7-Aug-07 13:33
Lang Deng7-Aug-07 13:33 
GeneralRe: Debugging ISAPI Filter? [modified] Pin
bryce7-Aug-07 18:22
bryce7-Aug-07 18:22 
GeneralRe: Debugging ISAPI Filter? Pin
Lang Deng7-Aug-07 20:39
Lang Deng7-Aug-07 20:39 
GeneralDetect HTTP Agent - and redirect Pin
QuantumDJ17-Jun-07 23:01
QuantumDJ17-Jun-07 23:01 
GeneralRe: Detect HTTP Agent - and redirect Pin
bryce17-Jun-07 23:24
bryce17-Jun-07 23:24 
QuestionVSTS (VS 2005) Pin
Offlinesurfer11-Dec-06 1:37
Offlinesurfer11-Dec-06 1:37 
AnswerRe: VSTS (VS 2005) Pin
Offlinesurfer11-Dec-06 10:49
Offlinesurfer11-Dec-06 10:49 
GeneralRe: VSTS (VS 2005) Pin
bryce14-Dec-06 20:55
bryce14-Dec-06 20:55 
sorry mate, i have not had a crack at that yet.
Let me know how you get on, and i`ll post your project as an update to the code Smile | :)

bryce

---
To paraphrase Fred Dagg - the views expressed in this post are bloody good ones.
--

Publitor, making Pubmed easy.
http://www.sohocode.com/publitor


Our kids books :The Snot Goblin, and Book 2 - the Snotgoblin and Fluff


GeneralRe: VSTS (VS 2005) Pin
Offlinesurfer15-Dec-06 3:58
Offlinesurfer15-Dec-06 3:58 
GeneralRe: VSTS (VS 2005) Pin
bryce4-Jan-07 18:52
bryce4-Jan-07 18:52 
GeneralRe: VSTS (VS 2005) Pin
Offlinesurfer9-Jan-07 2:50
Offlinesurfer9-Jan-07 2:50 
GeneralRe: VSTS (VS 2005) Pin
YUserID3-Apr-07 4:23
YUserID3-Apr-07 4:23 
QuestionAny filter to add a banner or footer to all static and dynamic pages? Pin
marcelo_imai23-Nov-06 4:08
marcelo_imai23-Nov-06 4:08 
AnswerRe: Any filter to add a banner or footer to all static and dynamic pages? Pin
bryce23-Nov-06 10:54
bryce23-Nov-06 10:54 
GeneralHi Bryce,how to Get unicode url and redirect Pin
seanleee24-Jun-06 1:07
seanleee24-Jun-06 1:07 
GeneralISAPI Filter is not active Pin
VC Sekhar Parepalli4-Apr-06 9:17
VC Sekhar Parepalli4-Apr-06 9:17 
QuestionI want to show the new URL to the browser. Pin
John T. Kelly8-Oct-05 12:59
sussJohn T. Kelly8-Oct-05 12:59 
Generalhelp me! How can I control speeds. Pin
10244225-Aug-05 19:46
10244225-Aug-05 19:46 
GeneralIs there some ISAPI Book Pin
Vasudevan Deepak Kumar19-Jul-05 2:03
Vasudevan Deepak Kumar19-Jul-05 2:03 
GeneralRedirecting across app pools Pin
Anonymous28-Mar-05 14:50
Anonymous28-Mar-05 14:50 
Generalfull url required Pin
jagatnibas28-Nov-04 21:24
jagatnibas28-Nov-04 21:24 
GeneralRe: full url required Pin
Anonymous24-Mar-05 6:22
Anonymous24-Mar-05 6:22 
GeneralRe: full url required Pin
fbalicki29-Jun-06 4:54
fbalicki29-Jun-06 4:54 
GeneralReading the IIS metabase Pin
jfprince14-Oct-04 0:24
jfprince14-Oct-04 0:24 
GeneralThe browser sees the re write in URL as if it is a redirect Pin
Anonymous1-Oct-03 4:22
Anonymous1-Oct-03 4:22 

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.