After posting a question about the best way to call server methods from clients and clients method from server using C#, I'm trying to start using SignalR but I'm not familiar at all with the web programming.
I would like to use a Windows service as SignalR server and .NET Windows applications as clients. I saw in some other questions asked 1 year ago (like this console app example and this other one) that the best solution would be to use Owin self-host on the server-side, and a HubProxy in the client applications.
Is it still the best approach?
Thanks!