Is there a reason why the Java client for SignalR only supports exactly version 1.3?
https://github.com/SignalR/java-client/blob/f226631da562cfaacbe8b16d5a9ecbf8205e7c99/signalr-client-sdk/src/microsoft/aspnet/signalr/client/Connection.java#L597
Shouldn't all clients be backwards compatible? Is there any harm done and changing the verifyProtocolVersion
method to verify that the protocol is less than or equal to 1.3? For testing purposes, I simply returned true, skipping the entire method body, to see if it worked with my 1.2.1 server, and it did.
Maybe this should be considered a bug?