IE11 XMLHttpRequest: Network Error 0x2eff, Could not complete the operation due to error 00002eff

我的梦境 提交于 2019-12-12 10:50:43

问题


I have an ajax POST request like below,

$.ajax({
url: url,
type:"POST",
contentType:"application/html; charset=utf-8",
dataType:"html",
success: function(data) {
....
....
},
error: function() {
.....
}
}); 

It works perfectly fine when I try in chrome/firefox browsers any number of times.

In IE11,there are no issues when I use this function once or twice but when I invoke it multiple times continuosly (something like 10 to 12 times) I get the error as below in IE console.

SCRIPT7002: XMLHttpRequest: Network Error 0x2eff, Could not complete the operation due to error 00002eff.

I do not have this error for any of the local normal users but my application is getting stuck during performance tests when there are more number of hits sequentially.

The html content which I get in ajax call is very less. I have referred to this link in stack overflow but still unable to get the reason for this cause.

Application is deployed in Websphere Application Server 8.5. It's mandatory that the application should be compatible with IE11

来源:https://stackoverflow.com/questions/44913392/ie11-xmlhttprequest-network-error-0x2eff-could-not-complete-the-operation-due

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!