Hi,
I'm writting a native module and implementing CHttpModule::OnEndRequest() (among others). I want to prevent the modules after mine from handling the END_REQUEST event, so I return with RQ_NOTIFICATION_FINISH_REQUEST from the method, but other modules do handle the END_REQUEST event as well (I can see that in the Failed Request Tracing) -> I would asume (from the documentation) that no module is handling the event after mine.
In the method CHttpModule::OnBeginRequest() it works fine (I return with RQ_NOTIFICATION_FINISH_REQUEST and no other module after mine is handling the event.
Question is the same as:
http://forums.iis.net/p/1209350/2072760.aspx?RQ_NOTIFICATION_FINISH_REQUEST+doesn+t+work+in+native+module+method+CHttpModule+OnEndRequest
BR,
Christian