webserverhtmlajax-push

Ajax Push Engine


I'm researching methods to find ways for an event driven web application where a server can push data to the web page. Can I use APE ?? If so how can I use it and some resources please??

Thank You!!


Solution

  • People have been writing event driven servers since the dawn of the network. A simple google search will find your way.

    However, since the client is a browser, your server must re-act upon keeping an HTTP connection open instead of simply doing socket work.

    This is basically the only small difference than say an IRC server or a simple chat server.