Home All Groups Group Topic Archive Search About
Author
21 Apr 2006 11:48 AM
Jon Vaughan
Hello,

I have an NTIER Model written in VB.NET, at the moment is running as a
client / server. Pushing a pulling data from the client to the server is
fine and is done via webservice calls. But how do I go about a call from the
server to the clients ?

An example would be that the clients are using a disconnected  dataset and
need to be informed that the dataset has been altered and needs refreshing.

An easy answer would be to have the client refersh at given intervals or
manually when the client desires, but this isnt ideal. Ideally it would be
update when new data hits the sevrer, a more automated approach.

Thanks for reading ...

Author
21 Apr 2006 1:33 PM
Spam Catcher
"Jon Vaughan" <jonnyvaug***@hotmail.com> wrote in
news:cE32g.78957$iS4.42038@fe05.news.easynews.com:

> An example would be that the clients are using a disconnected  dataset
> and need to be informed that the dataset has been altered and needs
> refreshing.
>
> An easy answer would be to have the client refersh at given intervals
> or manually when the client desires, but this isnt ideal. Ideally it
> would be update when new data hits the sevrer, a more automated
> approach.

WebServices is 1-way... it's not intended to push data (or maintain state)
about a client.

You're looking at using Remoting instead. Perhaps singleton remoting with
bi-directional communications.