Running MiniProfiler with runAllManagedModulesForAllRequests set to false
Asked Answered
P

3

47

Recently we upgraded to MiniProfiler version 2.0.1 from v1.7, and since then we have not been able to use it in our MVC3 website because when it tries to get its resources, it instead gets a 404.

An example resource call is: /mini-profiler-resources/includes.js?v=tNlJPuyuHLy/d5LQjyDuRbWKa0weCpmO3xkO6MH4TtA=

In searching around, most people are suggesting that simply setting runAllManagedModulesForAllRequests should be set to true. For giggles, I went ahead and set it to true, and yes it did work. But that is not an acceptable answer.

How can I keep runAllManagedModulesForAllRequests=false and still use MiniProfiler v2?

Phonologist answered 24/4, 2012 at 19:22 Comment(5)
well ... we need to figure out what broke first, does trunk exhibit the same issue? I know that there were requests to serve stuff extensionless in the past to work around thisComo
It seems this post is talking about the same issue: https://mcmap.net/q/372585/-miniprofiler-cannot-find-jquery/498969 The code I pulled down was from your nuget package, so I can't confirm the issue from the trunk at the moment. Version 2 no longer requires that I register those three handlers (miniProfilerJS, miniProfilerCSS, miniProfilerTmpl) right? Are you getting around that by registering routes from the MiniProfilerHandler?Phonologist
Im thinking the cleanest design we can move to is a single endpoint to serve all the stuff eg: /mini-profiler-handler?jquery.js&kfslsfjklskd etc ... can you post on community.miniprofiler.comComo
@SamSaffron, It looks like David's answer below works! I added the info to your KB in community tracker.Phonologist
Thanks @Adam ... published itComo
C
74

I had the same issue - the resources being requested use "static" file extensions (such as .js) and therefore IIS wants to handle them using its static file handler.

Luckily all of the MiniProfiler resources are requested with the path mini-profiler-resources, so you can add the following to your web.config:

<system.webServer>
  ...
  <handlers>
    <add name="MiniProfiler" path="mini-profiler-resources/*" verb="*" type="System.Web.Routing.UrlRoutingModule" resourceType="Unspecified" preCondition="integratedMode" />
  </handlers>
</system.webServer>

The entry above instructs IIS that any request for the mini-profiler-resources path to be routed through ASP.NET.

Crusty answered 28/4, 2012 at 12:32 Comment(5)
What would we have to do to support IIS 7 running in classic mode?Clio
Hmm.. if you're running in classic mode then you could probably add a similar entry into <system.web><httpHandlers>. I believe the format is the same exception maybe leave off the resourceType and preCondition attributes.Crusty
This works great, I believe this breaking change should be documented and highlighted in the miniprofiler.com site.Redraft
A breaking change in .NET 4.5 currently requires us to add the handler registration @David mentions as a workaround. Setting runAllManagedModulesForAllRequests=true doesn't fix the problem.Bustamante
Please help me, I also use Classic mode and MVC 4, I tried to add to httpHandlers, but it doesn't implement type="System.Web.Routing.UrlRoutingModule". Could you show me shift httpHalder you use?Yager
M
0

As David Duffet says in the comments in the accepted answer, you might also need to add the following entry to your web config. This worked for me:

<system.web>
    <httpHandlers>
      <add verb="*" type="System.Web.Routing.UrlRoutingModule" path="mini-profiler-resources/*"/>
    </httpHandlers>
</system.web>
Marya answered 24/6, 2015 at 12:16 Comment(0)
D
0

I had a similar issue and what I did to fix it was change the application pool to 'integrated' and then I added this new line below to my web.config and it then worked.

Here is what the complete web.config looks like now for mini-profiler.

<system.webServer>
    <modules runAllManagedModulesForAllRequests="false" />
    <validation validateIntegratedModeConfiguration="false"/> <!-- Here is the new line -->
    <handlers>
      <add name="MiniProfiler" verb="*" type="System.Web.Routing.UrlRoutingModule" path="mini-profiler-resources/*"/>
    </handlers>
  </system.webServer>
Decoy answered 16/9, 2015 at 15:3 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.