How do I call a Flex SWF from a remote domain using Flash (AS3) ? - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T05:39:12Zhttp://stackoverflow.com/feeds/question/14350http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/14350/how-do-i-call-a-flex-swf-from-a-remote-domain-using-flash-as32How do I call a Flex SWF from a remote domain using Flash (AS3) ?Eran Kampf2008-08-18T08:53:39Z2008-08-18T10:03:36Z
<p>I have a Flex swf hosted at <a href="http://www.a.com/a.swf" rel="nofollow">http://www.a.com/a.swf</a>.
I have a flash code on another doamin that tries loading the SWF:</p>
<p>_loader = new Loader();
var req:URLRequest = new URLRequest("http://services.nuconomy.com/n.swf");
_loader.contentLoaderInfo.addEventListener(Event.COMPLETE,onLoaderFinish);
_loader.load(req);</p>
<p>On the onLoaderFinish event I try to load classes from the remote SWF and create them:
_loader.contentLoaderInfo.applicationDomain.getDefinition("someClassName") as Class</p>
<p>When this code runs I get the following exception
SecurityError: Error #2119: Security sandbox violation: caller <a href="http://localhost.service:1234/flashTest/Main.swf" rel="nofollow">http://localhost.service:1234/flashTest/Main.swf</a> cannot access LoaderInfo.applicationDomain owned by <a href="http://www.b.com/b.swf" rel="nofollow">http://www.b.com/b.swf</a>.
at flash.display::LoaderInfo/get applicationDomain()
at NuconomyLoader/onLoaderFinish()</p>
<p>Is there any way to get this code working?</p>
http://stackoverflow.com/questions/14350/how-do-i-call-a-flex-swf-from-a-remote-domain-using-flash-as3/14384#143840Answer by Rytmis for How do I call a Flex SWF from a remote domain using Flash (AS3) ?Rytmis2008-08-18T09:36:26Z2008-08-18T09:36:26Z<p>Mayhaps <a href="http://livedocs.adobe.com/flex/15/flex_docs_en/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flex_Documentation&file=00001750.htm" rel="nofollow" title="Flex Documentation: System.Security.allowDomain">System.Security.allowDomain</a> is what you need?</p>
http://stackoverflow.com/questions/14350/how-do-i-call-a-flex-swf-from-a-remote-domain-using-flash-as3/14404#144044Answer by Theo for How do I call a Flex SWF from a remote domain using Flash (AS3) ?Theo2008-08-18T09:59:50Z2008-08-18T09:59:50Z<p>This is all described in <a href="http://livedocs.adobe.com/flex/3/progAS_flex3.pdf" rel="nofollow" title="Flex Documentation: System.Security.allowDomain">The Adobe Flex 3 Programming ActionScript 3 PDF</a> on page 550 (Chapter 27: Flash Player Security / Cross-scripting):</p>
<blockquote>
<p>If two SWF files written with ActionScript 3.0 are served from different domains—for example, <a href="http://siteA.com/swfA.swf" rel="nofollow">http://siteA.com/swfA.swf</a> and <a href="http://siteB.com/swfB.swf" rel="nofollow">http://siteB.com/swfB.swf</a>—then, by default, Flash Player does not allow swfA.swf to script swfB.swf, nor swfB.swf to script swfA.swf. A SWF file gives permission to SWF files from other domains by calling Security.allowDomain(). By calling Security.allowDomain("siteA.com"), swfB.swf gives SWF files from siteA.com permission to script it.</p>
</blockquote>
<p>It goes on in some more detail, with diagrams and all.</p>
http://stackoverflow.com/questions/14350/how-do-i-call-a-flex-swf-from-a-remote-domain-using-flash-as3/14409#144092Answer by grapefrukt for How do I call a Flex SWF from a remote domain using Flash (AS3) ?grapefrukt2008-08-18T10:03:36Z2008-08-18T10:03:36Z<p>You'll need a crossdomain.xml policy file on the server that has the file you load, it should look a something like this:</p>
<pre><code><?xml version="1.0"?>
<!-- <http://www.foo.com/crossdomain.xml> -->
<cross-domain-policy>
<allow-access-from domain="www.friendOfFoo.com" />
<allow-access-from domain="*.foo.com" />
<allow-access-from domain="105.216.0.40" />
</cross-domain-policy>
</code></pre>
<p>Put it as crossdomain.xml in the root of the domain you're loading from.</p>
<p>Also you need to set the loader to read this file as such:</p>
<pre><code>var loaderContext:LoaderContext = new LoaderContext();
loaderContext.checkPolicyFile = true;
var loader:Loader = new Loader();
loader.contentLoaderInfo.addEventListener( Event.COMPLETE, onComplete );
loader.load( new URLRequest( "http://my.domain.com/image.png" ), loaderContext );
</code></pre>
<p>code sample yoinked from <a href="http://blog.log2e.com/2008/08/15/when-a-cross-domain-policy-file-is-not-enough/" rel="nofollow">http://blog.log2e.com/2008/08/15/when-a-cross-domain-policy-file-is-not-enough/</a></p>