OHDSI Home | Forums | Wiki | Github

CORS Error - Atlas

Hey All,

Got to the bottom of this one!

for anyone else who hits CORS issues similar to this thread:
in C:\Git\OHDSI\Atlas\js\config-local.js
I had the following in the URL field:
url: ‘http://localhost:8080/Webapi/
This is case sensitive and needs to be
url: ‘http://localhost:8080/WebAPI/

Thanks for your help on this everyone! Sorry it turned out to be a simple issue.

Thanks, John

1 Like

The Same Origin Policy (SOP) is the policy browsers implement to prevent vulnerabilities via Cross Site Scripting (XSS). In other words, the browser would not allow any site to make a request to any other site. It would prevent different origins from interacting with each other through such requests, like AJAX. This policy exists because it is too easy to inject a link to a javascript file that is on a different domain. This is a security risk - you really only want code that comes from the site you are on to execute and not just any code that is out there.

The Cross Origin Resource Sharing (CORS) is one of the few techniques for relaxing the SOP. Because SOP is “on” by default, setting CORS at the server-side will allow a request to be sent to the server via an XMLHttpRequest even if the request was sent from a different domain. This becomes useful if your server was intended to serve requests from other domains (e.g. if you are providing an API).

  • JSON with Padding is just a way to circumvent same-origin policy, when CORS is not an option. This is risky and a bad practice. Avoid using this.

  • If you want to bypass that restriction when fetching the contents with fetch API or XMLHttpRequest in javascript, you can use a proxy server so that it sets the header Access-Control-Allow-Origin to *.

  • If you need to enable CORS on the server in case of localhost, you need to have the following on request header.

  • Access-Control-Allow-Origin: http://localhost:9999

t