Ask a Question related to Macromedia Flash Data Integration, Design and Development.

  1. #1

    Default XML across domains

    I have a project that sends queries to a database and receives XML formatted
    data:

    Markets_xml = new XML();
    Markets_xml.onLoad = readMarketsXML;

    Markets_xml.load("http://208.62.199.74/ws_ckp_data/Service.asmx/GetMarkets?Marke
    tName=All&MarketTypes=Industrial");
    Markets_xml.ignoreWhite = true;

    This works fine when I test the movie from Flash (on my local machine) and if
    I type the query string directly into my browser, I get the correctly formatted
    information. The problem arises when I post the swf to my server and test. From
    my server, I get nothing back... The swf files and the data are on different
    servers. Is this the problem? What is a good quick solution. Thanks,
    rich!

    richweb2008 Guest

  2. Similar Questions and Discussions

    1. Mulitple Domains
      If we purchase Flash Media Server 2 Professional, can that be used on multiple domains ?
    2. Connecting to sub-domains
      I am having trouble connecting to sub-domains using Contribute. I have tried using a variety of techniques to get into the sub-domain folder but...
    3. Directing Domains
      Hi, I have never used ASP in my life so I NEED HELP!!! I have heard it is possible to create an asp script that when someone connects to a web...
    4. Cookies across domains
      Hoi Is it possible to use cookies between different domains? For my site I use 2 domains; the first for my global site with ASP en HTML the...
    5. Re[2]: [PHP] parsing domains
      Hi, Thursday, August 28, 2003, 7:02:44 PM, you wrote: MJ> wont this just make me get a .com when I use my thing to parse the domain? MJ>...
  3. #2

    Default Re: XML across domains

    To access Files from other domain you need CrossDomain XML File
    See more about cross domain in flash help

    Devendran Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139