Tagged Questions

Cross-domain refers to web applications that communicate outside of their hosting domain / web server. This can be in the form of network requests to other servers or sharing data with DOM components served from different domains composed on the same web page.

learn more… | top users | synonyms (1)

34
votes
7answers
36k views

Access-Control-Allow-Origin Multiple Origin Domains?

Is there a way to allow multiple cross-domains using the Access-Control-Allow-Origin header? I'm aware of the *, but it is too open. I really want to allow just a couple domains. As an example, ...
23
votes
6answers
7k views

Why does canvas.toDataURL() throw a security exception?

Did I not get enough sleep or what? This following code var frame=document.getElementById("viewer"); frame.width=100; frame.height=100; var ctx=frame.getContext("2d"); var img=new Image(); ...
23
votes
1answer
5k views

Why don't I get a 'same origin policy' warning when using the Google Maps API?

I'm making a RESTful web service call in my JavaScript page and get the following warning: "This page is accessing information that is not under its control. This poses a security risk. Do you want ...
21
votes
7answers
9k views

What's your favorite cross domain cookie sharing approach?

I see iframe/p3p trick is the most popular one around, but I personally don't like it because javascript + hidden fields + frame really make it look like a hack job. I've also come across a ...
17
votes
4answers
28k views

Unsafe JavaScript attempt to access frame with URL

I am getting below error when i try to set a hash value to the parent url from iframe which contains another domain url. Unsafe JavaScript attempt to access frame with URL "URL1" from frame with URL ...
15
votes
8answers
20k views

Silverlight Crossdomain

I've seen a lot of links to MSDN and "works on my machine!" answers so I'd like to ask my question with the exact steps to duplicate what I'm doing. Because we are using an already existing ...
14
votes
6answers
10k views

JQuery ajax cross domain

I am fed up with this problem. Here is two pages, test.php and servertest.php. test.php <script src="scripts/jq.js" type="text/javascript"></script> <script> ...
13
votes
6answers
719 views

Is it possible to peform an asynchronous cross-domain file-upload?

It is possible! Read below. First of all, let me use this diagram to explain how asynchronous file uploads can be achieved: As you can see, the trick is to let the HTTP-response load into a ...
12
votes
1answer
1k views

Facebook like and Twitter tweet buttons causing Cross Domain Issues

I am using both the twitter tweet button, and the facebook like button <a href="http://twitter.com/share" class="twitter-share-button" data-url="http://example.com" data-text="some text" ...
12
votes
4answers
9k views

Error handling in getJSON calls

How can you handle errors in a getJSON call? Im trying to reference a cross-domain script service using jsonp, how do you register an error method?
12
votes
2answers
2k views

Are different ports on the same server considered cross-domain? (Ajax-wise)

Can XMLHttpRequest send a request to http:// mydomain.com:81/ from http:// mydomain.com/ ?
12
votes
5answers
4k views

Cross Domain User Tracking

We have several websites on different domains and I'd like to be able to track users' movements on these sites. Obviously cookies are not feasable, because they don't cross domain borders. I could ...
11
votes
3answers
12k views

“Origin null is not allowed by Access-Control-Allow-Origin” in Chrome. Why?

