That’s Cross Domain Request Issue a Browser Security Feature. You can disable CORS in the web.config of your app servers. Add the following appSetting
<add key="CorsOrigins" value="*" />
NOTE THIS IS A POTENTIAL SECRITY RISK. Read about CORS before making this change.