<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=windows-1250"
 http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
<br>
Rusty Shackleford wrote:
<blockquote cite="mid036501c5614d$a5085550$6402a8c0@bigdog" type="cite">
  <blockquote type="cite">
    <pre wrap="">

It doesn’t seem to be complicated but for example, the things 
that bother me are refreshes, I don’t want to use meta 
refreshes for this monitoring webpage every X seconds, 
rather, use something more realtime... Any ideas? 
    </pre>
  </blockquote>
  <pre wrap=""><!---->
And that's the real trick. Web browsers, unless they are instructed to
do otherwise, don't DO anything once they've completed loading a page.
So without instructing them to refresh, they aren't going to be aware of
a server-side change, such as an incoming call. For that, you're going
to have to have some way of sending a message TO the client machine,
have it received by that machine, and have that client machine take the
desired action (pop up an incoming call dialog, load a contact record,
etc.).
  </pre>
</blockquote>
<br>
<a class="moz-txt-link-freetext" href="http://wp.netscape.com/assist/net_sites/pushpull.html">http://wp.netscape.com/assist/net_sites/pushpull.html</a><br>
<br>
Would that work?  Especially the "server push". Not sure if current
browsers like it or not.  I've never tried it, but came across this
document, and thought it may be something useful.<br>
<br>
- Dan<br>
</body>
</html>