vote up 0 vote down star
1

Hello everyone,

I learned the Javascript concept of same source of origin, which means Javascript code could only access the host where it is downloaded from.

My confusion is, I have developed Javascript code, store the code locally into a .js file and call Javascript code from another local html file. When I use IE to open the local html file, I find the Javascript could access any host, like Google and Bing.

Here is my code. My confusion is, seems the Javascript same original security restriction does not apply to locally running Javascript?

http://stackoverflow.com/questions/1187535/javascript-xmlhttprequest-issue

thanks in advance, George

flag

42% accept rate

2 Answers

vote up 2 vote down

The same origin policy means that xmlhttp requests can be done to the same domain from which the js is loaded and executed, it is enforced by all browsers, also, if you are developing ajax code, there is no sense in executing it from a different domain from the one you will load the pages.

IE makes some exceptions on the SOP from local files, but these are edge situations and you shouldn't bother with them.

link|flag
Thanks Anonymous, do you mean for local js and html files, same source of origin policy does not apply? – George2 Jul 28 at 9:25
If yes, do you have any more documents to prove? – George2 Jul 28 at 9:25
1  
No, there are only a few exceptions to the SOP in IE, in FF you can disable it tweaking a preference in about:config see kb.mozillazine.org/Security.fileuri.strict_origin…. But I really think you should test your ajax code as it is meant to be used. – Anonymous Jul 28 at 9:38
Thanks but I think your document does not apply to IE? It is firefox? – George2 Jul 28 at 9:56
vote up 1 vote down

When you say 'access any host' what do you mean?

Do you mean that you receive notification of when your code loads a URL on google, or do you mean you can interrogate the HTML DOM of the page that loads.

I very much doubt you can do the later. I recall from experience doing this (a while ago mind) that receiving notification that a page has loaded should be possible - it's just that you simply can't see or modify anything ON that page.

link|flag
Thanks David, what I mean is I can send request and retrieve response from google.com. I think it breaks same origin policy? – George2 Jul 28 at 9:24

Your Answer

Get an OpenID
or

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