Tell me how to implement remote control between an application running on a computer and on the phone via a local network. I want the phone to control playback in the application running on the computer. Maybe what article is where or an example?

  • only WCF comes to mind. Xamarin can use simple http binding, and you don’t need more to make a “remote” from the phone like vrodeba. - rdorn

1 answer 1

Need a client-server application. The application on the computer will act as a server, wait for the connection and then wait for the command from the client. And from the client, respectively, the connection and sending commands in the form of http-requests. In general, the standard network interaction. For Kodi Media Center, there are management applications with w10m. There is an open source, you can see the implementation.

  • Or maybe there is a ready client-server package on NuGet? - Morgomirius
  • By the way, I read about AppService. And it seems to even work, but within the framework of a single application, both client and server logic + is also a background replay task. In short, the result does not work ( - Morgomirius