IHttpContext::ExecuteRequest 方法

执行子请求。

语法

virtual HRESULT ExecuteRequest(  
   IN BOOL fAsync,  
   IN IHttpContext* pHttpContext,  
   IN DWORD dwExecuteFlags,  
   IN IHttpUser* pHttpUser,  
   OUT BOOL* pfCompletionExpected = NULL  
) = 0;  

parameters

fAsync
[IN]Always true (指定异步执行) 。

pHttpContext
[IN]指向要执行的子 IHttpContext 的 指针。

dwExecuteFlags
[IN]包含 DWORD 请求执行标志的 。

pHttpUser
[IN]指向请求的 IHttpUser 的指针。 (可选)

pfCompletionExpected
[OUT] true 如果异步完成仍处于挂起状态,则为 ;否则为 false。 (可选)

返回值

HRESULT。 可能的值包括(但并不限于)下表中的项。

说明
S_OK 指示操作成功。
ERROR_NOT_SUPPORTED 指示请求不受支持 (例如, fAsync 设置为 false 或子请求未从父请求) 克隆。
ERROR_STACK_OVERFLOW 指示请求超出了递归子请求的限制。

备注

方法ExecuteRequest执行由 参数中的 pHttpContextIHttpContext 接口指定的子请求。 必须使用 IHttpContext::CloneContext 方法创建此请求上下文。

重要

尝试执行父请求未克隆的子请求将返回ERROR_NOT_SUPPORTED。

每个子上下文只能执行一次,尽管子请求可以递归嵌套。

注意

递归子请求的限制为 10。

方法 ExecuteRequest 仅支持异步操作,这可以防止线程池耗尽。

重要

尝试执行同步子请求将返回ERROR_NOT_SUPPORTED。

可以通过在 中 dwExecuteFlags指定执行标志来控制子请求的执行行为。 下表列出了这些标志的可能值。

说明
EXECUTE_FLAG_NO_HEADERS 禁止显示子请求的 HTTP 标头。
EXECUTE_FLAG_IGNORE_CURRENT_INTERCEPTOR 忽略此请求链的当前脚本映射处理程序。
EXECUTE_FLAG_IGNORE_APPPOOL 即使子请求不在同一应用程序池中,也执行请求。
EXECUTE_FLAG_DISABLE_CUSTOM_ERROR 禁用子请求的自定义错误。
EXECUTE_FLAG_SAME_URL 子请求的 URL 与父请求相同。 注意: 脚本映射处理程序使用此标志来转发执行。
EXECUTE_FLAG_BUFFER_RESPONSE 不刷新子响应;返回对父请求的响应。
EXECUTE_FLAG_HTTP_CACHE_ELIGIBLE 子响应仍可通过Http.sys进行缓存。 注意: 默认情况下,在执行子请求时禁用缓存。

如果为 pHttpUser指定IHttpUser接口,则将跳过子请求的身份验证。

示例

下面的代码示例演示如何创建执行以下任务的 HTTP 模块:

  1. 模块注册 RQ_MAP_PATH 通知。

  2. 该模块创建包含 OnMapPathOnAsyncCompletion 方法的 CHttpModule 类。

  3. 当 Web 客户端请求 URL 时,IIS 会调用模块的 OnMapPath 方法。 此方法执行以下任务:

    1. 测试当前请求的 URL 是否与网站根目录中的两个特定 URL 匹配。 如果 URL 与指定 URL 之一匹配,则模块使用 IHttpContext::CloneContext 方法创建当前请求的克隆。

    2. 调用克隆的 IHttpRequest::SetUrl 方法,将克隆的 URL 设置为 /example/default.aspx。

    3. ExecuteRequest调用 方法以执行子请求。

    4. 异步完成测试。 如果异步完成处于挂起状态,则模块会将处理返回到集成的请求处理管道。 如果没有,模块将释放克隆的上下文。

  4. 如果需要异步完成,IIS 会调用模块的 OnAsyncCompletion 方法。 此方法释放克隆的上下文。

  5. 该模块从内存中删除 CHttpModule 类,然后退出。

