Flash Seems To Be Caching Crossdomain.xml File?

Oct 27, 2010

I have updated the crossdomain.xml security settings for my site - but it seems that the older version is being cached in both IE and Chrome.I've checked the headers sent by the server and it's not sending any cache control headers that would be forcing the browsers to be caching crossdomain.xml.

In an attempt to get around the issue I've also linked to my crossdomain.xml file in an iframe on the site. This hasn't worked though and flash still seems to be using the old security settings.

View 2 Replies


Similar Posts:


Html :: Crossdomain.xml Prevent Caching?

Feb 10, 2011

After changing domain name where flash application being hosted I should change crossdomain.xml file. That crossdomain.xml is hosted on api-server, which is used by flash application. I see that flash uses crossdomain.xml from browser's cache. Is there any trick to make flash to not get crossdomain.xml from cache? Maybe there is any parameter, that I can pass to flash during it's call in object tag?

View 4 Replies

Crossdomain.xml Flash Banner / Crossdomain And XML Loading

Jan 25, 2010

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 server, if both banner and XML resides on the same server, but banner is loaded on the other site?

View 1 Replies

Flash :: Flex - Call A Webservice Without Crossdomain.xml File?

May 4, 2010

How can I consume a webservice that hasn't explicitely created a crossdomain.xml? I understand it's for security and to prevent cross-site scripting, but it does seem like a major limitation to the Flex framework. For example, if I want to consume a webservice, which is suppose to be language agnostic, then I can't with Flex. The webservice/server has to be specifically prepared for Flex/Flash. If it's not, then it cannot be consumed.

View 3 Replies

Flash Uploader - Requests Host/crossdomain.xml File?

Jan 24, 2011

I'm using YUI file uploader based on flash, and the flash requests host/crossdomain.xml file. I'm requesting localhost and it requires this file. I was using this before and I have never had this problem and I've never had this file on my server.I've never used any adobe technologies, could please anybody tell me if it is possible to turn it off somehow ?The problem is that I can't have the file on my server, at least at root location...

View 2 Replies

Flash :: Use An HTTP Redirect To Reference A Crossdomain.xml File For It?

Jul 24, 2011

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) all the requests to that central location. Is this possible? I can't find documentation anywhere on the web about the rules.

View 1 Replies

Flash :: Network Failures When Loading Crossdomain.xml Policy File?

Sep 13, 2011

I monitor (and log to server) most user errors in our flash game. Quite frequently I see security errors related to trying to make requests to a cross-domain URL (usually the Facebook Graph API). 99% of our players can make these graph API calls with no issues.What I think is going on is that the client makes a request, but fails to load the crossdomain.xml file. I don't quite know how AS3 handles this in the case of a failure to load the crossdomain policy file...will it retry for every URLRequest made until it succeeds in loading it, or does it just give up forever?

View 2 Replies

Flex - Why Is Flash Demanding A Crossdomain.xml File When The .swf And Http Target Are Both On Localhost

Jun 3, 2011

I've got a small client/server test application where I have a Flex app that makes an HTTP request of a server app. The server app is a script running on my local machine, listening on port 8001. The client is a swf that I am running locally, and uses mx.rpc.http.HTTPService to make the page request.

The HTTPService is being set up as per below:

_HttpService = new HTTPService();
_HttpService.url = "http://localhost:8001";
_HttpService.contentType = "text/xml";

When I make a basic page request, my server app is first receiving a "GET /crossdomain.xml HTTP/1.1" request, which is failing since I don't have a crossdomain.xml file in place. The reason I don't have one in place is because this is all happening on my local machine (for now) and I shouldn't need one (I don't think).

I definitely had this code working before without a crossdomain.xml when I was using Flex 3.x. I thought I had it working with Flex 4 as well. Now I'm using Flex 4.5. Is there an issue here, possibly due to security policy changes?With all of this happening on localhost, why is the Flash player requesting a crossdomain.xml file?

[code]...

View 2 Replies

ActionScript 2.0 :: Prevent A Flash Movie From Caching A XML File?

Dec 8, 2005

I made a gallery with an XML file but the problem is that after viewing it on the web and modifying the XML I don't see any difference...it's like I never even modified it...I'm guessing it's because the browser reads the XML file from the cache...how can I make the flash movie read the XML from the web every time it loads?

View 4 Replies

ActionScript 3.0 :: CrossDomain XML And Email PHP File

Feb 19, 2009

I have 2 sites using their own version of the same email.php file accessed by a contact form in Flash - one copy is sent to an email address on the site domain and another to the originator. On one of the two sites the email never arrived then I noticed "crossdomain.xml not found" in the web browser activity log so I googled it and then placed this file in the root directory:

