HSE_REQ_EXECUTE_CHILD
Important Note: |
---|
This support function is deprecated and no longer exists in IIS 6.0. You should use HSE_REQ_EXEC_URL instead. |
This support function executes a child ISAPI extension request.
BOOL ServerSupportFunction(
HCONN ConnID,
DWORD dwServerSupportFunction,
LPVOID lpvBuffer,
LPDWORD lpdwSize,
LPDWORD lpdwDataType
);
Parameters
ConnID
Specifies the connection identifier of the client to which the response data should be sent.dwServerSupportFunction
The name of the Server Support function, which in this case must be set to HSE_REQ_EXECUTE_CHILD.lpvBuffer
Pointer to the URL that is to be processed.lpdwSize
NULL, or pointer to the HTTP request method verb (i.e. GET, POST).lpdwDataType
Specifies a DWORD that contains flags that indicate how the operation will be handled. Can be either of the following values:Value
Meaning
HSE_EXEC_NO_ISA_WILDCARDS
Disables wildcard ISAPI file name extension mapping during the child execution.
HSE_EXEC_CUSTOM_ERROR
Indicates that this is a custom error URL.
Requirements
Client: Requires Windows XP Professional, Windows 2000 Professional, or Windows NT Workstation 4.0.
Server: Requires Windows 2000 Server, or Windows NT Server 4.0.
Product: IIS
Header: Declared in httpext.h.