views:

611

answers:

1

I need to try and implement port 80 flex games to server method.

I like to ask if someone already did it before or it is possible to manage flash/flex multi user games with long polling / comet server ?

+5  A: 

Of course it is possible. I'd suggest using URLStream (which provides low-level access to downloading data from URL) to receive data on client, since most other methods either do not give you downloaded data continuously (various Loaders) or have problems with proxies (Sockets). Note that URLStream gives you binary data. Use ProgressEvent.PROGRESS event to receive data continuously.

dragonfly