Skip to content

3.1. Module Configuration

franciscoserdio edited this page Aug 9, 2016 · 1 revision

Configuration goes in the Web.Config file

Add a module to the <system.webServer>

This section ADDS the module, so it will intercept the requests:

<system.webServer>
  <modules>
    <!-- CUSTOM - HTTP MODULE FOR THE HTTP FLOW SYSTEM -->
    <add name="HttpFlowModule" type="FW.HttpFlow.HttpFlowSystem, FW.HttpFlow"/>
  </modules>
</system.webServer>

Clone this wiki locally