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

I've set up Cross-Origin Resource Sharing on a server (Jetty using the CrossOriginFilter) and it works perfectly on IE8 and Firefox. On Chrome, it just ... doesn't.

  $.ajax({ url : crossOriginURL,
    type : "GET",
    error : function(req, message) {
        alert(message);
    },
    dataType :  "json" } );

The error function is invoked, with the helpful message "error". It seems to be making the request, but without any of the headers you'd expect. If the URL is from the same origin, it works fine.

share|improve this question
Malvolio and CuSS are same person? – Cipi Aug 30 '10 at 12:05
No! Of course not! LOL. I had the same problem has him today morning. It was urgent to me to resolve that, so to don't repeat the question, i've bounty on his question, but since I've resolved it now, i had answer it. Sorry for my bad english. – CuSS Aug 30 '10 at 14:16

4 Answers

I have solved my problem this way:

Add this to your PHP Code:

header("Access-Control-Allow-Origin: *");
header("Access-Control-Allow-Credentials: true ");
header("Access-Control-Allow-Methods: OPTIONS, GET, POST");
header("Access-Control-Allow-Headers: Content-Type, Depth, User-Agent, X-File-Size, X-Requested-With, If-Modified-Since, X-File-Name, Cache-Control");

Or add these headers to your response.

Problem: The browsers ask to the server for options before your main request, to check if the site has the option to allow comunication with different origin, and then if yes, they do your POST or GET request.

EDIT: Try this (without your hack) to see if you're receiving data...

$.ajax({ url : crossOriginURL,
    type : "GET",
    error : function(req, message) {
        alert(message);
    },
    success : function(data) {
        alert(data);
    },
    dataType :  "text"} );
share|improve this answer
can you mark as right answer please? – CuSS Sep 1 '10 at 16:38
Actually, what finally worked for me is xhr.setRequestHeader('Content-Type', 'text/plain'); – Malvolio Sep 18 '10 at 19:15
3  
In that case, can you post your own answer and mark THAT as the correct one? (I don't have this particular problem, but I do like to keep the list of unanswered questions clean) – ssokolow Sep 19 '10 at 5:19
my answer works to all browsers. You don't need to request custom headers because who restricts or not the page is server and browser engine... if you were receiving a blank response, problaly it was bad dataType on ajax, that happens because you didn't choose the right dataType. Read about dataType in api.jquery.com/jQuery.ajax . in ajax options array place the {dataType:"text"} – CuSS Sep 21 '10 at 9:28
The solution to set the content type to plain didn't work for me (I get an error indicating I can't set that on the request). And I'm not writing my own server service, I'm using another one online (twitter). Is there another solution using JavaScript only? I also tried setting the "origin" to something specific using the same technique as above (setting the request header), but got an error. My code is working just fine in Safari but fails in Chrome, even though all indications are that Chrome supports CORS. – Elisabeth May 30 '11 at 17:57
show 2 more comments

It looks like the original poster may have resolved their issue, but for anyone having the same issue as commentor Elisabeth, I believe the problem may be that Chrome refuses to set a an Origin header for a CORS request if you are running the request from a local file. It won't even let you explicitly override the Origin header. This causes the server to see "Origin: null", which results in a 403 in most cases. Firefox apparently has no such constraint, as I've found after much hair-pulling.

If you absolutely need to use Chrome in this case, you can resolve your issue by running a webserver locally and always accessing your file via http: instead of via file:.

share|improve this answer
1  
A less intrusive (albeit temporary) resolution can be obtained by running Chrome with cross-origin security turned off: path/to/chrome --disable-web-security. Warning: if you continue to use unsecured Chrome for your regular browsing, either nothing will happen or your bank account will be hacked, so good luck with that. – Malvolio Oct 31 '12 at 19:43
up vote 1 down vote accepted

what finally worked for me is xhr.setRequestHeader('Content-Type', 'text/plain');

share|improve this answer

Chrome doesn't work with multiple ACAO headers.

Don't know if you set multiples, but this might help others in the future.

If you need multiples, for now, you have to set it to *.

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.