Привет, я пытаюсь использовать signalR с asp.net mvc 5 и angular 7, но не могу установить соединение между концентратором
Вот мои коды
Angular 7
import { Component, OnInit } from '@angular/core';
import { HubConnection, HubConnectionBuilder } from '@aspnet/signalr';
import * as $ from '@aspnet/signalr'
@Component({
selector: 'app-admin-dashboard',
templateUrl: './admin-dashboard.component.html',
styleUrls: ['./admin-dashboard.component.scss']
})
export class AdminDashboardComponent implements OnInit {
private _hubConnection: HubConnection;
constructor() {
this._hubConnection = new HubConnectionBuilder()
.withUrl("http://localhost:4200/hub/cashnet", {
skipNegotiation: true,
transport: $.HttpTransportType.WebSockets
})
.configureLogging($.LogLevel.Information)
.build();
this._hubConnection.start().then(() => {
console.log('Hub connection started');
}).catch(err => {
console.log('Error while establishing connection :(')
});
this._hubConnection.on('sendMessage', (MachineId: string) => {
alert(MachineId);
});
}
ngOnInit(): void {
}
}
Startup.cs
public partial class Startup
{
public void Configuration(IAppBuilder app)
{
ConfigureAuth(app);
app.MapSignalR();
}
}
Hub / CashnetHub.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Microsoft.AspNet.SignalR;
namespace CashNet_API.Hubs
{
public class CashnetHub : Hub
{
public void sendMachineUpdate(string MachineId)
{
Clients.All.sendMessage(MachineId);
}
}
}
есть поддержка ASP.NET Core, но мы не используем ядро для этого приложения
это то, что я получаю в консоли Ошибка в консоли: img
заранее спасибо