我在我的项目中使用SignalR 2.1.2。一切都很好,但今天我看到通知在我的项目中不起作用。我尝试解决问题所以我检查了Windows事件查看器并看到了这个error:
Exception information:
Exception type: InvalidOperationException
Exception message: WebSockets is unsupported in the current application configuration. To enable this, set the following configuration switch in Web.config:
<system.web>
<httpRuntime targetFramework="4.5" />
</system.web>....
我对这个问题有很多searched的看法。正如您所看到的,错误消息告诉我们设置targetFramework
,但我没有得到任何结果
PS:我在本地版和发布版都有这个问题。
答案 0 :(得分:2)
经过长时间的调试,我发现了它。我忘了建立连接:
$.connection.hub.start()
});