IHttpRequest::ReadEntityBody (Método)
Devuelve el cuerpo de la entidad de solicitud HTTP.
Sintaxis
virtual HRESULT ReadEntityBody(
OUT VOID* pvBuffer,
IN DWORD cbBuffer,
IN BOOL fAsync,
OUT DWORD* pcbBytesReceived,
OUT BOOL* pfCompletionPending = NULL
) = 0;
Parámetros
pvBuffer
[OUT] Puntero a un búfer que recibe el cuerpo de la solicitud.
cbBuffer
[IN] Tamaño, en bytes, del búfer al que pvBuffer
apunta .
fAsync
[IN] true
para completar la operación de forma asincrónica; de lo contrario, false
.
pcbBytesReceived
[OUT] Puntero a un DWORD
búfer que recibe el número de bytes leídos realmente si la llamada al método se completa de forma sincrónica.
pfCompletionPending
[OUT] Puntero a un búfer booleano que recibe un valor que especifica si está pendiente una finalización asincrónica.
Valor devuelto
Una clase HRESULT
. Entre los valores posibles se incluyen los que se indican en la tabla siguiente, entre otros.
Value | Descripción |
---|---|
S_OK | Indica que la operación se realizó correctamente. |
ERROR_CONNECTION_INVALID | Indica que el recuento de bytes de la solicitud actual es incorrecto. |
ERROR_HANDLE_EOF | Indica que no hay datos restantes que se van a leer. |
ERROR_INVALID_PARAMETER | Indica que se pasó un valor no válido en uno de los parámetros. |
ERROR_NOT_ENOUGH_MEMORY | Indica que no hay memoria suficiente para realizar la operación. |
Comentarios
El ReadEntityBody
método admite llamadas sincrónicas y asincrónicas.
Nota
Si llama al ReadEntityBody
método de forma asincrónica, el módulo debe volver inmediatamente después de la llamada.
Después de llamar al ReadEntityBody
método , el pvBuffer
búfer contendrá el cuerpo de la solicitud y el pcbBytesReceived
búfer contendrá el tamaño, en bytes, del cuerpo de la solicitud que se devolvió en el pvBuffer
búfer si la llamada al método se completó de forma sincrónica.
Además, el pfCompletionPending
búfer contendrá un valor booleano que especifica si está pendiente una finalización asincrónica.
Ejemplo
En el ejemplo de código siguiente se muestra cómo usar el ReadEntityBody
método para crear un módulo HTTP que recupere una sección de búfer de 1 KB de la solicitud actual.
#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
OnBeginRequest(
IN IHttpContext * pHttpContext,
IN IHttpEventProvider * pProvider
)
{
UNREFERENCED_PARAMETER( pProvider );
// Create an HRESULT to receive return values from methods.
HRESULT hr;
// Create a data chunk.
HTTP_DATA_CHUNK dataChunk;
// Set the chunk to a chunk in memory.
dataChunk.DataChunkType = HttpDataChunkFromMemory;
// Clear the existing response.
pHttpContext->GetResponse()->Clear();
// Set the MIME type to plain text.
pHttpContext->GetResponse()->SetHeader(
HttpHeaderContentType,"text/plain",
(USHORT)strlen("text/plain"),TRUE);
// Allocate a 1K buffer.
DWORD cbBytesReceived = 1024;
void * pvRequestBody = pHttpContext->AllocateRequestMemory(cbBytesReceived);
// Test for an error.
if (NULL == pvRequestBody)
{
// Set the error status.
hr = HRESULT_FROM_WIN32(ERROR_NOT_ENOUGH_MEMORY);
pProvider->SetErrorStatus( hr );
// End additional processing.
return RQ_NOTIFICATION_FINISH_REQUEST;
}
if (pHttpContext->GetRequest()->GetRemainingEntityBytes() > 0)
{
// Loop through the request entity.
while (pHttpContext->GetRequest()->GetRemainingEntityBytes() != 0)
{
// Retrieve the request body.
hr = pHttpContext->GetRequest()->ReadEntityBody(
pvRequestBody,cbBytesReceived,false,&cbBytesReceived,NULL);
// Test for an error.
if (FAILED(hr))
{
// End of data is okay.
if (ERROR_HANDLE_EOF != (hr & 0x0000FFFF))
{
// Set the error status.
pProvider->SetErrorStatus( hr );
// End additional processing.
return RQ_NOTIFICATION_FINISH_REQUEST;
}
}
dataChunk.FromMemory.pBuffer = pvRequestBody;
dataChunk.FromMemory.BufferLength = cbBytesReceived;
hr = pHttpContext->GetResponse()->WriteEntityChunks(
&dataChunk,1,FALSE,TRUE,NULL);
if (FAILED(hr))
{
// Set the error status.
pProvider->SetErrorStatus( hr );
// End additional processing.
return RQ_NOTIFICATION_FINISH_REQUEST;
}
}
// 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
);
}
El módulo debe exportar la función RegisterModule . Puede exportar esta función mediante la creación de un archivo de definición de módulo (.def) para el proyecto, o bien puede compilar el módulo mediante el /EXPORT:RegisterModule
modificador . Para obtener más información, vea Tutorial: Creación de un módulo HTTP de Request-Level mediante código nativo.
Opcionalmente, puede compilar el código mediante la __stdcall (/Gz)
convención de llamada en lugar de declarar explícitamente la convención de llamada para cada función.
Requisitos
Tipo | Descripción |
---|---|
Remoto | - IIS 7.0 en Windows Vista - IIS 7.5 en Windows 7 - IIS 8.0 en Windows 8 - IIS 10.0 en Windows 10 |
Servidor | - IIS 7.0 en Windows Server 2008 - IIS 7.5 en Windows Server 2008 R2 - IIS 8.0 en Windows Server 2012 - IIS 8.5 en Windows Server 2012 R2 - IIS 10.0 en Windows Server 2016 |
Producto | - 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 |
Encabezado | Httpserv.h |
Consulte también
IHttpRequest (interfaz)
IHttpRequest::GetRemainingEntityBytes (Método)
IHttpRequest::InsertEntityBody (Método)