Método IReadEntityProvider::GetEntity
Recupera a entidade de solicitação.
Sintaxe
virtual VOID GetEntity(
PVOID* ppBuffer,
DWORD* pcbData,
DWORD* pcbBuffer
) = 0;
Parâmetros
ppBuffer
Um ponteiro para um buffer nulo que contém a entidade de solicitação.
pcbData
Um ponteiro para um DWORD
que contém o tamanho dos dados em ppBuffer
.
pcbBuffer
Um ponteiro para um DWORD
que contém o tamanho do ppBuffer
buffer, que deve ser maior ou igual a pcbData
.
Valor Retornado
VOID
.
Comentários
Depois de chamar o GetEntity
método, o ppBuffer
parâmetro especificará a entidade de solicitação; o pcbData
parâmetro especificará o tamanho, em bytes, dos dados na entidade de solicitação que foi retornada ppBuffer;
e o pcbBuffer
parâmetro especificará o tamanho, em bytes, do buffer de entidade de solicitação apontado por ppBuffer
.
Observação
pcbBuffer
deve ser sempre maior ou igual a pcbData
.
Exemplo
O exemplo de código a seguir demonstra como criar um módulo HTTP que executa as seguintes tarefas:
Recupera a entidade de solicitação usando o
GetEntity
método .Cria uma matriz de cadeias de caracteres que contêm o tamanho dos dados da entidade de solicitação e o tamanho do buffer.
Grava uma entrada de log Visualizador de Eventos que contém as informações da entidade de solicitação e, em seguida, é encerrada.
#define _WINSOCKAPI_
#include <windows.h>
#include <sal.h>
#include <httpserv.h>
// NOTE - Data needs to be passed to this module, e.g. a POST request, or it will not appear to return anything.
// Create the module class.
class MyHttpModule : public CHttpModule
{
public:
REQUEST_NOTIFICATION_STATUS
OnReadEntity(
IN IHttpContext * pHttpContext,
IN IReadEntityProvider * pProvider
)
{
UNREFERENCED_PARAMETER( pHttpContext );
// Create buffers for the request entity information.
PVOID pBuffer = NULL;
DWORD cbData = 0;
DWORD cbBuffer = 0;
// Retrieve the request entity.
pProvider->GetEntity(&pBuffer,&cbData,&cbBuffer);
// Create string buffers for the return messages.
char szData[30];
char szBuffer[30];
// Format the return messages.
sprintf_s(szData,29,"Data Size: %u",cbData);
sprintf_s(szBuffer,29,"Buffer Size: %u",cbBuffer);
// Create an array of strings for the event viewer log.
LPCSTR szReturn[3] = {"Request Entity Information",szData,szBuffer};
// Write the strings to the Event Viewer.
WriteEventViewerLog(szReturn,3);
// Return processing to the pipeline.
return RQ_NOTIFICATION_CONTINUE;
}
MyHttpModule()
{
// Open a handle to the Event Viewer.
m_hEventLog = RegisterEventSource( NULL,"IISADMIN" );
}
~MyHttpModule()
{
// Test whether the handle for the Event Viewer is open.
if (NULL != m_hEventLog)
{
// Close the handle to the Event Viewer.
DeregisterEventSource( m_hEventLog );
m_hEventLog = NULL;
}
}
private:
// Create a handle for the event viewer.
HANDLE m_hEventLog;
// Define a method that writes to the Event Viewer.
BOOL WriteEventViewerLog(LPCSTR szBuffer[], WORD wNumStrings)
{
// Test whether the handle for the Event Viewer is open.
if (NULL != m_hEventLog)
{
// Write any strings to the Event Viewer and return.
return ReportEvent(
m_hEventLog,
EVENTLOG_INFORMATION_TYPE,
0, 0, NULL, wNumStrings,
0, szBuffer, NULL );
}
return FALSE;
}
};
// 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_READ_ENTITY,
0
);
}
Seu módulo deve exportar a função RegisterModule . Você pode exportar essa função criando um arquivo de definição de módulo (.def) para seu projeto ou pode compilar o módulo usando a opção /EXPORT:RegisterModule
. Para obter mais informações, consulte Passo a passo: criando um módulo HTTP Request-Level usando código nativo.
Opcionalmente, você pode compilar o código usando a __stdcall (/Gz)
convenção de chamada em vez de declarar explicitamente a convenção de chamada para cada função.
Requisitos
Type | Descrição |
---|---|
Cliente | - IIS 7.0 no Windows Vista - IIS 7.5 no Windows 7 - IIS 8.0 no Windows 8 - IIS 10.0 no Windows 10 |
Servidor | - IIS 7.0 no Windows Server 2008 - IIS 7.5 no Windows Server 2008 R2 - IIS 8.0 no Windows Server 2012 - IIS 8.5 no Windows Server 2012 R2 - IIS 10.0 no Windows Server 2016 |
Produto | - 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 |
parâmetro | Httpserv.h |
Consulte Também
IReadEntityProvider Interface
Método IReadEntityProvider::SetEntity
Método IHttpRequest::ReadEntityBody
Método IHttpRequest::InsertEntityBody