Condividi tramite


Metodo CHttpModule::OnMapPath

Rappresenta il metodo che gestirà un MapPath evento, che si verifica quando un'operazione richiede il mapping del percorso fisico per la richiesta corrente.

Sintassi

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

Parametri

pHttpContext
[IN] Puntatore a un'interfaccia IHttpContext .

pProvider
[IN] Puntatore a un'interfaccia IMapPathProvider .

Valore restituito

Valore REQUEST_NOTIFICATION_STATUS .

Commenti

Quando un modulo a livello di richiesta viene registrato per la notifica di RQ_MAP_PATH , IIS chiamerà il metodo del OnMapPath modulo quando un'operazione richiede il mapping del percorso fisico per la richiesta corrente.

Nota

I moduli a livello di richiesta possono registrarsi per la MapPath notifica dell'evento registrando per RQ_MAP_PATH la funzione RegisterModule del modulo.

Esempio

Nell'esempio di codice seguente viene illustrato come creare un modulo HTTP a livello di richiesta che registra per le RQ_MAP_PATH notifiche degli eventi. Quando un'operazione richiede il mapping del percorso fisico per la richiesta corrente, IIS chiamerà il metodo del modulo di OnMapPath esempio.

//  Insert data from ostringstream into the response
//  On error, Provider error status set here
//  ostringstream  buffer cleared for next call 

HRESULT  WECbyRefChunk( std::ostringstream  &os, IHttpContext *pHttpContext, 
                       IHttpEventProvider *pProvider, LONG InsertPosition= -1)
{
    HRESULT hr = S_OK;

    IHttpTraceContext * pTraceContext = pHttpContext->GetTraceContext();

    hr = pTraceContext->QuickTrace(L"WECbyRefChunk",L"data 2",E_FAIL,6);
    if (FAILED(hr)){
        LOG_ERR_HR(hr,"QuickTrace");
        return hr;
    }
    // create convenience string from ostringstream  
    std::string str(os.str());

    HTTP_DATA_CHUNK dc;
    dc.DataChunkType = HttpDataChunkFromMemory;
    dc.FromMemory.BufferLength = static_cast<DWORD>(str.size());
    dc.FromMemory.pBuffer = pHttpContext->AllocateRequestMemory( 
        static_cast<DWORD>( str.size()+1) );

    if(!dc.FromMemory.pBuffer){
        hr = HRESULT_FROM_WIN32(ERROR_NOT_ENOUGH_MEMORY);
        LOG_ERR_HR(hr,"AllocateRequestMemory");
        pProvider->SetErrorStatus(hr);
        return hr;
    }

    //  use char pointer p for convenience
    char *p = static_cast<char *>(dc.FromMemory.pBuffer);
    strcpy_s(p, str.size()+1, str.c_str());

    hr = pHttpContext->GetResponse()->WriteEntityChunkByReference( 
        &dc, InsertPosition );

    if (FAILED(hr)){
        LOG_ERR_HR(hr,"AllocateRequestMemory");
        pProvider->SetErrorStatus( hr );
    }

    os.str("");                // clear the ostringstream for next call

    return hr;
}  

Requisiti

Tipo Descrizione
Client - IIS 7.0 in Windows Vista
- IIS 7.5 in Windows 7
- IIS 8.0 in Windows 8
- IIS 10.0 in Windows 10
Server - IIS 7.0 in Windows Server 2008
- IIS 7.5 in Windows Server 2008 R2
- IIS 8.0 in Windows Server 2012
- IIS 8.5 in Windows Server 2012 R2
- IIS 10.0 in Windows Server 2016
Prodotto - 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
Intestazione Httpserv.h

Vedere anche

Classe CHttpModule