up vote 14 down vote favorite
12
share [g+] share [fb]

I want to develop JS on my windows machine. Do you know a browser where I can turn off SOP so I can develop? Firefox would be optimal.

Or if you know a proxy I could use for a SOAP/WSDL site it would be great too..

I am trying to work with the SOAPClient (http://www.codeplex.com/JavaScriptSoapClient)

link|improve this question

45% accept rate
I had the exact same desire for when I was developing a MySpace application. – Daniel Lucraft Dec 1 '08 at 10:15
feedback

11 Answers

In Firefox (might apply to other Gecko-based browsers as well) you can use the following JavaScript snippet to allow cross-domain calls:

if (navigator.userAgent.indexOf("Firefox") != -1) {
    try {
        netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead");
    } 
    catch (e) {
        alert("Permission UniversalBrowserRead denied -- not running Mozilla?");
    }
}

It looks like there's an issue created in the Chromium issue tracker for achieving the same functionality, so you could try starting Chrome with the argument --disable-web-security. I don't know which builds this works on exactly, but at least Nokia's WRT Tools comes with a Chrome installation that does in fact allow loading content from other sites.

link|improve this answer
This is, indeed, the way to test your code. Pops up a warning and then Just Works. Thanks so much! – Shermozle Jun 17 '10 at 6:32
1  
For the record, this is pretty much the equivalent Chrome/Chromium startup parameter string for development: "--allow-file-access-from-files --disable-web-security --enable-file-cookies --disk-cache-size=1 --media-cache-size=1" – miek Nov 11 '10 at 12:02
3  
This no longer works. – Josef Aug 1 '11 at 11:31
feedback

Make a page on your local server that calls the remote server and answer the same as the remote server.

Example, javascript calls local server for a JSON. The local server makes the call to the remote server for that JSON. The local server receives the JSON from the remote server and send it to the javascript.

link|improve this answer
feedback

Unfortunatelly, using

netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead");

has been disabled in Firefox 5.

https://bugzilla.mozilla.org/show_bug.cgi?id=667312

link|improve this answer
feedback

I created a Firefox extension that adds the CORS headers to any HTTP response.

link|improve this answer
Looks perfect, Josef -- thanks! – Peter Rust Sep 6 '11 at 17:54
feedback

Using the Chromium 13.07, you can start it with security disabled:

/usr/bin/chromium-browser --disable-web-security

That's on Ubuntu 11, but change the location as your system.

link|improve this answer
/opt/google/chrome/google-chrome --disable-web-security That worked for me on Linux Mint 11.04, Google Chrome 14.0.8 – so_mv Oct 24 '11 at 23:52
feedback

All of the given answers are good ones when it comes to getting around the same origin policy in production.

For development, there is no convenient way to "disable" this security check. There are workarounds (see other answers) or hacks (you could use Greasemonkey to wrap up the JavaScript and use their GM_xmlhttprequest as a temporary measure), but no way to actually "turn it off" as you describe.

link|improve this answer
feedback

You can also redirect a local port to the remote server and port via ssh.

link|improve this answer
feedback

I have no real experience with this, but FireFox 3.5 allows Cross-Site JS according to the W3C Cross-Origin Resource Sharing Draft.

See: https://developer.mozilla.org/En/HTTP_access_control

link|improve this answer
feedback

http://en.wikipedia.org/wiki/Cross-Origin_Resource_Sharing

link|improve this answer
The section of the article you link to doesn't seem to exist anymore. – Dusty Campbell Oct 13 '10 at 16:09
@Dusty Campbell: Thanks, I've updated the link. – DrJokepu Oct 13 '10 at 20:19
2  
That's why SO recommends that you quote the relevant portion of that document as part of your answer. Link with nothing else is a low quality answer. – toolbear Sep 16 '11 at 19:51
feedback

Firefox would be optimal.

If you can live with Internet Explorer, you may be able to use an .hta application

http://msdn.microsoft.com/en-us/library/ms536496(VS.85).aspx

(This is one of the ways the Selenium test automation tool deals with the issue)

link|improve this answer
feedback

see cross_origin_requests

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.