Search code examples
c#c++client-serverrmi

Is it possible that we could communicate C++ program in linux to a C# program acting as server using Remote Method Invocation?


Is it possible to implement client/server communication between a C++ program (client program) running in linux OS with a C# program(server program) running in Windows using RMI implementation?Can anyone suggest any possible way...Any kind of helpful reference is welcome


Solution

  • We could just write a C# program to listen messages from a particular port and write another C++ client program to write message to that port.As thus we could communicate both application.