Hi,
I have a big problem with my flex app, I believe it is a security issue but I am still puzzled of how I can resolve it.
Basically, I have created a widget which lets the user select an area, a start date and an end date. Then, my widget creates an URL with those parameters (Start Date, End Date, List of Features of a specific dataset selected in the area), and sends this URL (with mx:HTTPService). This URL creates a csv file which retrieves all the queried information from an Oracle BI Server. So my flex widget retrieves this csv, parse it and then creates a nice graph wich corresponds to what the user wanted to see.
The problem is that everything works fine when I launch the app locally from Flex Builder, but I get the famous "Sandbox Violation Error" in my widget instead of the graph when I access my flex app from an URL.
This is typically a crossdomain kind of error, but even though I put the crossdomain file on the server where my flex app is located and added a "Security.loadPolicyFile()" in my index.mxml, it still doesn't work (and I verified that the crossdomain.xml was indeed accessible).
Any help would be appreciated
Reda