IE11 returns status 0 during Ajax POST operation from an iFrame (XMLHttpRequest: Network Error 0x2ee4) IE11 returns status 0 during Ajax POST operation from an iFrame (XMLHttpRequest: Network Error 0x2ee4) ajax ajax

IE11 returns status 0 during Ajax POST operation from an iFrame (XMLHttpRequest: Network Error 0x2ee4)


This error is be cause a ssl certificate is invalid. For solve this error see: [Link]

    $.get(window.api + 'Values', null, null).done(function () {//solution for IE shit    $.ajax({        type: 'POST',        url: https://api.yourdomain.com,        data: yourData,        success: function (data) {            //do something        },    });});


I was having the same issue when trying to do a POST call to our HTTPS WCF service (CORS) and looks like it's because of the SSL Certificate.I had to recreate mine with the following MakeCert Command line

makecert.exe -r -pe -n "CN=*.YourDomain.com" -eku 1.3.6.1.5.5.7.3.1 -ss my -sr localMachine -sky exchange -sp "Microsoft RSA SChannel Cryptographic Provider" -a sha256 -sy 12 "C:\EncryptionCert.cer"

installed the created Cert into Client and server trusted root cert Auth.

After choosing this cert for my Site binding, I was able to successfully call my HTTPS WCF service in IE 11.


I have the same issue too. at first i use make a get request before post. it solve the issue. but when i deep in, i find it's the in the internet option -》 Advanced options

  1. cancel check for server certificate revocation*
  2. cancel check for publisher certificate revocation*
  3. click ok
  4. restart your browser

i resolved the issue

enter image description here