12

我正在尝试在我的 ASP.NET Core 3.0 Blazor(服务器端)应用程序和 Azure SignalR 服务之间建立连接。我最终会将我的 SignalR 客户端(服务)注入到一些 Blazor 组件中,以便它们实时更新我的​​ UI/DOM。

.StartAsync()我的问题是当我在集线器连接上调用我的方法时收到以下消息:

响应状态码不表示成功:404(未找到)。

引导信号RClient.cs

此文件加载我的 SignalR 服务配置,包括 URL、连接字符串、密钥、方法名称和集线器名称。这些设置在静态类中被捕获并在SignalRServiceConfiguration以后使用。

public static class BootstrapSignalRClient
{
    public static IServiceCollection AddSignalRServiceClient(this IServiceCollection services, IConfiguration configuration)
    {
        SignalRServiceConfiguration signalRServiceConfiguration = new SignalRServiceConfiguration();
        configuration.Bind(nameof(SignalRServiceConfiguration), signalRServiceConfiguration);

        services.AddSingleton(signalRServiceConfiguration);
        services.AddSingleton<ISignalRClient, SignalRClient>();

        return services;
    }
}

SignalRServiceConfiguration.cs

public class SignalRServiceConfiguration
{
    public string ConnectionString { get; set; }
    public string Url { get; set; }
    public string MethodName { get; set; }
    public string Key { get; set; }
    public string HubName { get; set; }
}

SignalRClient.cs

public class SignalRClient : ISignalRClient
{
    public delegate void ReceiveMessage(string message);
    public event ReceiveMessage ReceiveMessageEvent;

    private HubConnection hubConnection;

    public SignalRClient(SignalRServiceConfiguration signalRConfig)
    {
        hubConnection = new HubConnectionBuilder()
            .WithUrl(signalRConfig.Url + signalRConfig.HubName)
            .Build();            
    }

    public async Task<string> StartListening(string id)
    {
        // Register listener for a specific id
        hubConnection.On<string>(id, (message) => 
        {
            if (ReceiveMessageEvent != null)
            {
                ReceiveMessageEvent.Invoke(message);
            }
        });

        try
        {
            // Start the SignalR Service connection
            await hubConnection.StartAsync(); //<---I get an exception here
            return hubConnection.State.ToString();
        }
        catch (Exception ex)
        {
            return ex.Message;
        }            
    }

    private void ReceiveMessage(string message)
    {
        response = JsonConvert.DeserializeObject<dynamic>(message);
    }
}

我有将 SignalR 与 .NET Core 一起使用的经验,您可以在其中添加它,以便Startup.cs文件.AddSignalR().AddAzureSignalR()在应用程序配置中使用和映射集线器,并且这样做需要建立某些“配置”参数(即连接字符串)。

鉴于我的情况,从哪里HubConnectionBuilder获得连接字符串或密钥以对 SignalR 服务进行身份验证?

404 消息是否可能是缺少密钥/连接字符串的结果?

4

2 回答 2

10

好的,事实证明文档在这里缺少关键信息。如果使用 .NET SignalR 客户端连接到 Azure SignalR 服务,则需要请求 JWT 令牌并在创建集线器连接时提供它。

如果您需要代表用户进行身份验证,可以使用此示例。

否则,您可以使用 Web API(例如 Azure 函数)设置“/negotiate”端点,为您检索 JWT 令牌和客户端 URL;这就是我最终为我的用例所做的。可以在此处找到有关创建 Azure 函数以获取 JWT 令牌和 URL 的信息。

我创建了一个类来保存这两个值:

SignalRConnectionInfo.cs

public class SignalRConnectionInfo
{
    [JsonProperty(PropertyName = "url")]
    public string Url { get; set; }
    [JsonProperty(PropertyName = "accessToken")]
    public string AccessToken { get; set; }
}

我还在我的内部创建了一个方法SignalRService来处理与 Azure 中 Web API 的“/negotiate”端点的交互、集线器连接的实例化以及使用事件 + 委托来接收消息,如下所示:

SignalRClient.cs

public async Task InitializeAsync()
{
    SignalRConnectionInfo signalRConnectionInfo;
    signalRConnectionInfo = await functionsClient.GetDataAsync<SignalRConnectionInfo>(FunctionsClientConstants.SignalR);

    hubConnection = new HubConnectionBuilder()
        .WithUrl(signalRConnectionInfo.Url, options =>
        {
           options.AccessTokenProvider = () => Task.FromResult(signalRConnectionInfo.AccessToken);
        })
        .Build();
}

functionsClient是一个简单的强类型HttpClient预配置,带有基本 URL,FunctionsClientConstants.SignalR是一个静态类,带有附加到基本 URL 的“/negotiate”路径。

一旦我完成了这一切,我打电话给await hubConnection.StartAsync();它,它“连接”了!

毕竟我设置了一个静态ReceiveMessage事件和一个委托如下(在同一个SignalRClient.cs):

public delegate void ReceiveMessage(string message);
public static event ReceiveMessage ReceiveMessageEvent;

最后,我实现了ReceiveMessage委托:

await signalRClient.InitializeAsync(); //<---called from another method

private async Task StartReceiving()
{
    SignalRStatus = await signalRClient.ReceiveReservationResponse(Response.ReservationId);
    logger.LogInformation($"SignalR Status is: {SignalRStatus}");

    // Register event handler for static delegate
    SignalRClient.ReceiveMessageEvent += signalRClient_receiveMessageEvent;
}

private async void signalRClient_receiveMessageEvent(string response)
{
    logger.LogInformation($"Received SignalR mesage: {response}");
    signalRReservationResponse = JsonConvert.DeserializeObject<SignalRReservationResponse>(response);
    await InvokeAsync(StateHasChanged); //<---used by Blazor (server-side)
}

我已将文档更新提供给 Azure SignalR 服务团队,当然希望这对其他人有所帮助!

于 2019-10-12T19:31:02.857 回答
0

更新:管理 SDK ( sample )不推荐使用带有无服务器示例的示例。管理 SDK 使用协商服务器。

于 2020-10-26T20:43:50.300 回答