I made the simple hello world NODEJS Server. I have a enyo web service running in chrome that is trying to access the NODEJS server at http://localhost:3000

When is calls the onSuccess method, no data is loaded and the consule shows the following error

XMLHttpRequest cannot load http://localhost:3000/. Origin http://localhost:81 is not allowed by Access-Control-Allow-Origin.

I tested the nodejs server in the browser, it worked fine.

I tried to set the --disable-web-security, flag in chrome, it did not work.

Does anybody know how to fix this problem? If NOD.js is running on another server, would it work? This security is so confusing. Ted

link|improve this question

78% accept rate
feedback

1 Answer

up vote 3 down vote accepted

For security reasons, browsers limit the requests that a script may make via XMLHttpRequest.

Your requests will only succeed under the following 2 cases:

  1. The host of the URI that your script loads is the same as the host of the page containing the script (localhost:81 and localhost:3000 are different hosts);
  2. or, if your browser supports it, the server of the page being requested includes an Access-Control-Allow-Origin header which explicitly authorizes the host in question or all hosts to make XMLHttpRequests to it.

Try adding the Accesss-Control-Allow-Origin header to whatever is generating the response in your node code, adding a header in some code that looks like this:

response.writeHead(200, {
                         'Content-Type': 'text/plain',
                         'Access-Control-Allow-Origin' : 'http://localhost:81'

                         //allow anything by replacing the above with
                         //'Access-Control-Allow-Origin' : '*'

});
link|improve this answer
1  
Just a minor note, the Access-Control-Allow-Origin header doesn't allow wildcard regex (like in your commented out code), the value must either be a valid origin (like 'localhost:81'; in your example), or the value '*' (indicating any origin). – monsur Jan 15 at 15:24
Fixed. Thanks for spotting that. – ellisbben Jan 16 at 0:20
Hi,That did the trick, thank youi!!!!!!!!!!!!!!! – Ted pottel Jan 16 at 13:07
feedback

Your Answer

 
or
required, but never shown

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