views:

84

answers:

2

I am wondering BlazeDS polling configuration, simple or long polling, is the best for a low bandwidth network.

A: 

HTTP Streaming should use the least amount of bandwidth and have the lowest latency. But make sure you configure a fail-over in case the connection can't be made.

James Ward
A: 

As James said, HTTP streaming. If you cannot do it (for example if you are not allowed to keep open connection for more than 20 seconds) I would stick with long polling over the simple one.

Cornel Creanga