Re: Real time web page?

2001-10-26 Thread Paul Dillon
invisible applet that handles the communication, and use DHTML for the presentation. Cheers, Paul - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, October 25, 2001 2:16 AM Subject: Real time web page? Hi everyone. We are starting a new project

Re: Real time web page? There is a way

2001-10-26 Thread Mark Ashworth
[EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Real time web page? Date: Thu, 25 Oct 2001 11:14:25 +0800 Dave, It is limited by the HTTP protocol that the web server cannot 'push' data. The only pure HTML solution I'm aware of is to put a meta tag onto the page to ask

Re: Real time web page?

2001-10-26 Thread Paul Dillon
] Sent: Friday, October 26, 2001 10:29 AM Subject: Re: Real time web page? You can effectively push with a multipart response. The server can send each part whenever it wants - in response to a real-time event for example. Some guy put together a library for doing real-time updates by pushing

Re: Real time web page?

2001-10-26 Thread Erik Hatcher
. Erik - Original Message - From: Nathan Anderson [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, October 25, 2001 1:11 PM Subject: RE: Real time web page? Dave, There is a sample servlet created by Marty Hall in his book Core Servlets and JavaServer Pages [ISBN: 0-13

RE: Real time web page?

2001-10-26 Thread Tom Klaasen (TeleRelay)
: Re: Real time web page? Ick, I sent this email about 7 hours ago and it has only just appeared on the list. I sent a mail to ant-user yesterday still hasn't appeared. Anyone else having email probs with the jakarta mailing lists? - Original Message - From: Paul Dillon [EMAIL

Re: Real time web page?

2001-10-25 Thread Erik Hatcher
: Wednesday, October 24, 2001 12:16 PM Subject: Real time web page? Hi everyone. We are starting a new project and have a requirement for real-time updates in a web browser. Does anyone know of any tools that allow for this, apart from applets? Cheers, Dave

Re: Real time web page?

2001-10-25 Thread Robert Parker
] To: [EMAIL PROTECTED] Sent: Thursday, October 25, 2001 2:16 AM Subject: Real time web page? Hi everyone. We are starting a new project and have a requirement for real-time updates in a web browser. Does anyone know of any tools that allow for this, apart from applets? Cheers, Dave

Re: Real time web page?

2001-10-25 Thread John Yu
Dave, It is limited by the HTTP protocol that the web server cannot 'push' data. The only pure HTML solution I'm aware of is to put a meta tag onto the page to ask the browser to refresh (i.e. 'pull') the page periodically: META HTTP-EQUIV=Refresh CONTENT=3;URL=http://www.some.org/some.html

RE: Real time web page?

2001-10-25 Thread Justin Piper
To: [EMAIL PROTECTED] Subject: Real time web page? Hi everyone. We are starting a new project and have a requirement for real-time updates in a web browser. Does anyone know of any tools that allow for this, apart from applets? Cheers, Dave

RE: Real time web page?

2001-10-25 Thread Nathan Anderson
Parker [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 24, 2001 7:32 PM To: [EMAIL PROTECTED] Subject: Re: Real time web page? Hmmm - http is typically connectionless, however there are a few tricks to give the impression of what you require... You can get the server to serve a multipart response

RE: Real time web page?

2001-10-25 Thread Brian Gebbie
: [EMAIL PROTECTED]Subject: Re: Real time web page?Dave,It is limited by the HTTP protocol that the web server cannot 'push' data. The only pure HTML solution I'm aware of is to put a meta tag onto the page to ask the browser to refresh (i.e. 'pull') the page periodically: META HTTP

Real time web page?

2001-10-24 Thread dhay
Hi everyone. We are starting a new project and have a requirement for real-time updates in a web browser. Does anyone know of any tools that allow for this, apart from applets? Cheers, Dave