tags:

views:

1225

answers:

3

Hi, I have a flash file that loads an xml file at runtime. When the .swf file is run locally or on an Apache server it works fine but when hosted on an IIS6 based server the file won't load.

can anyone help with this?

Thanks

A: 

You may have file permission issues. Make sure that your xml file has read permissions for the "Network service" account (or ASPNET user if you are on XP)

If you are trying to load an FLV you will also need to set that up as a mime type in IIS. This is usually not set up by default.

this didn't work, I explicitly added the Network Service to the entire directory and no change. there are no flv files either
A: 

I have had the same issue... everything loads fine locally, even referencing the web server locations from my local machine in Flash... when uploading the swf and the same paths, the xml image paths are not loaded in...

A: 

If you are loading the XML from a domain other than that where the SWF is hosted you will run into the "cross domain security" issue. Some docs here:

http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14213&sliceId=2

cliff.meyers