Reputation: 23016
Any links/Turorials avalable? I want to write a simple ISAPI plugin for IIS6.0.
Prefered language c++
Upvotes: 5
Views: 3068
Reputation: 89142
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:
Upvotes: 2
Reputation: 37537
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.
Upvotes: 4