I\'m using VS 2013 Express and the standard MVC5 template to create a new clean app. Authentication is enabled and I can log into the site just fine. I can see the user cont
The resolution to the program was very simple. In my startup class I had the code in the wrong order.
This is what I had when it wasn't working:
app.MapSignalR();
ConfigureAuth(app);
However, this is the correct order to have Signalr work with authentication:
ConfigureAuth(app);
app.MapSignalR();
This may be a no-brainer for most, but I think it's an easy mistake to make.