As an additional note to disable Cross Domain Proxy in the Ripple emulator ...
If you are calling an API, such as the Azure Mobile Apps API, be sure to allow external API calls by setting the "Access-Control-Allow-Origin" flag to "any".
In my scenario, I am developing an Ionic v1 app using the Azure Mobile app as a backend.
In web.config β
<configuration> <system.webServer> <httpProtocol> <customHeaders> <add name="Access-Control-Allow-Origin" value="*" /> </customHeaders> </httpProtocol> </system.webServer> </configuration>
source share