Please list one site which allows Flash/Silverlight access via crossdomain.xml file. Vote for your favorite sites.

The goal is to build an up to date list of sites which can be directly accessed via Flash/Silverlight without a server-side proxy.

link|improve this question
Hint: there's a list here, but who knows how up to date it is - ha.ckers.org/weird/crossdomain.html – Jon Galloway Dec 9 '08 at 7:51
A lot of these only allow access from subdomains or specific domains. – Sorskoot Dec 9 '08 at 8:04
Yep - I've been going through them and noticing the same thing. – Jon Galloway Dec 9 '08 at 8:14
Dan, I enabled wiki mode – Jon Galloway Dec 10 '08 at 20:54
Java now supports crossdomain.xml too so unsigned applets can access resources on other domains that allow it in the same way as flash. From java 6 update 10 I believe. – JohnB Dec 12 '08 at 14:17
feedback

10 Answers

Flickr's got one here:

http://api.flickr.com/crossdomain.xml

link|improve this answer
feedback

The feeds a http://www.feedburner.com are accessable via the CrossDomain file. All rss feeds can be read with Silverlight.

(This may help the search a bit: googlesearch)

link|improve this answer
feedback

Yahoo Pipes (http://pipes.yahoo.com/pipes/) allow access to a lot of pages and feeds that don't have crossdomain.xml files. It'll access just any page which allows indexing (robots.txt).

link|improve this answer
feedback

Amazon SimpleDB does NOT currently support crossdomain.xml or clientaccesspolicy.xml... it is huge FAIL in my opinion...

link|improve this answer
feedback

http://johndyer.name/crossdomain.xml is open.

Jon, how do you use Yahoo Pipes from Silverlight, since its crossdomain.xml is restrictive ?

link|improve this answer
feedback

Flash can be 'hacked' into consuming web services from any domain by using the browser's less-restrictive security model instead of Flash's security model.

I wrote one in ActionScript 3 and passes JSON to the browser with a callback return a native JSON object back to Flash. No server-proxy or external javascript needed.

JSONP.as - http://gist.github.com/1204728

In ActionScript call:

JSONP.get("http://api.twitter.com/statuses/user_timeline.json", 
        "{screen_name:'puppybits', count:'1'}", 
         function(data):void{ 
          trace('flash received cross-domain json:'+data)
        });
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.