DebugBar Forums
 
 HOME 
 DOWNLOAD 
 BUY 
 DOC / WIKI 
 FORUM 
 CONTACT 
Stay tuned : rss feed

Forum Home


advanced search

You are not logged in.

Announcement

Forums are now closed as we moved them to google groups. You can use the following Google Groups to discuss about DebugBar and IETester products:

#1 2008-07-11 19:41:41

qfox
New member

Unknown issue with http(s) tab

Yeah I don't know how or what this is due to, but here's what happens.

When you open a Google Maps (just go to maps.google.com) and move the map around, the http(s) tab will show repetitive calls for a cursor image from google. However, when checking http packets with Fiddler, they don't show up. Google seems to agree, as you can see here: http://code.google.com/p/gmaps-api-issu … %20ApiType

I'm using IE7 with just the debugbar and Companion.JS addons.

Am I missinterpreting the data?

Offline

 

#2 2008-07-12 02:05:02

fabrice
DebugBar Support

Re: Unknown issue with http(s) tab

Hi,

DebugBar is working correctly on this case ! The fact is that requests are made for the cursor image, but IE is getting its data from the cache, so it is not hitting the server at all. You can see that on the DebugBar because the line is grayed. Grayed entry means that IE got the info from its cache. Colored entry means IE got a "Not Modified" request from the server (that means, IE is asking the server, and than getting the info from its cache). Black entry means IE gets the info from the cache.

So in this case, IE is getting its info totally from the cache, that is why you don't see in under fiddler.

(I know I have to add documentation on the wiki for the http tab.... Sorry for that not being up to date)

Hope this helps.

JFR

Offline

 

#3 2008-07-12 09:49:56

qfox
New member

Re: Unknown issue with http(s) tab

Ah, that clears it up big_smile I figured it had to be something like that. Thanks smile

Offline