Mobile app version of vmapp.org
Login or Join
Berumen354

: Why am I seeing 404 requests for crossdomain.xml in my server logs? My website is recording a lot of 404 errors, from numerous sources, for a file crossdomain.xml. Does anyone know what this

@Berumen354

Posted in: #Error

My website is recording a lot of 404 errors, from numerous sources, for a file crossdomain.xml. Does anyone know what this file is or why it's being requested?

10.03% popularity Vote Up Vote Down


Login to follow query

More posts by @Berumen354

2 Comments

Sorted by latest first Latest Oldest Best

 

@Voss4911412

Correct, the crossdomain.xml file is requested to determine if Flash and Silverlight apps are "allowed" to access your website. Personally, I think it's a really dumb convention, but.. it's out there.

For Microsoft Silverlight


When calling a cross-domain service, Silverlight will check for the existence of clientaccesspolicy.xml first. This is the format defined by Silverlight and provides a pretty flexible way to define who can access what services. If not found, it will then default to look for crossdomain.xml, which is the file format implemented for Adobe Flash. It is important to note that this file will also still work for most public web services.


For Adobe Flash


Another change to the Flash Player 7 framework is the use of cross-domain policy files. A policy file is a simple XML file that gives the Flash Player permission to access data from a given domain without displaying a security dialog. When placed on a server, it tells the Flash Player to allow direct access to data on that server, without prompting the user to grant access.


Probably easiest to add this file if you don't want the 404s, and decide whether or not you want to allow Flash and Silverlight access to your website without a security prompt.

10% popularity Vote Up Vote Down


 

@Kaufman445

This file contains permissions for flash applications. It is requested by any flash app embedded on your site. (Just like favicon or robots.txt)

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme