views:

715

answers:

2

Apart from using BlazeDS, are there any pre-existing libraries that implement long polling (or server push) in Flex?

Note: I've read I like to implement Flex to Server comet / long polling for games, but he's only asking if it's possible to implement… Not if implementations exist.

+1  A: 

It looks like one possible solution is AmFast, an AMF/remoting implementation in Python: http://code.google.com/p/amfast/

David Wolever
Faster (2x-12x) AMF encoding/decoding than PyAMF, push notifications, actively maintained and Django examples. You've just made my day!
sdolan
+1  A: 

GraniteDS can do this.

A little different, and not really the projects focus, but Red5 can also do this.

Joel Hooks