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
4
votes
1 answer

Failed to generate binding redirects for 'localhost'. An item with the same key has already been added

Using ASP.NET WebForms in Visual Studio 2010, and adding Glimpse to my WebSite (not WebApp): I'm trying to install NuGet Package -> Glimpse. The install is pretty straightforward: PM> Install-Package Glimpse Successfully installed 'Glimpse…
Brett
  • 4,051
  • 2
  • 26
  • 39
4
votes
1 answer

EF.BulkInsert and Glimpse - not playing together well

I have an EF6 / ASP.NET 4.5 Webforms solution up and running, and now I need to add some functionality to allow bulk inserts from Excel files. I am aware that EF out of the box isn't optimized for bulk operations, so I looked around and found "EF…
marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
4
votes
0 answers

Some environments conflict with current Glimpse async support

I have just installed Glimpse in my application via NUGET. I am getting this exception: I do not know why this is happening, I am none the wiser looking in the Github reference and I do not know where in the web.config file to set…
arame3333
  • 9,887
  • 26
  • 122
  • 205
4
votes
0 answers

Glimpse SQL tab disabled

Glimpse SQL Tab is disabled. Has anyone faced this issue? I checked the following: Glimpse ADO.NET enabled in the configuration. All connection strings have provider name set as System.Data.SqlClient No additional requests in the history tab.
4
votes
1 answer

Why does Glimpse disable request validation?

I'm found that request validation was not working on my PC, which meant it's behaving differently to our live web servers. After some experimentation it seems Glimpse is the cause (the version with Glimpse has not yet gone live, which is why the…
NickG
  • 9,315
  • 16
  • 75
  • 115
4
votes
1 answer

How do I get Timeline data from Glimpse for reporting?

I am using Glimpse with MVC4, I would like to capture timeline tab data of Glimpse and store it in a DB or File for reporting purposes.
madhu
  • 103
  • 4
4
votes
2 answers

Glimpse not capturing ajax calls

I have an ASP.NET MVC5 single page web application that uses angularjs to make ajax calls to an ASP.NET Web API 2 application, all of them being visible in the Chrome developer tools Network tab. However, Glimpse does not capture the ajax calls,…
4
votes
2 answers

Glimpse + MVC5 + Sitecore 7.2

I have an ASP.NET MVC5 website and I have installed Glimpse.MVC5 using nuget. The website is running the latest version of the Sitecore CMS (7.2 rev. 140314). I haven't changed the Glimpse configuration at all apart from adding logging. When I go…
Christian Hagelid
  • 8,275
  • 4
  • 40
  • 63
4
votes
1 answer

How can I troubleshoot long Glimpse wire times in an ASP.NET Web site?

I'm using Glimpse v1.6.1 to troubleshoot performance problems on an ASP.NET Web site. The Glimpse heads-up display breaks down the request time into three categories: wire, server, and client. I'm seeing cases where the wire time is quite high (20…
Dan Jagnow
  • 1,175
  • 12
  • 28
4
votes
0 answers

Glimpse shows Duplicate EF queries

I'm having problems with my MVC 4 application running too slowly. I installed Glimpse to profile the application. I think I've found part of the problem: many of my EF queries appear to be running twice! Here's my HomeController that is pulling some…
solidau
  • 4,021
  • 3
  • 24
  • 45
4
votes
3 answers

How to display timeline information for routines used by controllers in glimpse/Asp.NET MVC

I am currently using Asp.Net MVC 4 and I would like to include the time of some routines used by my controllers in the glimpse's timeline tab. I know that I have to create an ITimeLineMessage Implementation and send the timing information with a…
alcoforado
  • 516
  • 1
  • 4
  • 17
3
votes
3 answers

how to solve Could not load file or assembly 'Glimpse.Core' or one of its dependencies. Access is denied

When I run my project it's just fine and later suddenly when I run I got this error. Because I no longer use it I remove the reference of all glimpse file and remove them from nuget pacakges too. I have remove all configure Glimpse have set but I…
Anirudha Gupta
  • 9,073
  • 9
  • 54
  • 79
3
votes
1 answer

Glimpse in Medium Trust

Is there any way to get Glimpse to work in Medium Trust? If I set in my web.config, I get a Security Exception: [SecurityException: Request failed.] System.Security.CodeAccessSecurityEngine.Check(Object demand,…
Samuel Jack
  • 32,712
  • 16
  • 118
  • 155
3
votes
1 answer

Getting Glimpse/RouteDebugger to work on Cassini 404 pages?

Do I need to do anything extra to get Glimpse to cough up details on a request that return the default 404 server error page on Cassini? By default 404 page, I mean the "Server Error in '/' Application" with a message of "The resource cannot be…
patridge
  • 26,385
  • 18
  • 89
  • 135
3
votes
1 answer

Glimpse Heads Up Display is not showing up when debugging in VS 2017

I installed Glimpse in my Web project that is using MVC5 via Nuget. I am using Visual Studio 2017 with Resharper. I also am running through IIS so it is giving me back app.company.local rather than using IIS Express and localhost. Could that be the…
1 2
3
21 22