I have a problem with MvcTurbine in one of my web projects. After adding MvcTurbine apparently the WindowsAuthentication http module doesn't get executed. I've tried to understand/debug this problem for quite some time now, so I hope you can help. My current theory is that MvcTurbine inadvertently registers something in one of my libraries which somehow interferes with the authentication process. I'm pretty sure this is the case because when I removes the reference to one of my library projects it works again.
Unfortunately this cripples the project because the mentioned library contains all my shared web logic, such as base HttpApplication and Controller classes etc.
The size of the library makes it hard/impractical to go through and exclude code to see which part is causing the problem. So my question is how do you suggest I debug the problem?
Is there a way to disable the automatic registration of HttpModules, which I suspect is the root cause?