0

I am working on a project that will essentially run each part of a program on a complete separate computer. Reason for this because these are data servers, gaining data from a target program launched on the main users desktop. (very CPU intensive)

The application just needs to be able to send data and things like this across a network. One is a Console app and the other is a C# made operating system(Technically WPF, but replaces windows and just leaves a kernel).

So how would I go about doing this?

3
  • You can use Sockets for communication eachother. Commented Aug 25, 2016 at 18:14
  • does it connect via IP address? @VasoBeruashvili Commented Aug 25, 2016 at 18:53
  • Yes you can use IP of receiver/receivers to send information. Commented Aug 25, 2016 at 18:58

1 Answer 1

1

Since both applications are in C#, the easiest way will be to use Windows Communication Foundation (WCF) - https://msdn.microsoft.com/en-us/library/ms734712(v=vs.90).aspx

It allows you call remote methods as though they are just plain local methods.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.