views:

2204

answers:

3

When I'm using Firebug 1.5, I'm getting 200 ABORTED errors on certain ajax requests. You can see this happen on this demo page by typing into the textfield. The functionality of the site seems to work just fine even with these errors. Is it safe to simply ignore these errors?

This wicket mailing list thread seems to indicate that the wicket ajax code is doing what it should. Also, this firebug issue seems to indicate there may be some concern. Not sure what to think.

A: 

I saw your demo page with firebug and seems to be working fine, there is no error to it and note that 200 response denotes that request went successful -> OK, it is not an error abort like you say. Thanks

alt text

Sarfraz
Were you using FireBug 1.5, or some other version? I'm running in Firefox on OSX snow leopard.
Tauren
@Tauren: yes i am using 1.5 on xp sp2.
Sarfraz
Strange that you don't see it. A response in this thread says they can see it too: http://code.google.com/p/fbug/issues/detail?id=2712 However, it looks like they think Firebug is doing the right thing in this case.
Tauren
@Tauren: please see my answer again where i show the response i get, there is no error you mention
Sarfraz
@Tauren: the error might be related to some other hidden tasks running or even your firefox or something
Sarfraz
See my comment on the question above.
Tauren
@Tauren: saw your comment, good and thanks.....
Sarfraz
A: 

I am also encountering this. I can see it on your demo site above on every request, but also I see it on one of my sites. I didn't notice this before, and I am sure I would notice it since I stare at the console for hours everyday. Gives some pretty mixed messages.

http://dl.dropbox.com/u/848795/Screen%20shot%202010-02-16%20at%2011.05.16%20PM.png

I am using a mac with firebug 1.5. This bug has been reported on the firebug bug list id=2712 but seems to be going nowhere. It's a tricky one. I tend to notice it when i have 2 simultaneous requests fired off at the same time, and perhaps one preemptively returns before the other. But this shouldn't cause an Abort message.

tpneumat
It looks like the next release of Firebug will once again ignore 200 abort codes. See my comment to the question. http://code.google.com/p/fbug/issues/detail?id=2712
Tauren
A: 

Sounds like aborts on requests that already were coming back with an OK. Firebug will filter these out on some future release, see the code change here:

http://code.google.com/p/fbug/source/detail?r=6127

sroussey