J'ai a custom HTTP module for an ASP.NET MVC3 website that Je suis loading depuis web.config:
<system.web>
<httpModules>
<add name="MyModule" type="MySolution.Web.MyHttpModule, MySolution.Web" />
</httpModules>
</system.web>
The module is loaded correctly quand I exécutez le site depuis within le VS web server (the break point in mon Init method is hit) mais quand I host it in IIS it seems to be ignored (the breakpoint is missed et le module's functionality is absent depuis le site). J'ai tried it on two separate IIS boxes avec a similaire result.
What am I doing wrong? Is there a setting J'ai to flick in enable IIS to load modules depuis a site's web.config?