Code:
<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "[URL]">
<cross-domain-policy>
<site-control permitted-cross-domain-policies="master-only"/>
<allow-access-from domain="*"/>
<allow-http-request-headers-from domain="*" headers="SOAPAction"/>
</cross-domain-policy>

Now the email address with the same domain arrives but the originator does not receive his copy (can be any domain). It's weird that the 2 sites are not consistent?

View 1 Replies

Flex :: Sockets - Crossdomain.xml File And FTP?

Feb 18, 2010

I am trying to do a "hello world" level test of FTP in Flex, but for three days now, I cannot overcome the issue with how to coerce flex into accepting my crossdomain policy - even for testing purposes.Here is my code: The exact error text follows.

[Code]...

View 3 Replies

IDE :: Embedded XML In .as File - Not Caching?

Jan 28, 2009

I am using e4x/as3 - Embedded XML in .as file - not caching?

View 5 Replies

ActionScript 3.0 :: Security Error #2048 With Crossdomain.xml File

Apr 20, 2009

I am using the XML/MX/Syndication libraires and getting a Security Error #2048 error. The error seems unreasonable to me in that there is no forward solution to it on the Internet. I have tried hardcoding security methods in AS 3 and also using a crossdmain.xml file in my root directory to no success. I am about to give up and use pure PHP. There should be a more simple solution to this.

View 11 Replies

Flex :: ASMX Service And Lack Of Crossdomain.xml File?

Oct 29, 2010

I have an issue with an asmx service I am trying to access. No crossdomain file. I read there is a way around this using HTTPService instead of a webservice. Still cannot load the wsdl. See code below.

var dataService:HTTPService = new HTTPService();
dataService.url =
"http://flexmappers.com/proxy.php?url=http://www.server.net/carbon.asmx";[code]....

View 2 Replies

ActionScript 3.0 :: Security Sandbox Violation - Change With Crossdomain.xml File?

Oct 25, 2009

what's wrong with this picture? Why is this security error happening? Is there something I need to change with my crossdomain.xml file?

[Code]...

View 1 Replies

ActionScript 3.0 :: Turning Off Caching For Loading A Text File

Jan 29, 2009

I'm trying to turn caching off so when I reload the text file, it always gets a fresh copy. I keep getting compiler errors however with the useCache line. I'm not accessing the properties correctly or something. When I take out that line it works fine but always fetches the cached file.

My code is:

