| Author |
How to make synchronous ajax call in cross site domain
|
soni lal
Greenhorn
Joined: Jan 31, 2011
Posts: 25
|
|
Hi All,
I have to make one synchronous ajax call which solves cross site domain issue.
The ajax call using window.XMLHttpRequest throws error while making call in cross domain.
The ajax call using JSONscriptRequest supports only asynchronous ajax call.
I tried in third way. But it is also not be bale to make synchronous ajax call. Please find the code below:
url = url + '&callback=' + "ACFeedStatistics.callbackSuccess";
var head = document.getElementsByTagName('head')[0];
script = document.createElement('script');
script.id = 'xdShortcutContainer';
script.type = 'text/javascript';
script.src = url;
head.appendChild(script);
I am totally stuck.
Please help me.
Thanks in advance!!
|
 |
Eric Pascarello
author
Rancher
Joined: Nov 08, 2001
Posts: 15357
|
|
The same origin policy prevents it. It is to keep sites from contacting your bank, email, etc.
If the external site is under your control and you only care about modern day browsers, you can look into CORS.
If the site is not, only way around it is a serverside proxy on your server to fetch the content.
In reality, synchronous calls are a bad idea since they lock up the browser.
Eric
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56192
|
|
I agree with Eric. Unless you are able to write a 14-page justification for why the call should be synchronous, it should not be.
And as Eric suggested, you can use a server-side relay to perform the remote request. Or if the remote server supports JSONP, you can make the request directly.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
 |
|
|
subject: How to make synchronous ajax call in cross site domain
|
|
|