I installed Glimpse for MVC5 through Install-Package Glimpse.MVC5
I enabled Glimpse on the Glimpse configuration page: /Glimpse.axd
When you try to get to my site, nothing happens. If I turn off Glimpse, the site will work as expected.
There are no error messages or anything related to HTTP in Chromeβs network tools, only the request: data:text/html,chromewebdata with the response "Failed to load response data"
This is what Glimpse put into my web.config when I installed it. Not sure how to fix this problem.
<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" />
source share