thr
thr

Reputation: 19476

Creating what is equivalent to an ISAPI extension for IIS7

I've searched the IIS7 MSDN database but can't find any concrete material on how to create custom C#.NET extensions for IIS7, I know that previously in IIS6 you had to write an ISAPI extension in C++ if you wanted to say plug in your own scripting language for websites (this is sort of what I want to do) but in IIS7 you're supposed to be able to write it using C#.NET and utilizing the new plugable architecture of IIS7... but I can't find any sodding docs on how to do it.

Anyone care to point me in the right direction?

Upvotes: 5

Views: 4263

Answers (4)

Cheeso
Cheeso

Reputation: 192417

You can, of course, still use the ISAPI C++ interfaces. There may be existing code you can use to enable your new scripting language, since the C++ stuff has been around for sooooo much longer.

Upvotes: 0

Mehrdad Afshari
Mehrdad Afshari

Reputation: 421960

In IIS7 Integrated mode, HTTP Modules are equivalent to ISAPI filters and HTTP Handlers are equivalent to ISAPI extensions.

Upvotes: 5

Darin Dimitrov
Darin Dimitrov

Reputation: 1038700

A good place to start is this article. It has links in the beginning to sample modules.

Upvotes: 6

Canavar
Canavar

Reputation: 48088

Check out HTTP handlers.

Upvotes: 1

Related Questions