SignalR没有传输

时间:2018-04-11 02:43:57

标签: signalr.client asp.net-core-signalr

尝试启动signal-r hub报告“错误:找不到可用的传输。”

但是,诊断捕获显示协商返回三个可用传输。

{
    "connectionId": "IsHpe_1ETRLz-flnJ3uKPg",
    "availableTransports": [
        {
            "transport": "WebSockets",
            "transferFormats": [
                "Text",
                "Binary"
            ]
        },
        {
            "transport": "ServerSentEvents",
            "transferFormats": [
                "Text"
            ]
        },
        {
            "transport": "LongPolling",
            "transferFormats": [
                "Text",
                "Binary"
            ]
        }
    ]
}

这是通过aspnetcore 2.1 preview2完成的,启动看起来像这样

    public void ConfigureServices(IServiceCollection services)
    {
        services.AddCors(options => options.AddPolicy("AllowAny", x =>
          x.AllowAnyHeader().AllowAnyMethod().AllowAnyOrigin()));
        services.AddSignalR();
        services.AddOptions();
        services.Configure<AppSettings>(Configuration);
        var connectionStrings = Configuration.GetSection("ConnectionStrings");
        var defaultConnectionString = connectionStrings[Configuration["DefaultConnectionString"]];
        services.AddDbContext<au1.Model.ProwlerDbContext>(options => 
          options.UseSqlServer(defaultConnectionString));
        services.AddMvc();
    }

    // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
    public void Configure(IApplicationBuilder app, IHostingEnvironment env)
    {
        app.UseCors("AllowAny");
        app.UseSignalR(routes =>
        {
            routes.MapHub<MessageHub>("/message");
        });
        if (env.IsDevelopment())
        {
            app.UseDeveloperExceptionPage();
            app.UseWebpackDevMiddleware(new WebpackDevMiddlewareOptions
            {
                HotModuleReplacement = true
            });
        }
        else
        {
            app.UseExceptionHandler("/Home/Error");
        }

        app.UseStaticFiles();

        app.UseMvc(routes =>
        {
            routes.MapRoute(
                name: "default",
                template: "{controller=Home}/{action=Index}/{id?}");

            routes.MapSpaFallbackRoute(
                name: "spa-fallback",
                defaults: new { controller = "Home", action = "Index" });
        });
    }

显然路由有效,或者协商不会出现在网络流量中。使用浏览器调用http://local:5000/message可以按预期生成消息Connection ID required

我离开了吗?

在客户端,这是我尝试连接的方式。

    this.signalr = new SignalR.HubConnection("http://localhost:5000/message");
    this.signalr.on("stateChange", (data: string) => {
        console.log(`SignalR: ${data}`);
        that.selection = data;
    });
    this.signalr.start().then(result=>{
        console.log("hub started");
    }).catch(err=>{
        console.log("hub failed to start");
    });

package.json说"_id": "@aspnet/signalr@1.0.0-preview1-update1",

.csproj说<PackageReference Include="Microsoft.AspNetCore.SignalR" Version="1.0.0-preview2-final" />

这些不一样。他们是否兼容,我不能说。

我不知道这些是如何失去同步的,因为我省略了版本来获取最新版本。 npm更新使客户端进入preview2,我现在将重新测试。

1 个答案:

答案 0 :(得分:2)

服务器和客户端的版本必须对齐。您需要确保两个客户端版本相同,方法是转到.csproj文件(对于服务器版本和/或C#客户端版本),以及package.json转到JavaScript / TypeScript客户端版本如果你使用npm安装它。

请注意,预览之间存在重大变化,因此您无法将-previewX客户端与previewY服务器一起使用。