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

Flash security error - Twitter API

I'm trying to hit the Twitter API in my Flash application. It works in the local Flash IDE, but doesn't work when I upload it to my server. I'm getting this error: Error #2044: Unhandled securityError:. text=Error #2048: Security sandbox…
Steve W
  • 71
  • 4
3
votes
1 answer

How can I fix a Flash security error #2048

I have having an error in flash #2048. Everything I can find points to the fact this this is a security precaution as the files are not on the same domain. We have a site running on Rackspace cloud servers, and are just now trying to use cloud…
Thomas
  • 2,426
  • 3
  • 23
  • 38
3
votes
2 answers

How do I specify a crossdomain policy file to allow Flash to grab a bitmap from an RTMP (Wowza) video stream?

I'm trying to get a bitmap/snapshot of a Wowza video stream playing on my client, like so: var bitmapData:BitmapData = new BitmapData(view.videoPlayerComponent.width,…
Ken Smith
  • 20,305
  • 15
  • 100
  • 147
2
votes
2 answers

Does the AS3 LoadPolicyFile function apply to remote swfs as well?

I have a swf one one server that is pulling content from an Amazon S3 server. I have set up, for now, a generic cross-domain policy to allow all domains access: On the server containing the swf:
keybored
  • 5,194
  • 13
  • 45
  • 70
2
votes
1 answer

crossdoman.xml flash sand box violation

I have a crossdomain.xml file sitting in my WebServer folder on a web: Just to try and get it to work, I actually put it in every folder in the…
solerous
  • 75
  • 1
  • 9
2
votes
1 answer

Can you use an HTTP redirect to reference a crossdomain.xml file for Flash?

We have a lot of crossdomain.xml files at my company. Every service that has Flash availability needs one. Keeping them in sync is annoying, so I'd like to be able to have just one crossdomain.xml file hosted somewhere, and then http redirect (302)…
2
votes
6 answers

Problems with cross-domain.xml files in Flash 10

I feel as though I am banging my head against a wall on this one. I have tried (I think) every variation on a cross-domain xml file with no success. I just cannot seem to make my cross-domain Loader() requests work, no matter what I try. Here is the…
whitehawk
  • 2,429
  • 29
  • 33
2
votes
1 answer

crossdomain.xml doesn't give my Java applet access

I have a Java applet on my site that interacts with my server such that I need a crossdomain.xml file to allow permission. I've gotten around this by running my code inside a doPrivileged() block. However, on Safari, it doesn't work without a…
lifeformed
  • 525
  • 4
  • 16
2
votes
1 answer

Loading one external SWF into another SWF across domains

I have a.swf, which is the SWF file for my main application, and it's trying to load in b.swf, which contains some additional resources as well as some Actionscript. a.swf lives on sub1.domain.com and b.swf lives on sub2.domain.com (both on the…
2
votes
3 answers

flex load policy file crossdomain.xml

I want to place my crossdomain.xml file in a different location than the root because it just creates to much dependency issues. How can i tell flex to look from my crossdomain.xml file somewhere other than the root?Do i add the loadPolicy code to…
cdugga
  • 3,849
  • 17
  • 81
  • 127
2
votes
2 answers

How to configure the flex crossdomain.xml in Python Google App Engine Sdk

I have created a flex application in the Python Gae sdk and I got the error 2048, so I put a crossdomain.xml under the static folder. The crossdomain.xml is following:
michael
  • 1,160
  • 7
  • 19
2
votes
1 answer

set flash crossdomain.xml to allow only SSL connections?

How do I set the flash crossdomain.xml file to only allow https ssl secured connections? I have this but I think this will allow non secure connections too. < cross-domain-policy > < allow-access-from domain="*" secure="false" / > <…
bshack
  • 1,891
  • 1
  • 21
  • 27
2
votes
3 answers

JqueryAjax Webservice and Crossdomain problem

i am having problem with my Jqueryajax call that will consume one of my web service method via cross domain. i have been trying all the possible way to accomplish but still no success. please help me with what i am doing wrong. may be i need to…
sillyCat
  • 21
  • 1
  • 1
  • 2
2
votes
1 answer

Help With Cross Domain Flash Variables

I have two flash movies fl_base and fl_top. fl_base contains ActionScript that pulls a string variable from a server and parses it out to determine the navigation menu of a site (the headers, subheaders, and the links to where each of those…
RHPT
  • 2,560
  • 5
  • 31
  • 43
2
votes
3 answers

How to bypass flash crossdomain security

How can I disable crossdomain.xml check when the executing swf has been loaded on localhost? Error #2044: Unhandled SecurityErrorEvent:. text=Error #2048: Security sandbox violation: http://localhost:2541/xxx.swf cannot load data from…
zproxy
  • 3,509
  • 3
  • 39
  • 45
1 2
3
14 15