The problem is not with the crossdomain.xml on your server. Flash is looking at the crossdomain.xml on the remote server. If you look at the file at http://finance.yahoo.com/crossdomain.xml you will see:
<allow-access-from domain="*.yahoo.com"/> <allow-access-from domain="us.js2.yimg.com"/> so unless you have a subdomain of yahoo.com, you do not have access. What you will have to do is have your server side code access the data at http://finance.yahoo.com/rss/headline?s=INMD and return it to flex. --- In [email protected], "coccolli" <cocco...@...> wrote: > > I'm running into the same problem with out any success. Did you ever > find a solution? > Thx > > > > --- In [email protected], "Craig" <craigj@> wrote: > > > > I have a Flex 3.0 app that connects to RSS feed fine from FlexBuilder > > IDE but when deployed on Web Server gets the following error > > > > Error #2044: Unhandled securityError:. text=Error #2048: Security > > sandbox violation: http://mywebserver.net/myflexapp.swf cannot load > > data from http://finance.yahoo.com/rss/headline?s=INMD. > > > > > > I have tried many different crossdomain.xml configurations and they are > > easily acccessible from my web server root: > > > > http://mywebserver.net/crossdomain.xml > > > > but still no luck. > > > > Is it true I have to create a proxy for accessing this RSS data and do > > I need to write Java Server Applet as Satish has on his Blog... cause I > > don't look forward to that. > > > > Any other suggestions???????? > > >

