Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to write an ISAPI plugin?

Tags:

iis

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

Prefered language c++

like image 302
Shoban Avatar asked Oct 28 '08 12:10

Shoban


2 Answers

Below is a quick (and simple) ISAPI Filter example. I found it 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

Best of luck.

like image 182
Chris Van Opstal Avatar answered Oct 22 '22 16:10

Chris Van Opstal


Visual Studio used to have an ISAPI wizard which was 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 hard to remove if you don't want it).

If you are doing an Extension (not a filter) -- here is the minimal code you need:

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

like image 20
Lou Franco Avatar answered Oct 22 '22 17:10

Lou Franco