I would like to connect to the Chat Hub (code from Scott's chat example) using SignalR .Net Client but not sure how to do it correctly.
I have used the following code but it fails to connect. After calling connection.Start(), no connection Id is returned.
var connection = new HubConnection("http://localhost:1065/");
var myHub = connection.CreateProxy("Mvc3SignalR.Models.Chat");
connection.Start();
Link to Scott's chat example http://www.hanselman.com/blog/AsynchronousScalableWebApplicationsWithRealtimePersistentLongrunningConnectionsWithSignalR.aspx