Cross-Origin Resource Sharing allows browsers' XMLHttpRequest object to make cross-domain requests. Supported in most modern browsers.

learn more… | top users | synonyms

0
votes
1answer
9 views

Sencha Touch Ajax Request Error: Origin null is not allowed by Access-Control-Allow-Origin.

I am making an Ajax request to remote server and sending parameters as POST method. But I am getting following response: **"MLHttpRequest cannot load ...
1
vote
0answers
29 views

Evil Firefox Error — “A parameter or an operation is not supported by the underlying object”

I'm trying to figure out what the hell is going on here. I've been at it for hours now and can't seem to get a grip on why this is happening. I'm making a few ajax calls, and I keep getting this ...
0
votes
0answers
8 views

How does reddits authentication work?

I'm trying to run a page on site.com and then do authentication with ajax on ssl.site.com. I can't get it to work without doing a CORS request and I want to support IE8 and 9. I've tried many ...
3
votes
2answers
37 views

CORS synchronous requests not working in firefox

The official documentation of jQuery ( async ajax section ) says that: Cross-domain requests and dataType: "jsonp" requests do not support synchronous operation. However this works in all ...
1
vote
0answers
15 views

CORS request to IP not domain name

How can I make a CORS XMLHttpRequest directly to an IP address, not an domain. For example, i load my web page from example1.org. I try to make a CORS request to http://example2.org/, thats working. ...
0
votes
1answer
55 views

$http.get is not allowed by Access-Control-Allow-Origin but $.ajax is

I have a problem fetching json from a remote server that I control. I have 2 web applications, one serving data and running on port 3311, the other, requesting data, is running on port 5000. using ...
0
votes
2answers
23 views

$http.transformRequest with results from an asynchronous function

I have an angular application that uses the $http service to fetch data from a remote server. Under certain circumstances I need to append a custom header value to each request, and I would like to ...
1
vote
0answers
28 views

Cant set cookie for remote domain with AJAX (CORS)

I have two domains: login.com and site.com On the page login.com/ajax.htm I have the following code: <script type="text/javascript" ...
0
votes
2answers
29 views

Asp.net Webapi Check originator's domain

I'm developing a webapi and I'm currently performing basic authentication, but I also want to check that the api is being called from an specific domain, how can I check if the call to the api was ...
0
votes
1answer
35 views

Cross-origin resource sharing for Tomcat 7 [duplicate]

I am new to Cross-origin resource sharing and I want to enable it in a Tomcat 7.0.39 server. Anybody can give me some hint how can this be achieved? I want to set the header universally for all ...
1
vote
1answer
29 views

Rails app on Heroku - Issue with CORS

I have a Rails app on Heroku with this configuration: module MyAppApi class Application < Rails::Application # other configs config.middleware.use Rack::Cors do allow do ...
1
vote
1answer
23 views

WebAPI CORS doesn't work in IE10 and Firefox but not in Chrome and Safari

I deploy my API in a cloud service in Windows Azure. I want to allow to call my api from fron-end developers computers and We've found an error when we use IE10 and Firefox 21.0 but not with Chrome ...
0
votes
1answer
26 views

Backbone.js BasicAuth for IE 9

I am doing BasicAuth with Backbone.js. I have added this js file backbone.basicauth.js in order to be able to use the BasicAuth. In Chrome, Firefox and Safari the call works fine, first Backbone is ...
1
vote
1answer
19 views

Backbone sync send CORS preflight, but does nothing after that

I try to save a backbone model with model.save(), I gave the urlRoot, and I'm waiting for a POST call. I have a REST service on another subdomain which is waiting for the request. I got these request ...
0
votes
0answers
26 views

Why does writing a <script> tag trigger jQuery.ajaxTransport() in 2.X?

