• Flash / Flex Tutorial How to Create a crossdomain.xml file


    Flash / Flex Tutorial - How to Create a crossdomain.xml file.

    This brief tutorial will teach you how to create a crossdomain.xml file so that you can access files and information from outside domains and load files and data within your Flash / Flex apps. It is as simple as 4 easy steps.

    1. Create an xml file named crossdomain.xml. (XML can be created with Dreamweaver or just simply MS Notepad. Just make sure that you give it the '.xml ' extension on the end.)
    2. Copy and paste one of the code examples below into the XML file:
    3. Save the file.
    4. FTP / upload the file to the root directory of your website. (you should be able to see the file in a browser by typing the url www.yourwebsite.com/crossdomain.xml).

    XML Code 1:
    This is a typical crossdomain.xml file. Notice that I included my domain as well as my domain without the 'www' in front.

    <?xml version="1.0"?><!DOCTYPE cross-domain-policySYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
    <allow-access-from domain="www.curtismorley.com" />
    <allow-access-from domain="curtismorley.com" />
    </cross-domain-policy>

    XML Code 2:
    The follwing Code will allow all domains. This effectively eliminates any security that Flash would have otherwise had. I suggest that you don't use this example unless you enjoy security holes.

    <?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
    <allow-access-from domain="*" />
    </cross-domain-policy>

    XML Code 3:
    The block of code below will explicitly disallow any and all access from any outside domain. As well, any domain that is not spelled exactly how the host domain is spelled will be blocked. This is the tighest cross domain security that you can employee.

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

    XML Code 4:
    The code below illustrates different uses of the '*' wildcard symbol. This is the crossdomain.xml file from Amazon.com The wildcard allows for any variation before '.amazon.com'. Amazon does this because of the public services and APIs that it allows others to connect to.

    <cross-domain-policy>
    <allow-access-from domain="*.amazon.com"/>
    <allow-access-from domain="amazon.com"/>
    <allow-access-from domain="www.amazon.com"/>
    <allow-access-from domain="pre-prod.amazon.com"/>
    <allow-access-from domain="devo.amazon.com"/>
    <allow-access-from domain="images.amazon.com"/>
    <allow-access-from domain="anon.amazon.speedera.net"/>
    <allow-access-from domain="*.amazon.ca"/>
    <allow-access-from domain="*.amazon.de"/>
    <allow-access-from domain="*.amazon.fr"/>
    <allow-access-from domain="*.amazon.jp"/>
    <allow-access-from domain="*.amazon.co.jp"/>
    <allow-access-from domain="*.amazon.uk"/>
    <allow-access-from domain="*.amazon.co.uk"/>
    </cross-domain-policy>

    Creating a cross domain policy file is just that easy.

    And Happy Flashing.

    P.S. I highly suggest that you read one or all of the following articles on cross domain policy files and the Flash Player security sandbox,

    Crossdomain Article by Colin Moock

    Adobe Crossdomain Technote (this one is required reading)

    Flash Player 9 Security Whitepaper

    Adobe LiveDocs on Flash Player Security

  • 相关阅读:
    Swift 对AFN框架的封装
    iOS开发中静态库制作 之.a静态库制作及使用篇
    iOS 地图定位及大头针的基本使用
    swt中改变树的字体及颜色的实现
    为什么很多程序员选择跳槽?
    用SWT做圆形控件
    JAVA简单编码规则
    swt中改变表格字体大小及颜色的实现
    使用JAVA的反射机制反射带有数组参数的私有方法
    我的GIT使用经历
  • 原文地址:https://www.cnblogs.com/buffer/p/1736319.html
Copyright © 2020-2023  润新知