vote up 1 vote down star

I am looking for some way to elegantly inspect XmlHttpRequests in IE8. I wouldn't mind a plugin or an external program. I have yet to find anything that works nearly as well as Firebug.

I have already tried Julien Couvreur's bookmark debugger, but it did not seem to work with Prototype. Julien's Script

flag
What exactly are u trying to look at in the Request? – BigBlondeViking Jul 14 at 15:37
Client request headers, server response headers, payload, request state, etc. – Raegx Jul 14 at 17:21

3 Answers

vote up 3 vote down check

Fiddler is the main tool for Request Response Debuggin in IE... ( FireBug in FireFox )

http://www.fiddler2.com/fiddler2/

link|flag
I have used Fiddler before and completely forgot about it. For those browsing this question it snag's IE's network connection and acts like a local proxy routing all IE traffic through it. This is probably as close to Firebug's offerings as one can get. – Raegx Jul 14 at 17:25
The mixture of IE Developer Tools (F12 in IE8 ) and fiddler you get far more support than in the old IE 6 days... Still wishing for built-in DOM viewer like FireBug... ( makes writing JS far more easy ) – BigBlondeViking Jul 14 at 17:43
vote up 0 vote down

Firebug Lite has some XHR support. I am still a bit hazy on how to use it though; I think you give it a javascript variable reference that resolves to a XHR object and Firebug will then follow that element.

You can of course also sprinkle firebug console messages throughout your code to try and follow what is going on with IE XHR calls.

link|flag
vote up 1 vote down

Microsoft Visual Studio has always worked great for debugging Javascript in Internet Explorer.

link|flag
I have used VS to debug JS in IE, However, I am asking for a way to observer XmlHttpRequests non intrusively. I think either I did not properly convey what I am looking for or there is functionality inside of VS I am not aware of that allows one to casually observe XmlHttpRequests as the occur. – Raegx Jul 14 at 17:24
Ah, sorry. Guess the word 'debugging' in your title and the explicit reference to IE8 and the XHR Javascript object got me confused :) For looking at (browser and Javascript independent) HTTP traffic, web debugging proxies like Fiddler or Charles, or packet sniffers like Wireshark work great. – Josef Jul 14 at 18:22

Your Answer

Get an OpenID
or

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