MvcMiniProfiler profiling web app and lower layers

前端 未结 2 1475
粉色の甜心
粉色の甜心 2020-12-14 04:10

I have MiniProfiler set up and working in my ASP.NET MVC app. My controllers make calls via WCF to a BLL which in turn talks to the database. I would like to see profiling f

2条回答
  •  庸人自扰
    2020-12-14 04:45

    In a recent release of the MvcMiniProfiler they added WCF support (version 1.8 or greater). This is a 3 step process to get this working:

    Add References

    First add references to the MvcMiniprofiler and MvcMiniProfiler.WCF in your UI layer and WCF layer via nuget (or download the source and compile your own).

    Setup WCF Host

    Second, within the web.config of the service host you have to add the miniprofiler as an endpoint behavior. All of the config sections belong in "configuration/system.serviceModel".

    
       
          
       
    
    

    Then add the behavior extension (Note the version number needs to match your version of the MvcMiniProfiler.WCF):

    
        
          
        
     
    

    Then setup the endpoints to use the profiler behavior you setup:

    
      
        
      
     
    

    Depends on your setup but I had to add one more web.config setting to run all managed modules for all requests. This config is in the root "configuration" section:

    
      
    
    

    Setup WCF Client

    Last, setup the wcf client to "turn on" the mvc profiler by doing much the same above.

    Add the extension:

    
       
          
       
    
    

    Add a behavior:

    
      
         
            
         
      
    
    

    Setup the endpoints to use that behavior:

    
       
    
    

    And you're done!

    Side Note: How does the MvcMiniProfiler actually work over WCF? Basically the client behavior sets up a SOAP header that tells the wcf host to turn on the profiler. It passes that header along which is read by the endpoint behavior on the WCF host side. It then turns the profiler on in the host. Lastly when the WCF host is replying back to the client it stuffs all the profiler goodness into the SOAP response header which is in turn read by the WCF client. Pretty ingenious.

提交回复
热议问题