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?

link|improve this question

feedback

2 Answers

This is usually due to the fact that your source IP Address is not allowed in the web.config section for Glimpse. I just ran in to this issue yesterday.

Look for this in your web.config file

 <glimpse enabled="true">
<ipAddresses>
  <!-- List of IP addresses allowed to get Glimpse data. Optional. localhost (IPv4 & IPv6) by default -->
  <add address="x.x.x.x"/> <!--The ip of your machine -->
  <add address="::1"/>
</ipAddresses>

link|improve this answer
1  
nice to see no response on this. :) Offensive :) – CrazyCoderz Jan 24 at 3:36
This worked for me. I was surprised because I didn't even have these additional settings, so I figured why bother. But adding them did the trick. – Denis Jan 31 at 20:23
This seems like an onerous task for a project with many developers... is there a better way than to have everyone supply their ip in web.config, or am I missing something? – DMac the Destroyer Apr 6 at 14:51
This hasn't helped for mine, I've added the ip address in, but I'm still getting a 403 :( – Glenn Slaven Apr 16 at 1:18
Can you fix the formatting? I tried but my edit was auto-rejected. – Alexander Garden May 25 at 19:15
feedback

I got an error like this when trying to access http://leniel-pc:8083/glimpse.axd:

403 Forbidden
Ensure 'aa90::edad:55a5:7777:cd2c%11' is configured for Glimpse access.

After doing this:

<glimpse enabled="true">
  <ipAddresses>
    <!-- List of IP addresses allowed to get Glimpse data. -->
    <!--The ip of your machine -->
    <add address="aa90::edad:55a5:7777:cd2c%11"/>
  </ipAddresses>
</glimpse>

Problem solved! :D

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.