I am working on some Javascript to run locally on my PC. I am using a jQuery CSV plugin (http://plugins.jquery.com/project/csv) to load load a csv file into javascript arrays. The script is simple: ...
11
votes
1answer
5k views

Set Headers with jQuery.ajax and JSONP?

I am trying to access google docs with jQuery. Here's what I have so far: var token = "my-auth-token"; $.ajax({ url: ...
11
votes
11answers
1k views

Cross domains sessions - shared shopping cart cross domains

we are solving the problem with eshop (php, mysql). The client want to have the same eshop on two domains with shared shopping cart. In the shop customer can do the shopping without users account ...
11
votes
10answers
7k views

PHP Sessions across sub domains

I am trying to set up the following: auth.domain.com sub1.domain.com sub2.domain.com where if the user visits sub1.domain.com or sub2.domain.com and they are not logged in, they get pushed over to ...
11
votes
3answers
3k views

Is there a XDomainRequest equivalent in Firefox?

Is there an equivalent to Internet Explorer's XDomainRequest in Firefox or any of the other browsers? I'd like to access a service/website outside of my domain.
10
votes
1answer
569 views

Is the 1x1 pixel image technique a good way to capture analytics data cross-domain?

I see many web analytics application and otherwise use JavaScript to capture data on a client website, and then send it to a central server for processing/storage/presentation. For a similar purpose ...
10
votes
10answers
928 views

How can I validate/secure/authenticate a JavaScript-based POST request?

A product I'm helping to develop will basically work like this: A Web publisher creates a new page on their site that includes a <script> from our server. When a visitor reaches that new page, ...
9
votes
2answers
385 views

Facebook crossdomain.xml silverlight error

I have a problem with crossdomain.xml that is located on Facebook photo servers. The first problem arises when Silverlight asks for clientaccesspolicy.xml – Facebook servers return 403 – Access Denied ...
9
votes
4answers
5k views

Accessing web Service from jQuery - cross domain

I am trying to acess a wcf service from a jQuery client Specifically this example http://www.codeproject.com/KB/aspnet/WCF_JQUERY_ASMX.aspx#4 All works well when the client webpage is on the same ...
9
votes
2answers
4k views

jQuery: sending credentials with cross-domain posts?

According to https://developer.mozilla.org/en/HTTP_access_control#Requests_with_credentials, Firefox will only send credentials along with cross-domain posts if invocation.withCredentials = "true"; is ...
9
votes
3answers
3k views

Cross Domain Authentication

I am Curious about how cross domain authentication work? for example. To sign into Orkut.com you need to to sign in via Google.com. So the authentication happens at Google.com and it sets the cookie. ...
8
votes
1answer
1k views

Cross Domain SQL Server Logins Using Windows Authentication

I have a SQL Server 2005 named instance using Windows Authentication with domain groups serving as logins. The domain structures are as follows: Forest1 Forest2 / \ ...
8
votes
3answers
3k views

getting access is denied error on IE8

I have a html form (upload.htm) with a html file upload control inside of it. <form id="frmupload" name="upload" enctype="multipart/form-data" action="uploadhandler.ashx" method="post"> ...
8
votes
4answers
1k views

How do I pass session variables from one domain to another in PHP

I have encountered a situation where I need to pass $_SESSION variables from one domain to an iFrame page from another domain. I have spent the last 16 days trying various methods to no avail. I think ...
8
votes
13answers
14k views

Setting cross-domain cookies in Safari

Evernote's bookmarklet is able to do this, therefore the most upvoted answer does not answer this even though the bounty will go to it (in a non-productive manner). I have to call domain A.com (which ...
7
votes
1answer
190 views

Using OpenID to log into multiple domains: Is this plan feasable?

For example: We're running a two community sites on two domains (call them example.com and example.net). We want to be able to expand that to more domains later. We want to allow multiple types of ...
7
votes
4answers
6k views

IE9 blocks download of cross-origin web font

This is driving me crazy. Just testing a site on IE9 and discovered that the 'live' version is rendering a web font I am using smaller than on the dev version. Here is a selection of screen grabs: ...
7
votes
3answers
331 views

Securing JSONP?

I have a script that uses JSONP to make cross domain ajax calls. This works great but my question is, is there a way to prevent other sites from accessing and getting data from these URL's? I ...
7
votes
2answers
5k views

How to make cross-domain AJAX calls to Google Maps API?

I'm trying to make a jQuery $.getJSON call to the Google Maps Geocoding webservice, but this doesn't work because of cross-domain security issues. I haven't been able to figure it out online, but ...
7
votes
2answers
1k views

Detect when iframe is cross-domain, then bust out of it

I have a page with a large iframe that contains a majority of the content. The user interacts with the website by clicking around within the iframe. The functionality I'm trying to build is: When a ...
7
votes
5answers
5k views

How do i implement ‘sign in with google’ on my site?

On my site i would like to sign in with a google account. I plan to use openid but i would like to see signing in with google has more benefits. I notice in the past a few sites has the ability to ...
7
votes
2answers
5k views

Cross Domain JavaScript parent location setting firefox error

Here is the case: page A contains iframe B, B contains iframe C, A and B are under the same domain, C under another. C tries to reset parent B's location with extra information following "#" to solve ...
7
votes
1answer
5k views

What exactly can an IFrame do with the top.Location object (cross-domain)?

There is a very particular edge case in cross-domain policies regarding the window.top.Location object... Let's say I have IFrame A , in domain www.xxx.com, living inside a page in domain ...
7
votes
6answers
3k views

How do you call Python code from C code?

I want to extend a large C project with some new functionality, but I really want to write it in Python. Basically, I want to call Python code from C code. However, Python->C wrappers like SWIG ...
7
votes
5answers
7k views

Asynchronous cross-domain POST request via JavaScript?

I could just create a form and use that to do a POST request to any site, thing is the FORM method isn't asynchronous, I need to know when the page has finished loading. I tried messing around with ...
6
votes
5answers
379 views

How to implement secure Single Sign-On across various web apps?

...all of which are on different domains. Ideally I would like to create a UX similar to how some sites allow login via Google, Facebook, Twitter, etc. They all delegate authentication to an OpenId ...
6
votes
2answers
911 views

Cross domain POST query using Cross-Origin Resource Sharing getting no data back

I'm sending data cross domain via a POST request but the response isn't working, specifically, jQuery's success handler never gets called. Stuff being used: Django, Apache, jQuery. So, I set up a ...
6
votes
1answer
1k views

Cross-site request forgery prevention using struts token

I want to implement Cross-site request forgery prevention for my web application which is base on struts 1.x framework. I know that struts 2 framework provide token interceptor for this and I can ...
6
votes
3answers
557 views

Retrieving response from remote server after uploading a file in iframe

I have a form that uploads a file in an firame to a remote server. As a result at the submission url server returns json data with the result of operation, which my iframe catches. {'result': 'true' ...
6
votes
2answers
379 views

How does same-domain policy work for popup windows when the URL is set to run JavaScript?

I want to do something like this: var w = window.open("javascript: makeAnAjaxRequest();"); My question is, would the Ajax request (executed once the new window opens) be considered a cross-site ...
6
votes
5answers
2k views

Cross Domain Get Request in JS/JQuery

Is there a way without using a server proxy to perform a cross domain GET or POST request?
6
votes
3answers
4k views

HTTP & HTTPS Iframe

I am creating a small widget and I want to allow others to use it. The iFrame is loaded from HTTP - but I want to allow users to login via HTTPS i.e. that is - send a request for login via SSL Is ...
6
votes
3answers
230 views

What's the point of the Anti-Cross-Domain policy?

Why did the creators of the HTML DOM and/or Javascript decide to disallow cross-domain requests? I can see some very small security benefits of disallowing it but in the long run it seems to be an ...
6
votes
7answers
2k views

Firefox Cross Domain Request

I need to make a cross domain request from a script that runs in firefox (it's just for development purposes). Can this be achieved? maybe modifying the about:config keys? Thanks!
6
votes
5answers
4k views

ajax problem - 200 OK in firebug but red message with no response body

I have small ajax problem related to cross domain as i see it. On localmachine i created html example with some ajax: in registration text field user types 'username', on every keystroke ajax sends ...
6
votes
5answers
1k views

Retrieve a cross domain RSS(xml) through Javascript

I have seen server side proxy workarounds for retrieving rss (xmls) from cross-domains. In fact this very question addressess my same problem but gives out a different solution. I have a constraint ...
6
votes
1answer
3k views

Removing Flash meta-policy communication warning

I am communicating to an external server via a URLLoader and receiving the following warning: Warning: Domain domain name does not specify a meta-policy. Applying default meta-policy ...
6
votes
7answers
15k views

Cross domain cookie access (or session)

While I realise that this is usually related to cross site scripting attacks, what I'm wondering is how can a session remain valid throughout multiple subdomains belonging to a single domain (example: ...

1 2 3 4 5 26