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
0
votes
1 answer

Flash banner, crossdomain and XML loading

I want to create flash banner with XML content, and host it on my site with crossdomain.xml, and then share banner code with other sites for banner exchange. So, everything is on my server. Will loading banner, on other sites, load XML from my…
Kenan
  • 1,725
  • 2
  • 10
  • 5
0
votes
1 answer

how to resolve cross-domain issue with silverlight app?

I have a silverlight app which try to access another site(hosted on JBOSS or Tomcat) by following way: WebClient proxy; //...... proxy.DownloadStringAsync(url); //this url point another site hosted by JBOSS or Tomcat with http. https not available…
KentZhou
  • 24,805
  • 41
  • 134
  • 200
0
votes
0 answers

Instagram crossdomain.xml for profile pictures

I'm trying to access Instagram through a flash web app. I can access the Instagram API the the users' photos because there's a corssdomain.xml file api.instagram.com and distilleryimage.s3.amazonaws.com But the profile pictures are stored at:…
Udi
  • 31
  • 1
  • 6
0
votes
2 answers

Using crossdomain.xml when serving a .swf from a domain that is NOT the domain of the web page it appears on

I'm writing a Flash script that will need to pull data from Domain A, is hosted on Domain B, and appears on the web page of Domain C (.swf is pulled from Domain B). My question is this - I have limited abilities to modify the crossdomain.xml file on…
Dave Cole
  • 2,446
  • 2
  • 20
  • 26
0
votes
1 answer

Facebook Canvas crossdomain.xml issue: Rejected because no crossdomain.xml policy file was found

I'm trying to use unity3d WWW class to execute php from a facebook Canvas app (the .unity3d is in a https as mandated by facebook). I made sure to place a crossdomain.xml file in the root of my domain (www.mydomain.com/crossdomain.xml) where the php…
0
votes
1 answer

Crossdomain.xml on which server?

There's a SWF file/app on someone's server that accepts URLs that contain data. Normally the URLs are from the same origin, so when I use a file from my server I get the same origin policy error. On which server do I need to add/update the…
Gerben Jacobs
  • 4,515
  • 3
  • 34
  • 56
0
votes
4 answers

Silverlight accessing WCF serivce throws Crossdomain error

I understand this question has been answered many times but i could not resolve it for some reason. I hope some one can solve my problem which might be straightforward for many, but i some how couldnt figure it out as I am relatively new to…
0
votes
0 answers

Flex security cross-domain issue in salesforce

I have developed a flex component which I am using on salesforce visualforce page. When I run that flex component on local machine it works fine. But when I run i through salesforce page it says *** Security Sandbox Violation *** Connection to…
Ashwani
  • 3,463
  • 1
  • 24
  • 31
0
votes
1 answer

Using JQuery ajax post with JSONP datatype CrossDomain

I'm using JQuery ajax post with JSONP as datatype to resolve the problem of CrossDomain this is my code implementation : $.ajax({ statusCode: { 200: function() { alert("page found"); }, 302: function() { …
ghost rider3
  • 448
  • 1
  • 5
  • 17
0
votes
1 answer

socket server connection error

i have made a simple socket serer script and a client script. if i run both scripts in the same project there is no problem but if i run the client script from Unity3D game engine there is no connection and the console said i need a Crossdomain…
0
votes
3 answers

as3 sandbox security violation with http://schemas.xmlsoap.org/soap/encoding/

I implemented a gSoap c++ webservice-server to be accessed by Flash (as3) Everything runs smooth as long as i test the .swf locally, the .wsdl is loaded fine, and the communication works, even with the server running on an external ip already. But…
Roman Pfneudl
  • 707
  • 1
  • 8
  • 21
0
votes
1 answer

Crossdomain.xml for HTML 5 app

I have an HTML5 app that will be a loading content (photos) from other sever. Before it was a flash app so simply crossdomain.xml would take care of that. Now, can I use the same crossdomain.xml file in the root? here's the XML
Steve Harrig
  • 175
  • 1
  • 3
  • 9
0
votes
2 answers

Flash crossdomain.xml in a non-root directory

I have a web service running in http://server/abc/service which is being accessed by Flash from a different domain. I deployed a cross domain policy file to http://server/abc/crossdomain.xml and made the Flash load it using: …
Jan Zich
  • 14,993
  • 18
  • 61
  • 73
0
votes
1 answer

Master policy file vs. crossdomain.xml in subdirectories

I have a swf on localhost which tries to read a text file from another server - example.com. The text file is in a subdirectory as follows: example.com/test/example.txt First here are the contents of the root and the…
ssn
  • 2,631
  • 4
  • 24
  • 28
0
votes
1 answer

Flex WebService POST changes https to http

I have a Flex app which needs to connect to an https web service. The web service WSDL URL is given as wsdl-url.company.com where SSL-offloading is used. The Flex app resides at the same server the web service resides. The web service in defined in…
user2246288