Is possible to connect using Javascript client to more than one SignalR
servers?
For example:
<script type="text/javascript">
$.connection.hub.url = 'http://server1.net/signalr';
var server1Hub = $.connection.server1Hub;
$.connection.hub.start().done(function () {
});
// i need to connect to server2
$.connection.hub.url = 'http://server2.net/signalr';
var server2Hub = $.connection.server2Hub;
$.connection.hub.start().done(function () {
});
</script>
Trying to connect (again) the second time gives me an error:
'server1Hub' Hub could not be resolved.
Can i create two instances of $.connection
? Obviously i think modifying the same connection
can create many issues.