views:

44

answers:

1

I got a line in fiddler2 looking like this:

ICON # status protocol  host               url
XXX  3 200    HTTP      www.myserver.com  /images/save.png

where XXX shows a forbidden icon like this.

Actually i am analizing a loading problem in on of our customers intranets.

Can anyone plesae tell me what this icon stands for?

+3  A: 

That icon means that the session was aborted by the client, Fiddler, or the Server (see the documentation).

Stargazer712
Thx, very much, i was looking on the fiddler page, but wasn't able to find it. Do you have any idea how i can find out which one (client, Fiddler or Server did abort the session) ?
Thariama
If you see the response code of 200, and you haven't configured Fiddler to abort the traffic, then it was the client that caused the abort. This would happen if, for instance, the user navigated the browser to a different page before the graphic had been downloaded fully.
EricLaw -MSFT-