Intermittent XMLHttpRequest: Network Error 0x2f7d, Could not complete the operation due to error 00002f7d.-Collection of common programming errors

Hi,

I managed to reproduce the error in a standalone environment.  It seems to be concurrent xhr requests to any https site.  I can do async http calls or non async https calls but not concurrent async https calls.  In these examples I used jQuery as it doesn’t crash the app completely.  The same happens with WinJS.xhr except that the app stops the first time it encounters the error.

This works:

for (var i = 0; i < 200; i++) {
    $.ajax({
        url: 'https://www.google.com',
        async: false,
        error: function(data) {
            console.log("error");
        },
        success: function(data) {
            console.log("success");
        }
    });
}

But this fails:

for (var i = 0; i < 200; i++) {
    $.ajax({
        url: 'https://www.google.com',
        async: true, //