We can use polling to find out about updates from some source, for example, clients connected to a webserver. WCF provides a nifty feature in the way of Duplex contracts, in which, I can maintain a connection to a client, and make invocations on that connection at will. Some peeps in the office were discussing the merits of both solutions, and I wanted to get feedback on when each strategy is best used.
|
2
|
|
|
|
|
|
I would use an event-based mechanism instead of polling. In WCF, you can do this easily by following the Publish-Subscribe framework that Juval Lowy provides at his website, IDesign.net. |
|||
|
|
|
|
Depends partly on how many users you have. Say you have 1,000,000 users you will have problems maintaining that many sessions. But if your system can respond to 1000 poll requests a second then each client can poll every 1000 seconds. |
|||
|
|
|
|
I think Shiraz nailed this one, but I wanted to say two more things.
Something to think about. |
|||
|
