SignalR won#39;t use Websocket protocol even though I have the protocol installed in windows 8(即使我在 Windows 8 中安装了协议,SignalR 也不会使用 Websocket 协议)
问题描述
我正在使用 Signalr 在我的 Web 应用程序中执行一些实时事件.我正在尝试强制 signalr 使用新的 websocket 协议,但它不会,即使我指定了它.
I'm using signalr to do some real-time events in my web application. I'm trying to force signalr to use the new websocket protocol but it won't, even if I specify it.
$.connection.hub.start({ transport: 'webSockets' })
我确实安装了 Web 套接字协议,并且正在运行带有 IIS 8 的 Windows 8.
I definitely have the web socket protocol installed and I am running Windows 8 with IIS 8.
我还需要做什么才能在 Signalr 中启用 Web 套接字支持?
What else do I need to do to enable web sockets support in signalr?
推荐答案
确保您的应用正在使用 SignalR 包中的 .NET 4.5 程序集.如果项目以 4.0 为目标,或者以这种方式开始,那么 nuget 将添加对不支持 websocket 的 4.0 SignalR 程序集的引用.如果是这种情况,那么只需将信号器包卸载并重新安装到您的项目中.
Ensure that your app is using the .NET 4.5 assembly from the SignalR package. If the project is targeting 4.0, or it started that way, then nuget would have added a reference to the 4.0 SignalR assembly which doesn't support websockets. If that's the case, then just uninstall and re-install the signalr packages into your project.
这篇关于即使我在 Windows 8 中安装了协议,SignalR 也不会使用 Websocket 协议的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:即使我在 Windows 8 中安装了协议,SignalR 也不会使用 Websocket 协议
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 输入按键事件处理程序 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01