I have an angularjs application that runs in a webview that is meant for a Windows Surface device (I am also using IE 11 instead of Adobe AIR webkit).
I want to load a local XML file from the app and I am using $http.get()
for that.
The request is rejected with an Access is denied
message.
I have tried using jQuery, Ajax and even XMLHttpRequest(); / XDomainRequest()
but all throw the same error.
Looks like IE has cross domain issues for HTTP requests.
The HTTP get requests works well even on Mobile devices but is a real pain on IE :(
Is there any way to programmatically circumvent the additional security imposed by IE?
Your inputs are much appreciated.