Pretty much the opposite of the push side of the server, also known as Comet . I am wondering if you can use durable HTTP connections to transfer information to the server.
Unlike simple XHR, the connection will be kept alive, and data will be periodically transmitted to the server, as the user performs actions, etc.
Using standard technologies, I do not think this is possible, but I am open to suggestions about possible operational capabilities or inventive ways to achieve this. The goal would be to populate the data with low latency to the server for fast and efficient unidirectional streaming.
I'm not interested in using socket implementations with flash / java bridges because of the complexity of serving cross domain policies or obtaining java signatures. Raw hacks that work without additional dependencies are welcome. Preferably, the solution is implemented using javascript.
source
share