I have signalR v2 installed and the link on my page
<script src="~/Scripts/jquery-1.10.2.min.js"></script> <script src="~/Scripts/jquery.signalR-2.2.0.min.js"></script> <script src="~/signalr/hubs"></script>
But sometimes I get an error in the browser debugger:
Error: You are using a client version that is incompatible with the server. Client version 1.5, server version undefined.
I think the problem is that the client looks like version 1.5. There are other packages in the project, such as Autofac SignalR 2 Integration, but I think they do not affect the client version.
source share