0

While DWR is said to be reverse AJAX technology, I wanted to understand if it is actually uses push based concept OR is in reality a polling based..

It would be great if you could elaborate the same with simple example to understand the concept better.

copenndthagen
  • 49,230
  • 102
  • 290
  • 442

1 Answers1

0

DWR can use both depending on the browser used.

If the browser supports push DWR can use this.

If the browser does not support push then DWR will use a polling mechanism.

You can read all this in the documentation.

Uwe Plonus
  • 9,803
  • 4
  • 41
  • 48
  • Oh...I never really knew it can be browser-based...did not find any specific browsers mentioned in the documentation though... – copenndthagen Aug 29 '13 at 07:08