Dynamically update Web Client with Real-Time Data

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I currently have a windows control that is hosted in a web page to provide
the client real-time data. The server gets a update and posts the data to
all connected clients via TCP. I would like to replicate this in the web
world using asp.net 2.0. The server gets updates and pushes the xml messages
to the connected clients. Would AJAX / DHTML do this? I don't want to
client to poll the server if possible. There can be 100s of events in
miliseconds, or none in 24 hours.

Thanks.
 
No it is built on top of HTTP which is pull based only. You would have to
use some form of delta based polling with it.

Cheers,

Greg
 
Back
Top