Я впервые работаю с SignalR и пытаюсь подключиться к хабу из Angular.Я пытаюсь реализовать то же самое в этой ССЫЛКЕ
Я не уверен, откуда происходят эти переговоры
ОПЦИИ http://localhost:5001/messageHub/negotiate net :: ERR_CONNECTION_REFUSED
Вот мой код.
public startConnection = () => {
this.hubConnection = new signalR.HubConnectionBuilder()
.withUrl('http://localhost:5001/messageHub')
.build();
this.hubConnection
.start()
.then(() => alert('Connection started'))
.catch(err => alert('Error while starting SignalR connection: ' + err));
}
Вот appsettings.Development.json
"Logging": {
"LogLevel": {
"Default": "Debug",
"System": "Information",
"Microsoft": "Information"
}},
"SignalR": {
"messageHub": "http://localhost:5001/messageHub"
},
"Api": {
"GenerateTokenUrl": "http://localhost:5000/api/Values"
}
Это дает мне эту ошибку в инструментах Chrome Dev