1

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!!

Izza
  • 2,389
  • 8
  • 38
  • 60

1 Answers1

1

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.

Luca Matteis
  • 29,161
  • 19
  • 114
  • 169