Native IIS module event ordering
I’m working on a native IIS module (c++) which needs to capture request and response buffers inorder to reconstruct a complete transaction. Below is my RegisterModule call: HRESULT __stdcall RegisterModule( DWORD dwServerVersion, IHttpModuleRegistrationInfo* pModuleInfo, IHttpServer* pGlobalInfo ) { UNREFERENCED_PARAMETER(dwServerVersion); UNREFERENCED_PARAMETER(pGlobalInfo); return pModuleInfo->SetRequestNotifications(new AgentModuleFactory, RQ_BEGIN_REQUEST | // OnBeginRequest RQ_READ_ENTITY | // OnReadEntity RQ_SEND_RESPONSE | // OnSendResponse … Read more