How to write an ISAPI plugin?

Any links / turorials available? I want to write a simple ISAPI plugin for IIS6.0.

Preferred C ++ Language

+5
source share
2 answers

The following is a quick (and simple) example of an ISAPI filter. I found this very useful when trying to write my first ISAPI plugin. http://blogs.msdn.com/rakkimk/archive/2007/03/01/writing-a-simple-isapi-filter.aspx

Good luck.

+4
source

Visual Studio used the ISAPI wizard, which is great for writing plugins. If you have 6.0, it might still be there. VS 2003 has one under MFC for ISAPI with MFC support (not difficult to remove if you do not want it).

( ) - , :

http://groups.google.com/group/microsoft.public.platformsdk.internet.server.isapi-dev/browse_thread/thread/d29e1a767cbb4717

+2

All Articles