vote up 1 vote down star
2

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)

flag

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

6 Answers

vote up 1 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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