Access is denied error on XDomainRequest

I found the reason of this problem. As stated in Point 7: Requests must be targeted to the same scheme as the hosting page This restriction means that if your AJAX page is at http://example.com, then your target URL must also begin with HTTP. Similarly, if your AJAX page is at https://example.com, then your target … Read more

CORS with jQuery and XDomainRequest in IE8/9

POST method is supported, and to make a cross-domain https:// request your calling page would also need to be loaded over https. This is the best article I have found which explains these and other limitations of XDomainRequest in detail: http://blogs.msdn.com/b/ieinternals/archive/2010/05/13/xdomainrequest-restrictions-limitations-and-workarounds.aspx

tech