I'm using restangular
with an angularjs
app and calling a RESTful API server. However, this is bombing on IE9 and IE10. Are there any work arounds for this?
I've tried the stesps for IE10 here: http://blogs.msdn.com/b/ie/archive/2012/02/09/cors-for-xhr-in-ie10.aspx to no avail.
My angularjs
has a url like this: http://portal.mydomain.com and my api server has a url like this: http://api.mydomain.com.
I have confirmed that I get the appropriate headers back in the response:
access-control-allow-origin: http://portal.mydomain.com
access-control-allow-credentials: true
However, I keep getting the following:
SEC7118: XMLHttpRequest for http://api.mydomain.com/ required Cross Origin Resource Sharing (CORS).
Any help would be greatly appreciated!