Yes, this symptom usually means a security a security problem.

 

Put a crossdomain.xml file in ..\inetpub\wwwroot.

 

This example below is wide open and you might want to tighten it down
once you get things working.

Tracy

 

<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM
"http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd";>
<cross-domain-policy>
  <site-control permitted-cross-domain-policies="all">
    <allow-access-from domain="*" ports="*" />
    <allow-access-from domain="*" to-ports="*" secure="true" />
    <allow-http-request-headers-from domain="*" headers="*" />
  </site-control>
</cross-domain-policy>

________________________________

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of nathanpdaniel
Sent: Tuesday, December 09, 2008 9:42 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Deployment of Flex Application in IIS

 

That issue has more to do with how you load data than the fact that 
you're using IIS. You should look into the security issues involved 
with loading external data to start with.

--- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com>
, "srik_kanth_g" <[EMAIL PROTECTED]> 
wrote:
>
> Hi, 
> 
> I am trying to deploy a small Flex application in IIS, but I could 
not 
> succed. 
> 
> I have installed Flex Bulider 3 in Server and deployed code into 
> WWWRoot under InetPub folder. when I tried to browse the .html 
page,it 
> did not fetch any data from the database, just displayed empty 
charts.
> 
> Actually, I am new to flex so I am not able to fix this issues. 
> 
> could anyone please let me know how to deploy the flex application?
> 
> Thank you
> 
> Srikanth
>

 

Reply via email to