IHttpModuleFactory::GetHttpModule 方法
创建 CHttpModule 类的实例。
语法
virtual HRESULT GetHttpModule(
OUT CHttpModule** ppModule,
IN IModuleAllocator* pAllocator
) = 0;
parameters
ppModule
[OUT]指向 CHttpModule 类的取消引用指针。
pAllocator
[IN]指向 IModuleAllocator 接口的指针。
返回值
HRESULT
。 可能的值包括(但并不限于)下表中的项。
值 | 说明 |
---|---|
S_OK | 指示操作成功。 |
注意
由于模块工厂需要提供 GetHttpModule
方法,因此可以根据应用程序提供返回值的任何状态代码。 至少,方法 GetHttpModule
应返回S_OK以指示成功完成。
备注
IHttpModuleFactory 接口必须提供创建GetHttpModule
类实例CHttpModule
的方法。 当 IIS 调用模块的导出 RegisterModule 函数时,IIS 将使用模块工厂的 GetHttpModule
方法来创建类的 CHttpModule
实例。
示例
下面的代码示例演示如何创建简单的“Hello World”HTTP 模块。 模块定义一个导出的 RegisterModule
函数,该函数将接口的 IHttpModuleFactory
实例传递给 IHttpModuleRegistrationInfo::SetRequestNotifications 方法,并注册 RQ_BEGIN_REQUEST 通知。 IIS 使用 GetHttpModule
方法创建类的 CHttpModule
实例并返回成功状态。 IIS 还使用 接口的 IHttpModuleFactory
Terminate 方法从内存中删除工厂。
RQ_BEGIN_REQUEST
触发通知时,IIS 会调用模块的 CHttpModule::OnBeginRequest 方法来处理当前请求。 OnBeginRequest
清除响应缓冲区并修改响应的 MIME 类型。 然后, 方法创建一个包含“Hello World”字符串的数据区块,并将该字符串返回给 Web 客户端。 最后,模块返回状态指示器,通知 IIS 所有通知已完成,然后退出。
#define _WINSOCKAPI_
#include <windows.h>
#include <sal.h>
#include <httpserv.h>
// Create the module class.
class CHelloWorld : public CHttpModule
{
public:
REQUEST_NOTIFICATION_STATUS
OnBeginRequest(
IN IHttpContext * pHttpContext,
IN IHttpEventProvider * pProvider
)
{
UNREFERENCED_PARAMETER( pProvider );
// Create an HRESULT to receive return values from methods.
HRESULT hr;
// Retrieve a pointer to the response.
IHttpResponse * pHttpResponse = pHttpContext->GetResponse();
// Test for an error.
if (pHttpResponse != NULL)
{
// Clear the existing response.
pHttpResponse->Clear();
// Set the MIME type to plain text.
pHttpResponse->SetHeader(
HttpHeaderContentType,"text/plain",
(USHORT)strlen("text/plain"),TRUE);
// Create a string with the response.
PCSTR pszBuffer = "Hello World!";
// Create a data chunk.
HTTP_DATA_CHUNK dataChunk;
// Set the chunk to a chunk in memory.
dataChunk.DataChunkType = HttpDataChunkFromMemory;
// Buffer for bytes written of data chunk.
DWORD cbSent;
// Set the chunk to the buffer.
dataChunk.FromMemory.pBuffer =
(PVOID) pszBuffer;
// Set the chunk size to the buffer size.
dataChunk.FromMemory.BufferLength =
(USHORT) strlen(pszBuffer);
// Insert the data chunk into the response.
hr = pHttpResponse->WriteEntityChunks(
&dataChunk,1,FALSE,TRUE,&cbSent);
// Test for an error.
if (FAILED(hr))
{
// Set the HTTP status.
pHttpResponse->SetStatus(500,"Server Error",0,hr);
}
// End additional processing.
return RQ_NOTIFICATION_FINISH_REQUEST;
}
// Return processing to the pipeline.
return RQ_NOTIFICATION_CONTINUE;
}
};
// Create the module's class factory.
class CHelloWorldFactory : public IHttpModuleFactory
{
public:
HRESULT
GetHttpModule(
OUT CHttpModule ** ppModule,
IN IModuleAllocator * pAllocator
)
{
UNREFERENCED_PARAMETER( pAllocator );
// Create a new instance.
CHelloWorld * pModule = new CHelloWorld;
// Test for an error.
if (!pModule)
{
// Return an error if the factory cannot create the instance.
return HRESULT_FROM_WIN32( ERROR_NOT_ENOUGH_MEMORY );
}
else
{
// Return a pointer to the module.
*ppModule = pModule;
pModule = NULL;
// Return a success status.
return S_OK;
}
}
void
Terminate()
{
// Remove the class from memory.
delete this;
}
};
// Create the module's exported registration function.
HRESULT
__stdcall
RegisterModule(
DWORD dwServerVersion,
IHttpModuleRegistrationInfo * pModuleInfo,
IHttpServer * pGlobalInfo
)
{
UNREFERENCED_PARAMETER( dwServerVersion );
UNREFERENCED_PARAMETER( pGlobalInfo );
// Set the request notifications and exit.
return pModuleInfo->SetRequestNotifications(
new CHelloWorldFactory,
RQ_BEGIN_REQUEST,
0
);
}
模块必须导出 函数 RegisterModule
。 可以通过为项目创建模块定义 (.def) 文件导出此函数,也可以使用 开关编译模块 /EXPORT:RegisterModule
。 有关详细信息,请参阅 演练:使用本机代码创建Request-Level HTTP 模块。
可以选择使用调用约定编译代码, __stdcall (/Gz)
而不是为每个函数显式声明调用约定。
要求
类型 | 说明 |
---|---|
客户端 | - Windows Vista 上的 IIS 7.0 - Windows 7 上的 IIS 7.5 - Windows 8 上的 IIS 8.0 - Windows 10 上的 IIS 10.0 |
服务器 | - Windows Server 2008 上的 IIS 7.0 - Windows Server 2008 R2 上的 IIS 7.5 - Windows Server 2012 上的 IIS 8.0 - Windows Server 2012 R2 上的 IIS 8.5 - Windows Server 2016 上的 IIS 10.0 |
产品 | - IIS 7.0、IIS 7.5、IIS 8.0、IIS 8.5、IIS 10.0 - IIS Express 7.5、IIS Express 8.0、IIS Express 10.0 |
Header | Httpserv.h |
另请参阅
CHttpModule 类
IHttpModuleFactory 接口
设计Native-Code HTTP 模块
演练:使用本机代码创建Request-Level HTTP 模块