Hello
Sur IIS parfois on a XMLHttpRequest: Network Error 0x80070005, Access is denied
Ajouter ceci sur le web.config du site
<?xml version="1.0" encoding="utf-8"?> <configuration> <system.webServer> <httpProtocol> <customHeaders> <add name="Access-Control-Allow-Origin" value="*" /> </customHeaders> </httpProtocol> </system.webServer> </configuration>
Ci-dessous un super site :
https://enable-cors.org/server_iis7.html
Vous avez la solution par serveur web (apache , nginx etc etc ) :
https://enable-cors.org/server.html
Autre site : https://www.html5rocks.com/en/tutorials/cors/