Bug Tracker

Modify

Ticket #9829 (closed bug: invalid)

Opened 23 months ago

Last modified 14 months ago

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

  1. Make a request to some resourse
  2. Using Fiddler break session before request
  3. Using Fiddler abort session
  4. Some new request are send to server - OK. All this requests are aborted too
  5. Get called success call back function. Expected - error callback function to be called

Change History

comment:1 Changed 23 months ago by rumax

Firefox 5.0 Used. In IE - only 1 request

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.

comment:5 Changed 22 months ago by jaubourg

  • Status changed from pending to closed
  • Resolution set to invalid

OK, so I'll close this as invalid for now. Just comment in here to ping us if you are finally able to reproduce the issue consistently.

comment:6 Changed 22 months ago by jaubourg

  • Cc jaubourg added

Please follow the  bug reporting guidlines and use  jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

View

Add a comment

Modify Ticket

Action
as closed
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.