Questions tagged [crossdomain.xml]

A cross-domain policy file is an XML document that grants a web client—such as Adobe Flash Player, Adobe Reader, etc.—permission to handle data across multiple domains.

A cross-domain policy file (crossdomain.xml) is an XML document that grants a web client—such as Adobe Flash Player, Adobe Reader, etc.—permission to handle data across multiple domains.

216 questions
4
votes
1 answer

Help with Cross-Domain file for ActionScript 3 Socket

Here is My ActionScript Code: var S:Socket=new Socket("127.0.0.1",2222); Here is My CrossDomain.XML File (Located at http://127.0.0.1/crossdomain.xml)
Joshua
  • 6,643
  • 15
  • 55
  • 76
3
votes
1 answer

cross domain javascript

I have a web page on domain xyz.com that has a javascript being downloaded from cdn domain cdn.xyz.com. Does the browser consider calling a service on xyz.com (xyz.com/service.svc) from the javascript a cross domain call since js is downloaded from…
Kunal Ranglani
  • 408
  • 3
  • 14
3
votes
1 answer

is the most restrictive policy in crossdomain.xml equivalent to not having at all?

I can see on the logs of my server a few http 404 for [mydomain]/crossdomain.xml I was wondering if to add therefore this file and configure it to have the most restrictive policy. That is: (taken from html 5 boilerplate)
Zo72
  • 14,593
  • 17
  • 71
  • 103
3
votes
5 answers

SWF is not a loadable module

We are creating an app that uses modules which are dynamically loaded into the main swf. The problem we run into, is that we are unable to load the modules located on a test server when we are debugging the main app locally. The error we get is "SWF…
Christophe Herreman
  • 15,895
  • 9
  • 58
  • 86
3
votes
3 answers

java.net.SocketPermission - strange behaviour

I was creating a java applet to collect and proces some data from other websites. The applet is unsigned, and, as I understand it, access to other sites is blocked for security reasons. However, it seems at least one of the other sites is not…
jacquesb
  • 31
  • 2
3
votes
1 answer

CORS vs crossdomain.xml, which one has the priority?

If my web server is configured to allow cross-origin requests in his crossdomain.xml, and also to deny them via CORS (Access-Control-Allow-Origin: site111.org), which configuration will be respected in the case where a website (site222.com) send a…
Reda LM
  • 191
  • 1
  • 2
  • 10
3
votes
2 answers

Flex does not recognize crossdomain.xml policy file

I'm using Flex 3 and I want to access a webservice on another server. I've imported the webservice (Data->Import) succesfully into my application, but when I'm accessing the functions in the code itself I get the following error: Warning: Domain ...…
ygoldgur
  • 31
  • 4
3
votes
3 answers

wrong protocol for crossdomain.xml in flex app

I've changed the protocol for my flex app from https to http and flashplayer still wants to download the crossdomain.xml using https though with the port for http. the app is accessed at http://domain01:8080/flex and it wants to get…
3
votes
2 answers

Flex crossdomain.xml not working correctly in Chrome/Firefox?

I've spent quite a bit of time on this so here's where I'm stuck. I'm using the debug player 10.1 to get an XMLA request from: http://localhost/dir/blah.swf to: http://localhost/olapbin/msblah.dll This worked fine in the filesystem, but now its on…
3
votes
2 answers

Is there reliable method of ensuring crossdomain policy files have been retrieved for all Facebook image servers?

I've recently started putting together a Facebook Connect AS3 app and retrieving objects and images through the Graph API. Running anywhere but locally, I receive security errors of the form: SecurityError: Error #2122: Security sandbox…
thoughtden
  • 33
  • 5
3
votes
2 answers

JSE 1.8, Sandbox Java Applet loaded over HTTPS, but crossdomain.xml retrieved using HTTP

Hi all Java/Applet gurus, I've stumbled upon an interesting problem with the latest JDK build (1.8.0_b26). When running Sandbox Java Applet with the latest JDK, from within Java code we try to connect back to the server with a different protocol -…
Mark V.
  • 31
  • 3
3
votes
2 answers

Unity crossdomain.xml

I'm getting error messages regarding the crossdomain.xml file and I don't know how to resolve it. I have no trouble accessing the URL from a web browser. From web browser http://192.168.1.116:80/locJSON.txt gives me back a big snippet of JSON…
Dalanchoo
  • 177
  • 1
  • 3
  • 17
3
votes
1 answer

Issues with cross-domain uploading

I'm using a django plugin called django-filebrowser which utilizes uploadify. The issue I'm having is that I'm hosting uploadify.swf on a remote static media server, whereas my admin area is on my django server. At first, the browse button wouldn't…
meder omuraliev
  • 183,342
  • 71
  • 393
  • 434
3
votes
1 answer

How do you specify a custom location for crossdomain.xml in actionscript?

We are hosting the swf assets on a media hosting server and can't get a file to the root, anyone know what the code looks like to specify a custom location for crossdomain.xml? Sample code if you have it.
MetaGuru
  • 42,847
  • 67
  • 188
  • 294
3
votes
2 answers

Annoying Error #2048: Security sandbox violation from localhost

This is my crossdomain.xml that I put in the same folder of my Web.config:
Fabricio
  • 7,705
  • 9
  • 52
  • 87
1
2
3
14 15