0

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

Clay3981
  • 704
  • 1
  • 5
  • 6

2 Answers2

1

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
  • 29,283
  • 9
  • 49
  • 85
0

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
  • 5,311
  • 1
  • 22
  • 28