Hi guys,
We have a browser based flash(AS2) client application which communicates with
.Net based server app. We are using traditional javascript way
[ie.ExternalInterface.call] to communicate between server and flash client.
We want to remove this dependency on javascript and directly send data to the server from flash. Many times the client has to handle large amount of data coming from server. Also we need to remove long polling between client and server.
Can this be possible using XMLSockets?like opening a socket on the server and clients sending data to this port. Also we need to be able to broadcast updates to multiple(or all) clients connected to the server.
Also we are looking at "Comet" for possible server client communication? Is it possible to integrate Flash,.net using comet?
are there any more approaches?
Thx Amit