Ticket #9829 (closed bug: invalid)
Status ok for aborted HTTP session when using ajax
| Reported by: | rumax | Owned by: | rumax |
|---|---|---|---|
| Priority: | low | Milestone: | None |
| Component: | ajax | Version: | 1.6.2 |
| Keywords: | Cc: | jaubourg | |
| Blocking: | Blocked by: |
Description
- Make a request to some resourse
- Using Fiddler break session before request
- Using Fiddler abort session
- Some new request are send to server - OK. All this requests are aborted too
- Get called success call back function. Expected - error callback function to be called
Change History
comment:2 follow-up: ↓ 3 Changed 23 months ago by timmywil
- Owner set to rumax
- Priority changed from undecided to low
- Status changed from new to pending
- Component changed from unfiled to ajax
Thanks for taking the time to contribute to the jQuery project! Please provide a reduced test case on http://jsfiddle.net that reproduces the issue experienced to help us assess your ticket.
Additionally, test against the jQuery (edge) version to ensure the issue still exists.
comment:3 in reply to: ↑ 2 Changed 22 months ago by anonymous
Replying to timmywil:
Thanks for taking the time to contribute to the jQuery project! Please provide a reduced test case on http://jsfiddle.net that reproduces the issue experienced to help us assess your ticket.
Additionally, test against the jQuery (edge) version to ensure the issue still exists.
$.ajaxSetup({
url: url,
type: "POST",
cache: false,
error: function (jqXHR, textStatus, errorThrown) {
_HttpLayer_callBack_Error(jqXHR, textStatus, errorThrown);
},
success: function (data, textStatus, jqXHR) {
_HttpLayer_callBack(data, textStatus, jqXHR);
}
});
$.ajax({
data: "action=disconnect"
});
comment:4 Changed 22 months ago by anonymous
Strange. Looks like I cannot reproduce it again (after PC reboot). Will provide more details if get the problem again.
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

Firefox 5.0 Used. In IE - only 1 request