It appears that recent builds of jQuery attempt to make their own AJAX request for the script source when appending a tag to the document, e.g.: var script = $('<script/>', { id: 're_c', ...
1
vote
1answer
18 views

Trying to access JSON API from local .html in Chrome

I have built an API and I m trying to access it from a test .html file in Chrome. I m accessing the file through file:///... and I get the local filesystem restrictions. I have enabled cross origin ...
0
votes
1answer
24 views

iecors - jQuery plugin for CORS in IE 8 + 9 doesn't work on page first load

I have built an application (applause) but it's having trouble (booo) with CORS in IE 8 + 9. I am using a plugin for jQuery that provides iecors support ...
0
votes
2answers
34 views

CORS with python baseHTTPserver 501 (Unsupported method ('OPTIONS')) in chrome

Hi I need some help with base authentification while a ajax get/post request to a python baseHTTPserver. I was able to change some lines of code in the python script for sending CORS headers. It ...
0
votes
0answers
14 views

append query string while requesting for fonts in rails

Note: This problem is related to firefox being unable to download fonts from cross domain servers source: mozilla In Gecko, web fonts are subject to the same domain restriction (font files must be on ...
1
vote
1answer
88 views

Node.js / Socket.io Access-Control-Allow-Origin error on both local and remote site

world ! I'm trying to get a JSON feed to my client, through my node/socket.io server. All I keep getting, locally, or remotely (using nodejitsu) is the following error : XMLHttpRequest cannot load ...
0
votes
1answer
89 views

How to configure Angular $resource (ngResource) to pull data from another domain using CORS

I'd like to be able to setup resources using $resource using CORS to request my data. I've got CORS working with $http but the same techniques don't apply to $resource and I was hoping someone can ...
0
votes
1answer
24 views

Detecting XHR CORS request in Grails

I'm attempting some Cross-Origin requests against my Grails (2.0.1) application. I have the grails CORS pluging installed. Using jQuery. How can I detect an XHR request? Under conventional same ...
0
votes
1answer
40 views

401 when trying to implement CORS for SharePoint

I would like to access listdata.svc (a sharepoint service) located on domainA.contoso.com from a web application located on domainB.contoso.com - Authentication seems to be an issue. When attempting ...
0
votes
1answer
45 views

CORS on node subdomain

I am trying to set up an API on a sub domain and because of this I also try to set up an JavaScript API after the Web API. But unfortunally I am getting an error after trying to reach the server over ...
0
votes
1answer
40 views

CORS strange behavior nginx + backbone javascript [closed]

Hi I use nginx webserver and I have added headers to my config file add_header Access-Controll-Allow-Methods "OPTIONS, HEAD, INDEX, GET, POST, PUT, DELETE"; add_header ...
0
votes
0answers
11 views

cors jquery withCredentials cookie

client: $.support.cors = true; // ajax option beforeSend: function (XHR) { XHR.withCredentials = true; XHR.setRequestHeader("Authorization", "Bearer " + base.accessToken); } I use "fiddler" ...
1
vote
0answers
14 views

How can I enable Cross-Origin data access with PageSpeed Service?

I have a page that uses a HTML Canvas and some JavaScript to extract colours from an image. I've ensured that the images are pulled from the server directly, rather than from a CDN. I've also set the ...
0
votes
0answers
24 views

Getting Socket.io to work in Android Webview

I am trying to use socket.io inside an Android Webview, inside a native Android app. The Android activity file has been updated with; webView.getSettings().setJavaScriptEnabled(true); ...
0
votes
1answer
32 views

does Facebook allow CORS headers?

how can I discover if Facebook allowes cross domain requests ? Can I make a Javascript wich can handle a Cross Domain Request to Facebook?
0
votes
0answers
21 views

CORS headers with preflight request not working, with 'load cancelled'?

I'm kind of new to CORS and now am working on enabling CORS of videos from a server. I have come through a long way with the help of discussions on here: first tried simply adding ...
0
votes
0answers
14 views

XmlHttpRequest origin header is null in webkit

I am trying to integrate 2 webapps to let one (new one) send a url to another (old one) that it will load into a text area. The URL is actually to a file in S3 (with the multiple redirects that come ...
0
votes
1answer
52 views

Is this a CORS request?

I'm getting a CORS error with my WebAPI project but it's confusing me a little I'm doing an jquery ajax post from my website http://local.mysite.com to my web api site ...
0
votes
1answer
57 views

angularJS ajax call fails 403 but jQuery ajax call works for cross-site templateUrl loading. [duplicate]

To test AngularJS, I took the following code is right from the "Wire up a Backend" example off the http://angularjs.org/ home page. When the views are local everything works as expected but when I ...
-1
votes
1answer
25 views

What are some real case uses of CORS requests?

I just learned how to use Cross Origin Resource Sharing (CORS) - here is the fiddle. I tested out a few sites to see if they supported it and they do not. What is a prototypical example of what CORS ...
0
votes
1answer
31 views

In firefox while fetching the data for CORS We can use only jsonp or script but if cant get data then it shows syntax error

php code <?php $data = trim(api_get('threads',array(),'JSON')); echo $_GET['jsonp_callback'] . '(' . $data . ');'; ?> js code <script> $.ajax({ url: ...
0
votes
0answers
19 views

IIS: IE caches ALL AJAX requests, though it doesn't use cached data

I test a large website which constantly updates data tables using AJAX requests. I configured my web server to explicitly disable caching for .js and .csv files in my AJAX data directory: <?xml ...
0
votes
1answer
31 views

Implementing cross-domain post with bookmarklet

Basically, I have an app to create lists with items associated to them. I'm trying to enable my app to accept cross-domain post with a bookmarklet to create an item from any website that I visit. I'm ...
1
vote
0answers
52 views

Injecting content scripts and requesting cross-origin permissions

I'm curious if the following scenario is a bug in Chrome, working as expected, or developer error. So, I have an extension. In its manifest.json I request cross-origin permissions for two sites: ...
0
votes
0answers
26 views

CORS not work in Fine Uploader

My code can return null,and user two domain, Client-side code(js)www.a.com <script type="text/javascript"> $(function(){ $('#uploadbtn').fineUploader({ request: { ...
0
votes
1answer
26 views

get cookies from browser using CORS

I just heard about CORS, and wanted to know if it can help me in what I wanted to do. There is a website that has CORS enabled on its server. If a user has a client session running on his browser, I ...
0
votes
0answers
22 views

jQuery AJAX - difference between xhrFileds and beforeSend: function(xhr)

Hi I think this may be splitting hairs but I'm seeing slightly different behavior as I put together my CORS requests using $.ajax and I thought somebody out there might know exactly what the ...
0
votes
1answer
20 views

Javascript CORS upload always finishing with an error event

I need to upload a file to a server following the CORS specification with javascript. There are plenty examples on the internet and in fact everything works fine (the file is uploaded) but the last ...
3
votes
0answers
103 views

IE8/9 AJAX/CORS (XDomainRequest) send referer header

I'm using XDomainRequest in IE8 & 9 to send requests to a server. With XMLHttpRequests in other browsers, both an Origin and Referer header are sent, and could look like this: Origin: ...
0
votes
1answer
67 views

SEVERE: Exception starting filter CORS

I have RESTful web service deployed on tomcat' the web service is working fine in the client/server on same domain scenario' but I am required to make the Web Service available from cross domain' for ...
0
votes
0answers
146 views

cross domain resource sharing with rails and angular.js

cant understand how cors work with rails in my routes.rb resources :topics resources :test match '/topics' => 'topics#index', :constraints => {:method => 'OPTIONS'} match ...
0
votes
0answers
25 views

Error in Upload file to amazon directly from browser

I have created a sample in MVC to upload file directly to amazon ,In this I am using below javascript code : function createCORSRequest(method, url) { var xhr = new XMLHttpRequest(); if ...
3
votes
0answers
74 views

Why browser do not follow redirects using XMLHTTPRequest and CORS?

I am writing a web application for some service using RESTful API. The API is available at https://api.example and app at https://app.example. Simple GET requests using CORS are working just fine in ...
3
votes
1answer
123 views

backbone.js JSON parse error

Alright, I'm new to Backbone.js, and am just trying to get a simple collection fetch working. On the server side, I'm sending the following JSON I've verified that this comes down in the response ...
0
votes
1answer
155 views

ASP.Net MVC Async File Upload to API with Kendo fails

So this Kendo UI Upload worked well when I send files to MVC controller, but I have to change it and send the file directly to API controller, but it fails. This is the Kendo Upload init code: ...
0
votes
1answer
17 views

CORS-aided cross-origin-XHR

Modern browsers support CORS handily. If CORS-aided cross-origin-XHR is sent to CORS-ignorant site, the XHR succeeds in no question. Does it expose more vulnerability in this regard? How to strictly ...

1 2 3 4 5 15