SignalR .Net Client - Unexpected character encountered while parsing value
问题 I'm trying to set up a .Net client to send messages to my signalR hub from my service layer. I'm following this guide: http://www.asp.net/signalr/overview/signalr-20/hubs-api/hubs-api-guide-net-client#callserver This is what I have: _hubConnection = new HubConnection(_baseUrl); // "http://localhost:3806" _hubProxy = _hubConnection.CreateHubProxy("AppHub"); _hubConnection.Start().Wait(); The hub lives inside of the same project - it's an MVC application with forms authentication. I can never