I've developed a custom managed HttpModule (.NET 2), installed it on GAC and added it in Modules
section for IIS 8.5 globally.
For each website with Integrated mode this module is visible in it's Modules section as Inherited and it works as designed for all .NET 2 and .NET 4 web applications (without manipulating each site's Web.Config
) .
As for websites in Classic mode, it's not there and therefore it's not accessible and working inside classic web application.
I tried editing applicationHost.config
and Web.Config
(v2 and v4) in any way but I got no result (It seems Machine.Config
has no place for it).
How and where can I globally register that same module to handle classic mode without adding dll to bin and/or editing each website's Web.Config?