Thursday, August 6, 2009

Learned today: Reverse Ajax

http://directwebremoting.org/dwr/media/dwr-logo-200.gif Issue 1.09 of Javamagazin has an interesting article about DWR.

Particularly nice is the explanation and overview of Reverse Ajax.

There are three techniques how to realize Reverse Ajax:
  • Polling - bases on continuous requests by the client, if the server has data he can put it in a response.


  • Comet - based on long requests, there is always a request available on which the server can send a response. Comet itself can be realized in two ways:

  • Long Polling: Server sends a complete HTTP Response. Request is closed. Client immediately sends a new request.

  • Streaming: The server returns only a Partial HTTP Response, the initial request is not closed.

  • Piggyback - fully passive, client events are needed. Server sends additional data on top of a normal response.


  • 1 comment:

    1. If you're looking for a Comet / Reverse Ajax Server you may wish to look at StreamHub Comet Server.

      ReplyDelete

    Related Posts Plugin for WordPress, Blogger...