Questions tagged [glimpse]

What Firebug is for the client, Glimpse does for the server... in other words, a client side Glimpse into what's going on in your ASP.NET server.

Glimpse allows you to debug your ASP.NET web site or web service right in the browser. Glimpse allows you to "Glimpse" into what's going on in your web server. In other words what Firebug is to debugging your client side code, Glimpse is to debugging your server within the client.

Project Links:

319 questions
73
votes
3 answers

Should I deploy Glimpse to the production site?

I recently added the Glimpse Debugger package to my project. This added a reference to the Glimpse dll, and modified some Web.Config. I like my project as much the same as possible on my development and production environment. So is it save/wise to…
GvS
  • 52,015
  • 16
  • 101
  • 139
20
votes
1 answer

Why doesn't the Route tab appear in Glimpse Web Debuggger?

I've just installed Glimpse Web Debugger for ASP.NET (Beta) - version 0.82. I installed it via the Package Manager console in Visual Studio 2010 and the installation was successful. I'm trying to test it out using the ASP.NET Development server and…
TrumanCode
  • 582
  • 1
  • 4
  • 13
16
votes
3 answers

Disabling Glimpse on production and to glimpse.axd

How can I limit access to glimpse.axd when deploying to production? I am using a custom RuntimePolicy to ensure that glimpse is not enabled in production however I want to ensure that users do not get to the axd as well. If we were using…
MrMVCMan
  • 490
  • 2
  • 7
  • 20
15
votes
2 answers

Let the mvc-mini-profiler ignore Glimpse requests

I'm using mvc-mini-profiler along with Glimpse. The problem is glimse is flooding the profiler output with glimpse requests. Is there any way to ignore all request made by glimpse ?
user256034
  • 4,289
  • 5
  • 37
  • 44
15
votes
1 answer

Unable to cast object of type 'Glimpse.Ado.AlternateType.GlimpseDbConnection' to type 'System.Data.SqlClient.SqlConnection'

I am getting an "System.InvalidCastException occurred" exception where I am using the EF 6 asynchronous functionality. The message is: Unable to cast object of type 'Glimpse.Ado.AlternateType.GlimpseDbConnection' to type…
arame3333
  • 9,887
  • 26
  • 122
  • 205
13
votes
6 answers

Installed glimpse attempting to access glimpse.axd and receive 404 error?

It is a simple as that I installed glimpse following this page. : http://getglimpse.com/About/QuickStart I then attempt to navigate to http://myApp/glimpse.axd and receive 404 error not found. As you can see in the Quickstart there is this…
Bill Blankenship
  • 3,316
  • 6
  • 43
  • 73
10
votes
2 answers

Glimpse WebAPI Support

Does Glimpse (the diagnostics plugin for .NET) support diagnostic information from ASP.NET Web API? I installed it and ran against the website, it captures ASP.NET MVC requests and returns information about them but I don't see any Web API request…
govin
  • 6,445
  • 5
  • 43
  • 56
8
votes
3 answers

How can I get Glimpse to work with EF6?

EDIT: stack trace added at bottom. I have an ASP.NET MVC 5 project that uses a SQL Server database via Entity Framework 6. I added Glimpse (and Glimpse.MVC5) to the project, and that works fine. However, when I add Glimpse.EF6, my application throws…
Gary McGill
  • 26,400
  • 25
  • 118
  • 202
7
votes
3 answers

Glimpse output not appearing on MVC 4

I have been through all the instructions and FAQ's regarding how to get glimpse to work. I am however running MVC 4.... I have installed the Glimpse.MVC package as well as straight Glimpse. It all configures just fine. I even added my own IP to the…
7
votes
2 answers

Can Glimpse provide diagnostics when using the SqlClient namespace classes

I've downloaded Glimpse and the Glimpse.ADO extension and installed it on my test instance. I thought I'd get a capture of any sql that was executed, but it seems like it doesn't capture commands with the way our code is written. using…
Aheho
  • 12,622
  • 13
  • 54
  • 83
6
votes
1 answer

How to use Glimpse in Orchard CMS

I'm new to Orchard CMS. I want to use Glimpse in Orchard cms and config it as quick start, but when I go to http://localhost:30320/OrchardLocal/glimpse.axd it show error message "The resource cannot be found" Anyone know how to resolve it, please…
Ha Doan
  • 611
  • 6
  • 20
6
votes
2 answers

Glimpse.axd 403ing On IIS

When trying to access /Glimpse.axd after I've published to IIS (7.5), I'm now receiving a 403 Forbidden response. Is there a setting in IIS that disables access to .axd files? Or is this something else entirely?
6
votes
3 answers

Glimpse.AspNet.pdb not loaded

I have an MVC application which uses Glimpse and for the last couple days I haven't been able to solve it. It throws a null reference at the start of each run. I have tried clearing caches, reinstalling the nuget packages, and tried clearing out the…
graham
  • 91
  • 3
6
votes
3 answers

Glimpse Not working at all

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…
Shiloh
  • 1,816
  • 4
  • 24
  • 29
6
votes
1 answer

How does Glimpse calculate the timings for server, wire and client?

Glimpse's HUD provides a very useful view of the timings -- and they seem to tie into the various browser's developer tooling for network capture. If I take a simple implementation of a custom HttpModule as detailed here by Phil Haack, I get…
Jarfish
  • 113
  • 1
  • 5
1
2 3
21 22