-
c# Sockets
Hi,
I am going to be having data from external sensors being displayed graphically as dials and guages in a WPF application. This data needs to be streamed to, and displayed on, 2 other applications on remote machines (over a wifi network)
What is the "best" way of having this data streamed over the network form the original application?
Any pointers will be handy.
Cheers,
mike
-
Re: c# Sockets
I don't know about the best way, but I would make a server application, which has access to the data. The client apps can then create a socket connection to the server and send a request for data.
I'll elaborate if you are planning on doing this :)