|
Let me try and put it as simple as
possible.
Every request you make to a "data" server will
require the "data" provider to provide explicit permission to access their data.
This is done using a crossdomain.xml file that resides in the root of the "data"
server.
For example, the following is the URL to access the
MXNA feed.
How can you check of you can access the data from
this feed?
The result would be as below:
<cross-domain-policy>
<allow-access-from domain="*"/> </cross-domain-policy> Note that the "allow-access-from-domain" is
specified as "*". This means "anybody" can access it.
Now, lets look at another example.
The following is the RSS feed for CNN Money
Economy
Now, if you access http://rss.cnn.com/crossdomain.xml,
you will find a list of URLs. ONLY these URLs can access data from that
particular feed.
In your case, type in http://www.wopos.com/crossdomain.xml.
I see the result in Chinese(?), but I could see
that the no crossdomain.xml policy file exists on the server.
This means you do not have explicit permission to
access that webService.
So, for 2 reasons you would get the "'Security
error accessing url'" error.
1. No crossdomain.xml policy file exists on the
"data" server.
2. The crossdomain.xml does not permit you to
access that data.
I hope my understanding is
correct and it clears your confusion.
Regards
Sree
__._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
SPONSORED LINKS
YAHOO! GROUPS LINKS
|

