views:

122

answers:

3

Hi,

For some reason I cannot monitor my asp.net page's request/responses to my local host in IE 8.0.

I use fiddler and I modified he url as this -by adding a dot before the semicolon-

http://localhost.:52749/JQuery/Chapter16-AJAX/PersonEditor.aspx

I get this error:

[Fiddler] Connection to localhost. failed. Exception Text: No connection could be made because the target machine actively refused it ::1:52749

Thanks

A: 

O.K. I have found how to work around this.

Go to Fiddler Options. Under General tab uncheck this:

'Enable IPv6 (If available)'

Then as usual add modify the URL that requests your files from your localhost by putting a dot after 'localhost' text.

It works!

burak ozdogan
@burak - So you don't have to mess around with the Rules in Fiddler at all as per the link in my answer?
Martin Smith
@Martin Smith : Anyway, thank you for the link; it is useful information.
burak ozdogan
A: 

See this link for how to set up Fiddler with Cassini. I think you need to do step 2.

Martin Smith
A: 

Your best bet is to just use http://ipv4.fiddler:52749 as your URL.

EricLaw -MSFT-
Or rather, [http://ipv4.fiddler:52749](http://ipv4.fiddler:52749)
CBono
Nice catch. Fixed.
EricLaw -MSFT-

related questions