#define _WINSOCKAPI_
#include <windows.h>
#include <sal.h>
#include <httpserv.h>

// Create the module class.
class MyHttpModule : public CHttpModule
{

private:

    // Create a pointer for a child request.
    IHttpContext * m_pChildRequestContext;

public:

    MyHttpModule(void)
    {
        m_pChildRequestContext = NULL;
    }

    REQUEST_NOTIFICATION_STATUS
    OnMapPath(
        IN IHttpContext * pHttpContext,
        IN IMapPathProvider * pProvider
    )
    {
        UNREFERENCED_PARAMETER( pProvider );

        HRESULT hr;
        BOOL fCompletionExpected;

        // Retrieve a pointer to the URL.
        PCWSTR pwszUrl = pProvider->GetUrl();

        // Only process requests for the root.
        if (0 == wcscmp(pwszUrl,L"/") || 0 == wcscmp(pwszUrl,L"/default.aspx"))
        {            
            // Clone the current context.
            hr = pHttpContext->CloneContext(
                CLONE_FLAG_BASICS, &m_pChildRequestContext );
            
            // Test for a failure.
            if (FAILED(hr))
            {
                goto Failure;
            }
            
            // Test for an error.
            if ( NULL != m_pChildRequestContext )
            {
                // Set the URL for the child request.
                hr = m_pChildRequestContext->GetRequest()->SetUrl(
                    "/example/default.aspx",
                    (DWORD)strlen("/example/default.aspx"),false);
            
                // Test for a failure.
                if (FAILED(hr))
                {
                    goto Failure;
                }
                
                // Execute the child request.
                hr = pHttpContext->ExecuteRequest(
                    TRUE, m_pChildRequestContext,
                    0, NULL, &fCompletionExpected );
                
                // Test for a failure.
                if (FAILED(hr))
                {
                    goto Failure;
                }
                
                // Test for pending asynchronous operations.
                if (fCompletionExpected)
                {
                    return RQ_NOTIFICATION_PENDING;
                }

            }

 Failure:
            // Test for a child request.
            if (NULL != m_pChildRequestContext)
            {
                // Release the child request.
                m_pChildRequestContext->ReleaseClonedContext();
                m_pChildRequestContext = NULL;
            }
        }
        
        // Return processing to the pipeline.
        return RQ_NOTIFICATION_CONTINUE;
    }
    
    REQUEST_NOTIFICATION_STATUS
        OnAsyncCompletion(
        IN IHttpContext * pHttpContext,
        IN DWORD dwNotification,
        IN BOOL fPostNotification,
        IN IHttpEventProvider * pProvider,
        IN IHttpCompletionInfo * pCompletionInfo
        )
    {
        // Test for a child request.
        if (NULL != m_pChildRequestContext)
        {
            // Release the child request.
            m_pChildRequestContext->ReleaseClonedContext();
            m_pChildRequestContext = NULL;
        }
        // Return processing to the pipeline.
        return RQ_NOTIFICATION_CONTINUE;
    }

};

// Create the module's class factory.
class MyHttpModuleFactory : public IHttpModuleFactory
{
public:
    HRESULT
    GetHttpModule(
        OUT CHttpModule ** ppModule, 
        IN IModuleAllocator * pAllocator
    )
    {
        UNREFERENCED_PARAMETER( pAllocator );

        // Create a new instance.
        MyHttpModule * pModule = new MyHttpModule;

        // Test for an error.
        if (!pModule)
        {
            // Return an error if we 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 );

    return pModuleInfo->SetRequestNotifications(
        new MyHttpModuleFactory,
        RQ_MAP_PATH,
        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

另请参阅

IHttpContext 接口
IHttpContext::CloneContext 方法
IHttpContext::GetParentContext 方法
IHttpContext::ReleaseClonedContext 方法