Zum Hauptinhalt gehen

Kommentare

3 Kommentare

  • Permanently deleted user
    Hi,

     

    I have the same error.

     

    Did you find any solution?

     

    Thanks,

     

    Marco Grimaudo
    0
  • Permanently deleted user
    Solved enabling CORS for the rest application in iis.

     

    Modify the web.config to include:

     

     

    <?xml version="1.0" encoding="utf-8"?>

     

    <configuration>

     

    <system.webServer>

     

    <httpProtocol>

     

    <customHeaders>

     

    <add name="Access-Control-Allow-Origin" value="*" />

     

    </customHeaders>

     

    </httpProtocol>

     

    </system.webServer>

     

    </configuration>

     

     
    0
  • Permanently deleted user
    Marco Grimaudo's answer worked for me. I was having the same problem.
    0

Bitte melden Sie sich an, um einen Kommentar zu hinterlassen.