| title | IHttpContext::CloneContext Method |
|---|---|
| description | IHttpContext::CloneContext Method creates a clone of the current request context. |
| ms.date | 10/07/2016 |
| ms.assetid | fca3d2f4-9ebc-9615-53bc-2447fb65e301 |
Creates a clone of the current request context.
virtual HRESULT CloneContext(
IN DWORD dwCloneFlags,
OUT IHttpContext** ppHttpContext
) = 0; dwCloneFlags
[IN] A DWORD that contains the clone flags.
ppHttpContext
[OUT] A dereferenced pointer to an IHttpContext.
An HRESULT. Possible values include, but are not limited to, those in the following table.
| Value | Description |
|---|---|
| S_OK | Indicates that the operation was successful. |
| ERROR_INVALID_PARAMETER | Indicates that a specified parameter was not valid. |
| ERROR_NOT_ENOUGH_MEMORY | Indicates that there is insufficient memory to perform the operation. |
The CloneContext method creates a clone of the current request context. You can control the cloning behavior by specifying the appropriate flags in the dwCloneFlags parameter. The following table lists the possible values for these flags.
| Value | Description |
|---|---|
| CLONE_FLAG_BASICS | Clone the URL, query string, and HTTP method. |
| CLONE_FLAG_HEADERS | Clone the request headers. |
| CLONE_FLAG_ENTITY | Clone the entity body. |
| CLONE_FLAG_NO_PRECONDITION | Do not include any "range" and "if-" headers for the request. |
| CLONE_FLAG_NO_DAV | Do not include any WebDAV headers for the request. |
Once you have created a cloned context, you can use the clone as you would use the parent context. For example, to execute a child request for a different URL than the parent URL, you would use the IHttpRequest::SetUrl method for the cloned context to change the URL of the cloned context before calling the parent context's IHttpContext::ExecuteRequest method.
The following code example demonstrates how to create an HTTP module that performs the following tasks:
-
The module registers for the RQ_MAP_PATH notification.
-
The module creates a CHttpModule class that contains OnMapPath and OnAsyncCompletion methods.
-
When a Web client requests a URL, IIS calls the module's
OnMapPathmethod. This method performs the following tasks:-
Tests to see whether the URL for the current request has a trailing slash or ends with /default.aspx. If the URL ends with either element, the module uses the
CloneContextmethod to create a clone of the current request. -
Calls the clone's
IHttpRequest::SetUrlmethod to set the URL for the clone to /example/default.aspx. -
Calls the
IHttpContext::ExecuteRequestmethod to execute the child request. -
Tests for asynchronous completion. If asynchronous completion is pending, the module returns processing to the integrated request-processing pipeline. If not, the module releases the cloned context.
-
-
If asynchronous completion is required, IIS calls the module's
OnAsyncCompletionmethod. This method releases the cloned context. -
The module removes the
CHttpModuleclass from memory and then exits.
[!code-cppIHttpContextExecuteRequest#1]
Your module must export the RegisterModule function. You can export this function by creating a module definition (.def) file for your project, or you can compile the module by using the /EXPORT:RegisterModule switch. For more information, see Walkthrough: Creating a Request-Level HTTP Module By Using Native Code.
You can optionally compile the code by using the __stdcall (/Gz) calling convention instead of explicitly declaring the calling convention for each function.
| Type | Description |
|---|---|
| Client | - IIS 7.0 on [!INCLUDEwinvista] - IIS 7.5 on Windows 7 - IIS 8.0 on Windows 8 - IIS 10.0 on Windows 10 |
| Server | - IIS 7.0 on [!INCLUDEwinsrv2008] - IIS 7.5 on Windows Server 2008 R2 - IIS 8.0 on Windows Server 2012 - IIS 8.5 on Windows Server 2012 R2 - IIS 10.0 on Windows Server 2016 |
| Product | - IIS 7.0, IIS 7.5, IIS 8.0, IIS 8.5, IIS 10.0 - [!INCLUDEiisexp75], [!INCLUDEiisexp80], [!INCLUDEiisexp100] |
| Header | Httpserv.h |
IHttpContext Interface
IHttpContext::ExecuteRequest Method
IHttpContext::ReleaseClonedContext Method