Access control for cross site requests in Internet Explorer
Posted
by Aleksandar
on Stack Overflow
See other posts from Stack Overflow
or by Aleksandar
Published on 2010-01-11T20:29:05Z
Indexed on
2010/04/05
12:13 UTC
Read the original article
Hit count: 497
I am trying to make an AJAX call from several domains to a single one which will handle the request. Enabling Cross domain in Firefox and Chrome was easy by setting the header on the handling server:
header("Access-Control-Allow-Origin: *");
But this doesn't help enabling it in Internet Explorer. When I try:
httpreq.send('');
it stops with error Access denied.
How can this be enabled in Internet Explorer?
© Stack Overflow or respective owner