I want to create an Android application that communicates with a server application (written in C #, it does not matter which version of .NET) is on the PC via TCP / IP. What would be the best approach here?
I was thinking of some kind of RPC-like SOAP or XML-RPC. But I want the server application to be as simple and easy as possible. And I think in C # you rely on a web server to configure your RPC server. Is it better to communicate directly through TcpListener?
source share