loadDoctorVariables();
function loadDoctorVariables() {
var requestJo:URLRequest = new URLRequest("
http://www.grxsolutions.com/gtslideshow3/"+doctorURL+".txt");

[Code]....

View 3 Replies

ActionScript 2.0 :: Caching HTML Text From A TXT File Using LoadVars?

Nov 21, 2010

I made a Flash-based "news section" for my website. This file uses a text field (with render-as HTML) and an instance name of dynamicText. The actionscript fills this text field with content from a TXT file called homeNews.txt.Everything works great, except if I make additions to the TXT file and re-upload to the server, the Flash file still calls an old version of the TXT file from my cache. This even happens after emptying the cache. This is a huge problem if I need to add daily updates. This problem only occurs on the server and not when testing locally.

Here is the code I put in my Flash file:

Code:
Ext_text = new LoadVars();
Ext_text.onLoad = addText;
Ext_text.load("homeNews.txt","POST");

[code]....

View 7 Replies

ActionScript 3.0 :: Click On Another Greeting The Original Greeting Still Plays In Ie - Swf Caching Or XML Caching?

Dec 30, 2009

I have this PHP page that lists several people. When someone clicks on one of the people they are sent to another PHP page that has their video greeting in a .swf embedded into the page. This works by the php writing the path to the greeting video to the xml file that the .swf loads and plays.

Well in firefox it works perfect, but in IE when they try to click on another greeting the original greeting still plays. Its like the swf is caching the first greeting and refresh of the page does nothing to alleviate this. Is this a problem with the swf caching? or XML caching? or am I totally clueless?

[Code]...

View 1 Replies

Swf - Can't Get It To Work: Crossdomain.xml And Flash

Jun 28, 2010

I have a (self-created) swf demo with button triggering getUrl('SampleTargetPage.html')Now I want to place the swf at our cdn at [URL] while my html page resided on [URL]More structured:

[URL]

I thought it would be sufficient to provide a crossdomain.xml at cdn.example.com to allow the links work. But: it seems like the Flash plugin never queries the crossdomain.xml at all!Now, is there something which I must add in the SWF itself to make this work?

edit: do I need to use Security.loadPolicyFile?

edit: Maybe I don't need the crossdomain.xml at all because everything's under [URL]?

View 2 Replies

Flash :: Not Finding Crossdomain.xml?

Sep 2, 2010

I have a flash app hosted at The contents of that crossdomain.xml file are as follows:

<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">

[code].....

View 2 Replies

Flash :: Crossdomain.xml In A Non-root Directory?

Nov 3, 2009

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: flash.system.Security.loadPolicyFile("http://server/abc/crossdomain.xml");

in the constructor of the main movie clip. However, when the Flash starts, it requests and loads this file (observed in Firebug), but then it also requests it from the root of the server (i.e. from http://server/crossdomain.xml) which does not exist. Subsequent HTTP requests don't work reporting security cross domain errors. When I put the policy file to the root of the server, it all works. Why does it request the policy file from the root as well even thought it loads it from the subdirectory? Why the subdirectory policy file is not enough?

I should also note that the two policy files are loaded before any application HTTP requests are issued.

View 2 Replies

Flash :: Flex Socket Crossdomain

Apr 28, 2010

I am trying to connect to a socket server from flex. I read, on adobe's documentation, the client automatically sends a "request-policy-file" xml element to the socket before allowing it to be opened, and should receive a policy file.

The client sends the xml element as expected, My server receives it (on the port I want to use, port 6104) and replies on the same port with:

[Code]...

View 1 Replies

Flex :: Use Crossdomain.xml For Flash Project?

Aug 10, 2010

I am trying to build a youtube player with flash and everytime I load a video, there is a runtime security sandbox error..I already put crossdomain.xml in my root serverbut I am still getting the errors...Do I miss something? Do I have to load it into my flex project?

<!-- <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>

[code].....

View 4 Replies

How To Bypass Flash Crossdomain Security

Nov 2, 2010

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 http://www.com/xxx.swf.

I want to assign full trust to the HTML5 web application running locally. I want to disable any crossdomain checks.

Some external servers do not provide crossdomain.xml for their hosted SWF files.
I am running locally. I want to have full trust for debugging purposes.

How do I do that?

I will not consider AIR as it cannot be used from HTML5 application.

Adding the url "http://localhost:2541/xxx.swf" to "C:UsersArvoAppDataRoamingMacromediaFlash Player#SecurityFlashPlayerTrustu.cfg" did not help.

[URL]

View 3 Replies

Flex :: Set Flash Crossdomain.xml To Allow Only SSL Connections?

Feb 7, 2011

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" / >
< /cross-domain-policy >

View 1 Replies

Flash - Crossdomain.xml Not Honored By Jwplayer?

Apr 12, 2011

The player loads a flv video file seeon.flv from another domain.Currently, even without a crossdomain.xml in the server where seeon.flv is located, the video is loaded fine.This is not the behavior I want or expect it to be.I also tried putting a crossdomain.xml with the following content:

<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM
"http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<site-control permitted-cross-domain-policies="none"/>
</cross-domain-policy>

From firebug, I could see that there's a request to the crossdomain.xml before accessing the video file (seeon.flv).It returns the content fine , with the Content-type of application/xml, but it still allow the cross domain behavior.

View 1 Replies

Flash :: Crossdomain.xml Doesn't Work?

Aug 20, 2009

I am developping this video player: In the exemple above, the player is loading this start image, to display it before the playing of the video:Here, I then tell the player to load the same image, but on another domain: As you can see, it doesn't work anymore. I searched on Google and discovered that I theorically had to add a crossdomain.xml, to make sure that there isn't security protection that avoid swf to load images from other domain. so put these two files on my different domains, to tell the swf to accept files from all * domains

View 2 Replies

ActionScript 2.0 :: Flash RSS Reader Vs Crossdomain.xml

Aug 10, 2010

I'm building a Flash based RSS reader, to be run on a kisok, but it's getting tripped up by crossdomain issues. In the abstract: SWF loads local TXT file containing paths of remote RSS feeds (XML files), then loads the feeds stored at those remote paths.

[Code]...

I was under the impression that an single asterisk/wildcard in quotes would mean any domain could access content on that server. But it's not working that way. I've tried changing the Publish Settings to "Access Local Files Only," and "Access Network Only," to no avail. I've also tried adding all of the relevant files to the trust list in Macromedia's Global Security Settings page.

View 2 Replies

Flash :: Google Oauth Crossdomain.xml With Flex?

Mar 29, 2011

I am trying to get the RequestToken with flex from

[Code]...

View 3 Replies

Actionscript 3 :: What Is The Purpose Of Flash's Crossdomain.xml Protection

Jun 22, 2011

If you want to use content on another server, that server needs to host a crossdomain.xml file allowing access. If this file isn't there, flash won't let you access it. Given that it's easy enough to just write a proxy (say a php script that curls the external URLs) what is the purpose of this restriction? It seems that the content is still 100% available to external people, but there is just one extra hoop to jump through.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved