send data to all users using same web application?

  • Thread starter Thread starter Rich
  • Start date Start date
R

Rich

Is there a way to inform all users concurrently using same web
application when one user has made changes to data?

Remote scripting has that ability to send data to client but can't be
done without the client invoking the call to server.

Just need a kick in right direction.

Thanks!

Rich
 
If the client does not refresh (either manually or programatically) there is
no way to do it. One way *might* be to use AJAX and have each page poll the
server at regular intervals for an notification of a data change. That way
the user would not be aware of the polling because it would not be a page
refresh, just as request for data.
 
Hi,
If the client does not refresh (either manually or programatically) there is
no way to do it. One way *might* be to use AJAX and have each page poll the
server at regular intervals for an notification of a data change. That way
the user would not be aware of the polling because it would not be a page
refresh, just as request for data.

That's the way we do it, regularly poll from the server if changes
happened using a Web Service. If the information changed, the
corresponding zone in the web page is updated using DOM (client-side, no
postback). This is very comfortable and our users like it a lot. But
it's still a poll, i.e. a request/respose mechanism. Short of a Java
applet (or another plug-in using its own port), I don't see a way to
notify a client without it sending a request first.

HTH,
Laurent
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top