CHttpModule::OnMapPath, méthode
Représente la méthode qui gère un MapPath
événement, qui se produit lorsqu’une opération demande que le chemin physique soit mappé pour la requête actuelle.
Syntaxe
virtual REQUEST_NOTIFICATION_STATUS OnMapPath(
IN IHttpContext* pHttpContext,
IN IMapPathProvider* pProvider
);
Paramètres
pHttpContext
[IN] Pointeur vers une interface IHttpContext .
pProvider
[IN] Pointeur vers une interface IMapPathProvider .
Valeur renvoyée
Valeur REQUEST_NOTIFICATION_STATUS .
Remarques
Lorsqu’un module au niveau de la demande est inscrit pour la notification RQ_MAP_PATH , IIS appelle la méthode du OnMapPath
module lorsqu’une opération demande que le chemin physique soit mappé pour la requête actuelle.
Notes
Les modules au niveau de la demande peuvent s’inscrire à la MapPath
notification d’événement en s’inscrivant à RQ_MAP_PATH
dans la fonction RegisterModule du module.
Exemple
L’exemple de code suivant montre comment créer un module HTTP au niveau de la demande qui s’inscrit pour les notifications d’événements RQ_MAP_PATH
. Lorsqu’une opération demande que le chemin physique soit mappé pour la requête actuelle, IIS appelle la méthode de l’exemple de OnMapPath
module.
// 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;
}
Spécifications
Type | Description |
---|---|
Client | - IIS 7.0 sur Windows Vista - IIS 7.5 sur Windows 7 - IIS 8.0 sur Windows 8 - IIS 10.0 sur Windows 10 |
Serveur | - IIS 7.0 sur Windows Server 2008 - IIS 7.5 sur Windows Server 2008 R2 - IIS 8.0 sur Windows Server 2012 - IIS 8.5 sur Windows Server 2012 R2 - IIS 10.0 sur Windows Server 2016 |
Produit | - 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 |
En-tête | Httpserv.h |