Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Glimpse Not working at all

Tags:

glimpse

I installed Glimpse for MVC5 via Install-Package Glimpse.MVC5

I turned on Glimpse on the Glimpse config page: /Glimpse.axd

When try to now hit my site, nothing happens. If I turn off Glimpse the site works as expected.

There are no error message or anything http related in Chrome network tools, only a request of: data:text/html,chromewebdata with a response of "Failed to load response data"

This is what Glimpse put in my web.config when I installed it. Not sure how to troubleshoot this.

<httpModules>
  <add name="Glimpse" type="Glimpse.AspNet.HttpModule, Glimpse.AspNet" />
</httpModules>
<httpHandlers>
  <add path="glimpse.axd" verb="GET" type="Glimpse.AspNet.HttpHandler, Glimpse.AspNet" />
</httpHandlers>

<modules>
  <add name="Glimpse" type="Glimpse.AspNet.HttpModule, Glimpse.AspNet" preCondition="integratedMode" />

<handlers>
  <add name="Glimpse" path="glimpse.axd" verb="GET" type="Glimpse.AspNet.HttpHandler, Glimpse.AspNet" preCondition="integratedMode" />
like image 339
Shiloh Avatar asked Jul 12 '14 17:07

Shiloh


1 Answers

After adding the Glimpse.AspNet NuGet package, I found that the ASP.NET Development Server was crashing on every request because Glimpse was throwing a NotSupportedException (I only found this after attaching a debuger to the dev server process). The exception's message said:

Some environments conflict with current Glimpse async support. Please set Glimpse:DisableAsyncSupport = true in Web.config, or see https://github.com/Glimpse/Glimpse/issues/632 for more details.

After reading through the GitHub issue, I added this to the appSettings section of my web.config file to get everything working:

<appSettings>
    <add key="Glimpse:DisableAsyncSupport" value="true" />
<appSettings>

See: Glimpse Issue: Allow users to disable use of Logical Call Context #632

like image 121
Alexander Avatar answered Sep 28 '22 02:09

Alexander