如何编写ISAPI插件?

时间:2023-01-14 15:00:27

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

任何链接/ Turorials都可用?我想为IIS6.0编写一个简单的ISAPI插件。

Prefered language c++

首选语言c ++

2 个解决方案

#1


4  

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

下面是一个快速(简单)的ISAPI Filter示例。我发现在尝试编写我的第一个ISAPI插件时非常有用。 http://blogs.msdn.com/rakkimk/archive/2007/03/01/writing-a-simple-isapi-filter.aspx

Best of luck.

祝你好运。

#2


2  

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).

Visual Studio曾经有一个ISAPI向导,非常适合编写插件。如果你有6.0,它可能仍然存在。 VS 2003有一个MFC用于支持MFC的ISAPI(如果你不想要的话,不难删除)。

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

#1


4  

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

下面是一个快速(简单)的ISAPI Filter示例。我发现在尝试编写我的第一个ISAPI插件时非常有用。 http://blogs.msdn.com/rakkimk/archive/2007/03/01/writing-a-simple-isapi-filter.aspx

Best of luck.

祝你好运。

#2


2  

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).

Visual Studio曾经有一个ISAPI向导,非常适合编写插件。如果你有6.0,它可能仍然存在。 VS 2003有一个MFC用于支持MFC的ISAPI(如果你不想要的话,不难删除)。

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