如何让 .Net Framework SignalR 客户端连接到 .Net Core SignalR 服务器?

问题描述 投票:0回答:2

这基本上是这个问题的副本,但存储库已存档,所以我不能在那里问它: https://github.com/aspnet/SignalR/issues/1645

我正在尝试使用 SignalR 将运行 .NET Framework 的旧应用程序连接到运行 .NET Core 的新应用程序。 我读过一些文章,说 SignalR 的 AspNetCore 和 AspNet 版本不兼容,因此目标是让 Microsoft.AspNetCore.SignalR.Client 在 .NET Framework 应用程序上运行。

我使用框架版本4.6.1制作了一个测试项目,我相信它是.NET Standard 2.0,所以我应该能够安装这个包https://www.nuget.org/packages/Microsoft.AspNetCore.SignalR .Client/1.0.0-preview1-final 根据 davidfowl 的评论 我无法在我的 4.6.1 项目上安装这个包,所以我一定做错了什么。

我还尝试了另一种解决方法,即使用 Microsoft.AspNetCore.SignalR.Client v3.1.6 代码创建 netstandard2.0 库,然后引用我的 4.6.1 项目中的 .dll。

我的netstandard2.0库中的3.1.6代码如下所示:

using Microsoft.AspNetCore.SignalR.Client;
using Microsoft.AspNetCore.SignalR;
using System;
using System.Collections.Concurrent;
public class SignalRConnection
{       
    private readonly HubConnection hubConnection;

    public SignalRConnection(string endpoint)
    {
        this.endpoint = endpoint;
        hubConnection = new HubConnectionBuilder()
         .WithUrl(endpoint)
         .Build();
    }
}

我通过转到 4.6.1 项目中的引用来引用此内容,右键单击并按添加引用并选择我的 netstandard2.0 项目。 我调用它的 4.6.1 代码是:

class Program
{
   static void Main(string[] args)
   {
      SignalRConnection connection = new SignalRConnection("http://localhost:8080/status");
   }
}

我想这可能是因为我没有使用 1.0.0,所以我也尝试了该版本。我得到相同的异常 FileNotFoundException 但对于每个不同的版本。

 System.IO.FileNotFoundException: 'Could not load file or assembly 'Microsoft.AspNetCore.SignalR.Client.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60' or one of its dependencies. The system cannot find the file specified.'

Cannot load Microsoft.AspNetCore.SignalR.Client.Core

有没有人有幸使用 SignalR 将 .NET Framework 应用程序连接到 .NET Core 应用程序,并且可以给我一些关于我哪里出错的指示?谢谢你

编辑:

Nuget SignalR error

我能够使用 VS 2019 将其安装到 4.6.1 项目中,但是当我尝试将其安装到 VS 2015 中的 4.6.1 项目中时,出现了上述错误

c# asp.net asp.net-core signalr
2个回答
4
投票

感谢 Camilo Terevinto 给我这个问题的答案。 如果您使用的是 VS 2019 那么这个问题已经解决了(只需使用 nuget 并安装)

但是如果你需要使用VS 2015,那么由于nuget已经过时,它无法工作。

https://www.nuget.org/downloads

安装最新的 nuget.exe

运行。 uget.exe 安装 Microsoft.AspNetCore.SignalR.Client -OutputDirectory C:\Projects\SignalR\ConsoleApplication1\ConsoleApplication1\packages

然后使用添加的包手动更新 .csproj/packages.config (注意我还需要将 netstandard 添加到我的项目中才能正常工作) 对于我的 .csproj:

<ItemGroup>
    <Reference Include="netstandard" />
    <Reference Include="Microsoft.AspNetCore.SignalR.Client.Core, Version=3.1.8.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
        <HintPath>..\packages\Microsoft.AspNetCore.SignalR.Client.Core.3.1.8\lib\netstandard2.0\Microsoft.AspNetCore.SignalR.Client.Core.dll</HintPath>
    </Reference>
...

安装此软件包时添加了更多参考资料,因此只需将它们全部添加(我不会在这里全部添加,因为有 20 多个)

然后对您的packages.config 执行相同的操作:

<?xml version="1.0" encoding="utf-8"?>
<packages>
    <package id="Microsoft.AspNetCore.Connections.Abstractions" version="3.1.8" targetFramework="net461" />
...

完成后,我刚刚重新启动了我的项目并能够使用 signalR 客户端


0
投票
Server:
    IIS ASP.Net Core 8.0,
    Microsoft.AspNetCore.SignalR 1.1.0,
    Microsoft.AspNetCore.SignalR.Core 1.1.0,
    Angular,
    Javascript successfully connected SignalR to server.

Client 1:
    IIS ASP.NET 4.8,
    Microsoft.AspNetCore.SignalR.Client 8.0.0.0,
    Microsoft.AspNetCore.SignalR.Client.Core 8.0.0.0,
    successfully connected SignalR to server.

Client 2:
   Windows C# Desktop UI App .NET Framework 4.8,
   Microsoft.AspNetCore.SignalR.Client 8.0.0.0,
   Microsoft.AspNetCore.SignalR.Client.Core 8.0.0.0,
   Failed connected SignalR to server.

Connection = new HubConnectionBuilder()
    .WithUrl("http://localhost/QMOSRFactor/rfactor",
        options => {
            options.Transports = HttpTransportType.WebSockets;
        })
    .WithAutomaticReconnect()
    .Build();

调用后:await Connection.StartAsync(); 什么也没发生。 Visual Studio 输出中没有错误。无一例外。

如果我将上面的代码包装在netstandard2.0库中。在 Client 2 项目中引用该库。同样什么也没发生。 Visual Studio 输出中没有错误。无一例外。

© www.soinside.com 2019 - 2024. All rights reserved.