CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: c# Sockets

  1. #1
    Join Date
    Jun 2011
    Posts
    5

    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

  2. #2
    Join Date
    May 2007
    Location
    Denmark
    Posts
    623

    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
    It's not a bug, it's a feature!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured