MJPG から URLStream を取得したいのですが、リリース バージョンでエラー #2048: セキュリティ サンドボックス違反エラーが発生しました。
私がやろうとしていること:
Security.allowDomain("*");
Security.allowInsecureDomain("*");
var stream:URLStream = new URLStream();
//receiving this error event in onStreamSecurityError handler:
//Error #2048: Security sandbox violation: {swf} cannot load data from {url}
stream.addEventListener(SecurityErrorEvent.SECURITY_ERROR, onStreamSecurityError);
//load method have no loader context option
stream.load(new URLRequest("http://anydomain.com/mjpg/video.mjpg"));
crossdomain.xml の設定は、アプリケーションが任意のリモート サーバーからストリームをロードできる必要があるため、解決策ではありません。
flash.display.Loader クラスで覚えているように、LoaderContext とアプリケーション ドメインをセットアップしました。その後、flex アプリは任意のドメインからリソースをロードできます。しかし、URLStream をどうすればよいかわかりません。
エラー #2048 の解決策または回避策はありますか?