I need to temporally allow cross domain XMLHttpRequest. Changing firefox security setting seems to be the way to go. But I've tried with this and this but they didnt work. Has anyone been able to configure this before? Thanks.
feedback
|
|
For modern browsers, you may try the following approach: https://developer.mozilla.org/en/HTTP_access_control In short, you need to add the following into the
Note that the If you want any site access your server in Ajax, use | ||||
|
feedback
|
|
Here is the thing, there is no way to "temporarily" disable cross-domain XMLHttpRequest, if you can disable it temporarily then it can be disabled permanently. This is a rather common problem in the modern-day of AJAX programming and is most often solved using the technique known as cross-domain scripting. The idea here being is that if you call out to a cross-domain script it returns JavaScript (JSON) results that are then passed on to a function on your end. Here is some sample code to illustrate how it may look from a JavaScript code perspective:
You will then define a function in your code that receives the data and in the server you "handle" the callback case, here is the client-side JavaScript:
And on the server side, here i'm giving a PHP example but this can be done just as easily in Java or what-ever your server-side technology is:
Note that what you are generating on the server side winds up being some JavaScript that gets executed on the client side. | |||||
feedback
|
|
Have you tried using jQuery's ajax request? As of version 1.3 jQuery supports certain types of cross domain ajax requests. Quoting from the reference above:
| |||||
feedback
|
|
I've tried using that 'UniversalBrowswerRead' thing too and it didn't work. You might be able to add an 'allow' header, but I haven't actually tried doing it yet. It's pretty new. You can find more information here | |||
|
feedback
|
|
I'm facing this from This particular case should not be any safety concern, but only Safari allows this. Here is the best discussion I've found of the issue. | ||||
|
feedback
|
|
If you just don't want to waste your time on cross-domain issues during development and testing of your app you can use addon Force CORS for FF. | |||
|
feedback
|
|
What about using something like mod_proxy? Then it looks to your browser like the requests are going to the same server, but they're really being forwarded to another server. | |||
|
feedback
|
|
I used Fiddler as a proxy. Fiddler redirects localhost calls to a external server. I configured Firefox to use manual proxy (127.0.0.1 port 8888). Fiddler capture the calls and redirect them to another server, by using URL filters. | |||
|
feedback
|