Problem accessing remote CSV using dojo - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T00:34:28Z http://stackoverflow.com/feeds/question/477053 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/477053/problem-accessing-remote-csv-using-dojo 1 Problem accessing remote CSV using dojo Animesh 2009-01-25T02:05:54Z 2009-01-25T02:26:06Z <p>Hi, I am trying to create a website where I host my data on google spreadsheets, and show data to the user in his browser using dojo.</p> <p>However, I am getting the error</p> <pre><code>Access to restricted URI denied" code: "1012 </code></pre> <p>when the browser encounters:</p> <pre><code>var stateStore = new dojox.data.CsvStore( {url: "http://spreadsheets.google.com/pub?key=p0jvMlPF5YqcUllrbwZzQBg&amp;output=csv&amp;gid=0", label: "name"}); </code></pre> <p>while replacing it with a locally stored copy of the same CSV works fine.</p> <p>From what my google searches told me, this is due to security restrictions in modern browsers which try to protect you from cross-site scripting attack. Of course, I would like some way to be able to "whitelist" this domain for the purpose of my page. </p> <p>Any suggestions?</p> <p>The Full HTML Code is</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8"&gt; &lt;style type="text/css"&gt; @import "dojo-release-1.2.3/dijit/themes/tundra/tundra.css"; @import "dojo-release-1.2.3/dojo/resources/dojo.css" &lt;/style&gt; &lt;script type="text/javascript" src="dojo-release-1.2.3/dojo/dojo.js" djConfig="parseOnLoad:true, isDebug: true"&gt;&lt;/script&gt; &lt;script&gt; dojo.require("dojox.data.CsvStore"); dojo.require("dijit.Tree"); dojo.require("dojo.parser"); &lt;/script&gt; &lt;script type="text/javascript"&gt; var stateStore = new dojox.data.CsvStore({url: "http://spreadsheets.google.com/pub?key=p0jvMlPF5YqcUllrbwZzQBg&amp;output=csv&amp;gid=0", label: "name"}); // var stateStore = new dojox.data.CsvStore({url: "states.csv", label: "name"}); &lt;/script&gt; &lt;/head&gt; &lt;body class="tundra"&gt; &lt;!-- &lt;div dojoType="dojox.data.CsvStore" url="http://spreadsheets.google.com/pub?key=p0jvMlPF5YqcUllrbwZzQBg&amp;output=csv&amp;gid=0" jsid="stateStore" /&gt; --&gt; &lt;div dojoType="dijit.Tree" store="stateStore" labelAttr="name" label="States"&gt;&lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Thanks in advance, Animesh</p> http://stackoverflow.com/questions/477053/problem-accessing-remote-csv-using-dojo/477065#477065 2 Answer by Jonathan Lonowski for Problem accessing remote CSV using dojo Jonathan Lonowski 2009-01-25T02:26:06Z 2009-01-25T02:26:06Z <p><a href="http://en.wikipedia.org/wiki/Same_origin_policy" rel="nofollow"><strong>Same origin policy</strong></a>.</p> <p>The domain used to access the page must match the domain requested. So, you can't access spreadsheets.google.com from somewhere else using JavaScript solely.</p> <p>The workaround that I hear about most is a <a href="http://ajaxpatterns.org/Cross-Domain_Proxy" rel="nofollow"><strong>cross-domain proxy</strong></a> -- a server-side script that GETs (or POSTs) to another domain and echoes the results back to JavaScript.</p>