Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to set up a website to run on the local file system and call an XML file, but I'm getting access control origin errors:

Origin null is not allowed by Access-Control-Allow-Origin.

I've tried switching the datatype to jsonp and setting crossdomain to true:

$j.ajax({
            crossdomain: true,
            url: 'xml/vehicles.xml',
            dataType: "jsonp",      
            success: function( vehicleXML ) {
                supertree.parseVehicles($j(vehicleXML).find("vehicles"), null);
                supertree.vehiclesLoaded = true;
                if(supertree.scenesLoaded) supertree.ready();
            }
        }); 

But it doesn't work. Any idea on how to accomplish this? Preferably without a proxy?

share|improve this question
Since you are working from the filesystem, there are a whole new list of restrictions and cross-browser differences. For example, Chrome won't allow you to perform any XMLHTTP request to the filesystem unless you run chrome with the correct flag. Other browsers may allow the request without issue. Changing to JSONP instead of XML will be the most cross-browser way to handle it. – Kevin B Apr 24 '12 at 15:41

1 Answer

up vote 1 down vote accepted

Same origin policy prevents you have accessing the data. Either the server you are requesting data from needs to enable CORS or you need to use a proxy on your server to get the data from the other server.

Other option is to change the XML data into a JSONP format. It is not as easy as telling jQuery to make a JSONP request. The data formats are totally different and the server has to return that format, the JavaScript cannot do anything about it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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