I create my own Signal R server using the following code:
internal class Config { internal static string serverurl = null; internal static Microsoft.AspNet.SignalR.HubConfiguration hubconfiguration = null; internal static SignalRHub Hub { get; set; } internal static void StartServer() { serverurl = "http://localhost:8080";
I also created several client applications connecting to this SignalR server through a hub, and everything works fine when I test on my local computer.
But when I try to connect to the server using the IP address of a domain computer or the computer name instead of http://localhost:8080 (from another computer on the domain network or even from my local computer), I get an error message as the server was not found.
Could you help me connect to my SignalR server using the IP address instead of "localhost"?
source share