I am trying to get the sample https://github.com/SignalR/SignalR/wiki/QuickStart-Hubs to run with MVC4.
I added
<script src="/signalr/hubs" type="text/javascript"></script>
and have inlcuded jquery before singlar javascriptfiles in my html.
But i am getting the Chrome console error
http://localhost:35787/signalr/hubs/ 403 (Forbidden)
Uncaught TypeError: Cannot read property 'client' of undefined
Of course i installed the nuget-package and created the hub class. I have no folder /signalr/hubs?
I had created a folder “/signalr/hubs” in my project where i saved my hubs. This caused the error! After i removed it it works.