vote up 6 vote down star
1

How do I display localhost traffic in Fiddler while debugging an ASP.NET application?

flag

76% accept rate

6 Answers

vote up 0 vote down

Probably the easiest way to monitor traffic to localhost is to replace "localhost" with "localhost." in the browser's URL bar. E.g.

http://localhost./MyApp/default.aspx
link|flag
vote up 3 vote down check

For an ASP.NET web site project:

1) Right-click the project and select Property Pages
2) Select Start Options
3) Under the Server section, click the "Use custom server" and edit the Base URL by replacing localhost with your computer's name.

link|flag
vote up 0 vote down

You should uncheck the checkbox:

Bypass proxy server for local addresses

Located at proxy configuration of Internet Explorer.

link|flag
It is currently unchecked – Michael Kniskern May 5 at 18:07
vote up 1 vote down

Check out this link...the 'workaround' is hacky, but it does work:

Tip for using Fiddler on localhost

link|flag
I tried that method and it prompts me with an IE credential pop up. I enter my AD user credentials and get a HTTP 401.1 Logon Failed. – Michael Kniskern May 5 at 18:11
I provided an answer with a suggestion in one of comments from the blog post. – Michael Kniskern May 5 at 18:21
vote up 1 vote down

Ensure that in your Fiddler Connections that localhost isn't in the "IE should bypass Fiddler for URLs that start with:" box.

link|flag
1  
The "IE should bypass Fiddler for URLs that start with" is empty. – Michael Kniskern May 5 at 18:04
vote up 8 vote down

try using this:

http://ipv4.fiddler/folder

instead of

http://localhost/folder

this also works with ports

http://ipv4.fiddler:12345/folder

link|flag

Your Answer

Get an OpenID
or

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