SignalR:当前应用程序配置中不支持WebSockets

时间:2015-05-30 20:07:15

标签: asp.net iis signalr iis-express

我在我的项目中使用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:我在本地版和发布版都有这个问题。

1 个答案:

答案 0 :(得分:2)

经过长时间的调试,我发现了它。我忘了建立连接:

$.connection.hub.start()

});