IE10/11 Ajax XHR error - SCRIPT7002: XMLHttpRequest: Network Error 0x2ef3

前端 未结 10 1479
走了就别回头了
走了就别回头了 2020-11-30 03:56

I\'ve been working on this problem for a few days and reaching out on this forum since I feel like I\'ve exhausted my options. I have a form hosted on a Drupal 7 website an

10条回答
  •  天涯浪人
    2020-11-30 04:22

    Just want to give my take on what was the root cause of this issue for me.

    We have an Angular2 app, that is calling our NodeJS REST api. The rest API then calls another service (SOAP I believe).

    We found out that our SOAP service did not have the endpoint(?) in only one environment (worked everywhere else). When the NodeJS api was calling the SOAP service, the soap service was returning an error saying 'X is not a function'. When the error response was returned to NodeJS, it did not have the proper error/exception handling, so it was completely killing the service. Thus, the UI was not getting a response.

提交回复
热议问题