Signalr doesn't load my hubs:
SignalR: Error loading hubs. Ensure your hubs reference is correct, e.g. <script src='/signalr/js'></script>. 
I am calling app.MapSignalR(); in startup configuration.
I added to my cshtml:
<script src="~/Scripts/jquery-1.9.1.js"></script>
<script src="~/Scripts/jquery.signalR-2.0.0.js"></script>
<script src="~/signalr/hubs" type="text/javascript"></script>
<script>
    $(document).ready(function () {
        window.hubReady = $.connection.hub.start();
    });
</script>
                Make sure your startup class has this attribute:
[assembly: OwinStartup(typeof(MyStartupClass))]
You can define your Owin startup class in your web.config as well:
<appSettings>  
    <add key="owin:appStartup" value="MyNamespace.MyStartupClass" />
</appSettings>
                        Visit your site, ex http://localhost/signalr/hubs, and see if you can get a better error description there. My problem was that I had a generic method in my hub.
public void Update<T>(T objectToUpdate) where T : class
                        Also make sure to add in your Startup class:
app.MapSignalR();
Solved my issue
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With