Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SCRIPT7002: XMLHttpRequest: Network Error 0x2ee7, Could not complete the operation due to error 00002ee7

I got this error in Microsoft Edge. What does it mean? Searching online mostly gives me threads about people encountering the error in products.

like image 800
Luc Avatar asked Nov 25 '16 08:11

Luc


1 Answers

If the hostname that is targeted by the XMLHttpRequest call (www.mysite.something) can't be resolved on the machine doing the call, then error 00002ee7 will be reported.

Try doing nslookup www.mysite.something in a CMD prompt to check if that is indeed the case. If so, either fix the hostname to what it should be, or add an entry to the hosts-file of the machine, or get in touch with an Admin so they can make the DNS resolve the hostname.

like image 181
Peter B Avatar answered Jan 03 '23 02:01

Peter B