I got URI error notification for /crossdomain.xml at dashboard in admin console of appengine.
- How to fix the error?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
From Adobe’s site:
crossdomain.xmlis an example of this type of cross-domain policy file.In the context of your site, someone (maybe you, maybe someone else) is trying to access content from your site from within an Adobe application. The application, trying to be a good citizen, is checking for the existence of a cross-domain policy file before performing the actions. Since you haven’t provided one, you’re getting a
404in your log.The easiest fix is to write a
crossdomain.xmlfile, and serve it from your App Engine app. Adobe apps that are looking for it will now get a file instead of a404and the error will stop appearing in your log.Alternatively, you can just ignore the error. Like with a missing
robots.txtfile, the404errors aren’t doing damage to your site, they are just occasionally populating your logs with errors you don’t care about.