I just added Glimpse.MVC3 to an MVC3 app I'm battling to deploy to IIS / debug on IIS (7.5), but when I try to activate it via Glimpse.axd, I get a 404 not found. I am appending the url to my route, and no longer attempting it as an absolute url
Asked
Active
Viewed 1,373 times
2
-
Can you copy your web.config into your question? – nikmd23 Jul 12 '11 at 22:08
-
While preparing a smaller example I had success with the example, so I'll work back from there to my larger, dysfunctional Glimpse target. – ProfK Jul 13 '11 at 00:26
-
Sounds good ProfK, I'll keep an eye on this page just in case. – nikmd23 Jul 13 '11 at 11:56
2 Answers
1
Look through this: http://getglimpse.com/Help/Configuration
In web.config make sure it is enabled
<glimpse enabled="true" loggingEnabled="true" requestLimit="15">
IP Addresses ...
<ipAddresses>
<add address="127.0.0.1" />
<add address="192.168.100.59" />
<add address="::1" />
<add address="fe80::f17e:d177:359f:6cee%14" />
</ipAddresses>

Tom Stickel
- 19,633
- 6
- 111
- 113
-
404 errors fixed! Goodbye /Glimpse/Config, hello /Glimpse.axd The short version, is that /Glimpse/Config is being deprecated and being replaced with /Glimpse.axd – Tom Stickel Jul 13 '11 at 00:15
-
forgive me for being somewhat wary, but you say 'make sure it is enabled', and your config example has two 'false' values for 'enabled', and isn't a 'pluginBlacklist' for plugins you *don't* want? Then to get back to my question, it's with /Glimpse.axd I'm getting the 404. – ProfK Jul 13 '11 at 07:10
-
I must have pasted the wrong line. Sorry... set Enabled to true, requestlimit is for Ajax and Remote tabs and thus how many request are stored. loggingenabled set to true ... It is for internal debugging. Yes, make sure that you don't blacklist a plugin that you don't want. That is what I get for copy and paste .... So Sorry. – Tom Stickel Jul 13 '11 at 16:58
0
Make sure that the module is registered properly in your web.config, remember you will set it up differently in classic vs integrated mode.
You also need to delpoy Glimpse.Core.dll to your applications bin directory.

nikmd23
- 9,095
- 4
- 42
- 57
-
I don't know what properly registered is, but it's there just as NuGet put it there, and it is most definitely in my bin directory, next to Glimpse.MVC3 – ProfK Jul 12 '11 at 20:39
-
-
Yes, brand new VS 2010 and MVC3 installation, and I've re-registered .NET 4 with IIS. – ProfK Jul 12 '11 at 21:18