I am aware of communication between a C# server and C# client using SignalR
. Along with C# client, I have C++ client apps where I need to communicate with the same C# server that is used to communicate with C# clients.
For communication between C# server(console application) and C# clients(Desktop) i followed the approach in SignalR Desktop approach
In the above link it is very clear how do we establish a connection to hub and communicate with the server. Similarly I want to have MFC application as client and I want send some messages to the MFC client from C# server. I don't have any idea like how do i establish a connection from MFC app. I don't know whether it is possible or not.
Could anyone please help with a sample on how C++ signalR
client connects to a C# client.