Does this work with latest socketIO 1.3.4 and if not what changes are needed?
Did you find something? I have working example with 1.3.4, but not working in chrome... i trying find why..
when u connect, it should be requested 'crossdomain.xml' file only in chrome browser. I don't know why... but u can check in Network console in chrome browser.
so I placed 'crossdomain.xml' and added some code in node.js.
app.get('/crossdomain.xml', function(req, res){ res.sendfile('crossdomain.xml'); });
everything is fine. It should be work.
Pls let me know... anyone who know why chrome request 'crossdomain.xml' file. is it related to PPAPI?
Flash socket request the policyFile via TCP, not HTTP-GET.
I'm not talking about Flash socket. In this project, a connection always starts with polling request via HTTP-POST. Only in chrome, there's a request(GET) for crossdomain.xml. so should be placed in crossdomain.xml in root path. (like http://localhost:3000/crossdomain.xml)

@andrewmillion could you supply a working example?