Hi All,

Just after a few ideas, and to see if the path I'm heading down is the correct one.

I want to build a client server application, we will have roughly 200 clients. Each client will recive an update from the server every 2 seconds or so. The update will just be an integer value, so not a lot of data really.

My current plan is to create a WCF application, and set up duplex communication between the clients and the server. Stick a timer in the server app and then send an update to my clients every 2 seconds.

Will be a bit more logic in the update as not evey client will need updating, but the above is roughly the plan.

So is wcf the right choice for a simple client server program? or should I be using something else?

Just any thoughts really.

Thanks.