IHttpTraceContext::QuickTrace メソッド

IIS トレース ログにメッセージを書き込みます。

構文

virtual  
    HRESULT  
    QuickTrace(  
        IN PCWSTR   pszData1,  
        IN PCWSTR   pszData2 = NULL,  
        IN HRESULT  hrLastError = S_OK,  
        IN UCHAR    Level = 4  
    ) = 0;  

パラメーター

パラメーター 説明
pszData1 ログに記録するメッセージ。
pszData2 ログに記録する 2 番目のメッセージ。
hrLastError HRESULTログに記録する 。 既定値は S_OK です。
level トレース レベル。 指定できる値は 1 から 7 です。 既定値は 4 (TRACE_LEVEL_INFORMATION) です。 詳細については、「解説」を参照してください。

戻り値

HRESULT。 有効な値を次の表に示しますが、これ以外にもあります。

説明
S_OK 操作が成功したことを示します。

解説

イベント トレース レベル 1 から 5 は、Windows イベント トレース (ETW) トレース レベルに対応します。 これらのトレース レベルの詳細については、 EVENT_TRACE_HEADER 構造に関するページを参照してください。 トレース レベル 6 (Httptrace.h ヘッダー ファイルでHTTP_TRACE_LEVEL_STARTとして定義) とトレース レベル 7 (Httptrace.h でHTTP_TRACE_LEVEL_ENDとして定義) を使用することもできます。

次の例では、 IHttpRequest::SetUrl メソッドを使用して、要求された URL を別の URL に変更し、 メソッドを使用して変更をログに記録する方法を QuickTrace 示します。

イベントを表示するには、失敗したイベント要求トレースを有効にする必要があります。


HRESULT GLOBAL_MODULE::Initialize( VOID  ){
    return S_OK;
}

// CGlobalModule derived classes must implement Terminate
// And free memory
//
VOID GLOBAL_MODULE::Terminate( VOID){
    delete this;
}


GLOBAL_NOTIFICATION_STATUS
GLOBAL_MODULE::OnGlobalPreBeginRequest(
                                       IPreBeginRequestProvider* pProvider
                                       )
{
    HRESULT         hr          = S_OK;
    IHttpContext*   pContext    = pProvider->GetHttpContext( );
    IHttpRequest*   pRequest    = pContext->GetRequest( );
    IHttpResponse*  pResponse   = pContext->GetResponse( );

    PCWSTR rqUrl = pContext->GetRequest()->GetRawHttpRequest()->CookedUrl.pAbsPath;
    OutputDebugStringW(rqUrl);

    //
    // Change only specific URL requests. 
    //

    wchar_t URLask[]     = L"/rPost.htm";
    wchar_t URLreset[]   = L"/Test.htm";
    if(!wcscmp(rqUrl,URLask)){
        hr = pRequest->SetUrl( URLreset, sizeof( URLreset )/sizeof(URLreset[0]) - 1, TRUE );
        pContext->GetTraceContext( )->QuickTrace( L"URL change from rPost to", URLreset );
    }
    if( FAILED( hr ) )
        goto Finished;


Finished:

    if( FAILED( hr ) ){
        pResponse->SetStatus( 500, "Internal Server Error", 0, hr );
        return GL_NOTIFICATION_HANDLED;
    }

    return GL_NOTIFICATION_CONTINUE;
}
/*
#include "stdafx.h"

HRESULT GLOBAL_MODULE::Initialize( VOID  ){
    return S_OK;
}

// CGlobalModule derrived classes must implement Terminate
// And free memory
//
VOID GLOBAL_MODULE::Terminate( VOID){
    delete this;
}


GLOBAL_NOTIFICATION_STATUS
GLOBAL_MODULE::OnGlobalPreBeginRequest(
                                       IPreBeginRequestProvider* pProvider
                                       )
{
    HRESULT         hr          = S_OK;
    IHttpContext*   pContext    = pProvider->GetHttpContext( );
    IHttpRequest*   pRequest    = pContext->GetRequest( );
    IHttpResponse*  pResponse   = pContext->GetResponse( );

    PCWSTR rqUrl = pContext->GetRequest()->GetRawHttpRequest()->CookedUrl.pAbsPath;
    OutputDebugStringW(rqUrl);

    //
    // Change only specific URL requests.
    //

    wchar_t URLask[]     = L"/rPost.htm";
    wchar_t URLreset[]   = L"/Test.htm";
    if(!wcscmp(rqUrl,URLask)){
        hr = pRequest->SetUrl( URLreset, sizeof( URLreset )/sizeof(URLreset[0]) - 1, TRUE );
        pContext->GetTraceContext( )->QuickTrace( L"URL change to test " );
    }
    if( FAILED( hr ) )
        goto Finished;


Finished:

    if( FAILED( hr ) ){
        pResponse->SetStatus( 500, "Internal Server Error", 0, hr );
        // returning GL_NOTIFICATION_HANDLED means end the request
        return GL_NOTIFICATION_HANDLED;
    }

    return GL_NOTIFICATION_CONTINUE;
}
*/
int _tmain(int argc, _TCHAR* argv[])
{
    printf("It works!");
    return 0;
}
#define _WINSOCKAPI_
#include <windows.h>
#include <sal.h>
#include <httpserv.h>

// Create the module class.
class MyHttpModule : public CHttpModule
{
public:
    REQUEST_NOTIFICATION_STATUS
    OnBeginRequest(
        IN IHttpContext * pHttpContext,
        IN IHttpEventProvider * pProvider
    )
    {
        UNREFERENCED_PARAMETER( pProvider );

        // Retrieve a pointer to the request.
        IHttpRequest * pHttpRequest = pHttpContext->GetRequest();

        // Test for an error.
        if (pHttpRequest != NULL)
        {
            // Specify an OPTIONS request method.
            HRESULT hr = pHttpRequest->SetHttpMethod("OPTIONS");
            // Test for an error.
            if (FAILED(hr))
            {
                // Set the error status.
                pProvider->SetErrorStatus( 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 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 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 MyHttpModuleFactory,
        RQ_BEGIN_REQUEST,
        0
    );
}

要件

Type 説明
Client - 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