开发者

MVC Mini Profiler Exception on MiniProfiler.Stop()

开发者 https://www.devze.com 2023-03-22 04:22 出处:网络
I\'m just added Mini Profiler to my MVC3 project with nuget and I\'ve followed the basic steps to get it set up. Starting the profile on Application_BeginRequest() and stopping it on Application_EndRe

I'm just added Mini Profiler to my MVC3 project with nuget and I've followed the basic steps to get it set up. Starting the profile on Application_BeginRequest() and stopping it on Application_EndRequest()

    protected void Application_BeginRequest()
    {
        if (Request.IsLocal)
        {
            MiniProfiler.Start();
        }

    }

    protected void Application_EndRequest()
    开发者_JAVA百科{
        MiniProfiler.Stop();
    }

MiniProfiler.Stop() is throwing an exception - "Server cannot append header after HTTP headers have been sent."

Has anybody else seen this?


Old question but answering anyway.

Problem caused by some component (SignalR in my case) calls HttpResponse.Flush. Solved by excluding SignalR from profiling. Below is a simple version of what we have done.

if (Request.IsLocal && !Request.Path.StartsWith("/signalr"))
{
    MiniProfiler.Start();
}

Hope it helps.


This appears to be related to Combres (http://combres.codeplex.com/). If I ignore the requests for my js and css that has been combined and compressed with combres the profiler seems to work better (no exception being thrown)

0

精彩评论

暂无评论...
验证码 换一张
取 消