Поделиться через


Метод 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 Второе сообщение для записи в журнал.
hrLastError Объект для HRESULT ведения журнала. Значение по умолчанию — S_OK.
level Уровень трассировки. Возможные значения: от 1 до 7. Значение по умолчанию — 4 (TRACE_LEVEL_INFORMATION). Дополнительные сведения см. в разделе «Примечания».

Возвращаемое значение

Объект HRESULT. Допустимые значения включают, но не ограничиваются, значения, приведенные в следующей таблице.

Значение Описание:
S_OK Указывает, что операция выполнена успешно.

Комментарии

Уровни трассировки событий от 1 до 5 соответствуют уровням трассировки событий Windows (ETW). Дополнительные сведения об этих уровнях трассировки см. в разделе структура EVENT_TRACE_HEADER . Вы также можете использовать уровень трассировки 6 (определенный как HTTP_TRACE_LEVEL_START в файле заголовка Httptrace.h) и уровень трассировки 7 (определенный как HTTP_TRACE_LEVEL_END в Httptrace.h).

Пример

В следующем примере показано, как использовать метод IHttpRequest::SetUrl , чтобы изменить запрошенный 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
    );
}

Требования

Тип Описание
клиент — IIS 7.0 в Windows Vista
— IIS 7.5 в Windows 7
— IIS 8.0 в Windows 8
— IIS 10.0 в Windows 10
Сервер — IIS 7.0 в Windows Server 2008
— IIS 7.5 в Windows Server 2008 R2
— IIS 8.0 в Windows Server 2012
— IIS 8.5 в Windows Server 2012 R2
— IIS 10.0 в Windows Server 2016
Продукт — 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
Заголовок Httpserv.h