SignalR错误“无法建立连接,因为目标计算机主动拒绝它”

时间:2016-07-29 19:26:40

标签: c# asp.net angularjs asp.net-web-api signalr

我有一个带有AngularJS前端(客户端)和Web API后端(服务器)的单页面应用程序(SPA)。我还使用SignalR在客户端和服务器之间进行消息传递。在我的开发机器(使用IIS Express)上一切正常,但是当部署到服务器进行测试时,我在尝试建立到集线器的连接时收到以下错误:

  

抛出异常:System.Net.Http.HttpRequestException:发送请求时发生错误。 ---> System.Net.WebException:无法连接到远程服务器---> System.Net.Sockets.SocketException:无法建立连接,因为目标计算机主动拒绝它127.0.0.1:60161      在System.Net.Sockets.Socket.EndConnect(IAsyncResult asyncResult)      在System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure,Socket s4,Socket s6,Socket& socket,IPAddress& address,ConnectSocketState state,IAsyncResult asyncResult,Exception& exception)      ---内部异常堆栈跟踪结束---      在System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)      在System.Net.Http.HttpClientHandler.GetResponseCallback(IAsyncResult ar)      ---内部异常堆栈跟踪结束---      在System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(任务任务)      在System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(任务任务)      在CM:.Messaging.PublisherService.CreateRequestService.d__7.MoveNext()在C:\ Users ... \ CreateRequestService.cs:第143行

即使它从客户端成功连接到SignalR集线器:

SignalR Hub Connection

我的客户端SignalR代码的相关部分是这个(在AnglarJS服务中):

    // Setting up the SignalR hub
    var hub = new Hub("reportHub", {
        listeners: {
            'newConnection': function (id) {
            },
            'broadcastReportProgress': function (reportProgress) {

                Reports.add(reportProgress[0].clientName, reportProgress[0].folderPath, reportProgress[0].reportName, reportProgress[0].status, reportProgress[0].userName);
                $rootScope.$apply();
            },
            'broadcastUserGenerating': function(reportProgress) {
                Reports.addActiveUser(reportProgress.clientName, reportProgress.status, reportProgress.userName);
                $rootScope.$apply();
            }
        },
        methods: ['send'],
        errorHandler: function(error) {
            console.error(error);
        },
        hubDisconnected: function () {
            if (hub.connection.lastError) {
                hub.connection.start();
            }
        },
        transport: 'webSockets',
        logging: true,
        queryParams: { userName: authService.authentication.userName },

        rootPath: 'http://localhost:60161/signalr'
    });

错误发生在以下代码片段中,该代码片段位于尝试与SignalR集线器建立连接的Window Service中(错误行对应于上面错误消息中的“CreateRequestService.cs:line 143”):

        try
        {
            IList<ReportProgress> generationProgress = new List<ReportProgress>();
            generationProgress.Add(new ReportProgress
            {
                ClientName = clientName,
                FolderPath = response.FolderPath,
                ReportName = response.Response,
                Status = "InProgress",
                UserName = response.UserName
            });

            var hubConnection = new HubConnection("http://localhost:60161/signalr", false);
            IHubProxy reportHubProxy = hubConnection.CreateHubProxy("ReportHub");

            **await hubConnection.Start(); --> ERROR OCCURS HERE**

            await reportHubProxy.Invoke("SendReportProgress", generationProgress);
            await reportHubProxy.Invoke("SendUserGenerating", generationProgress[0]);
        }
        catch (Exception ex)
        {
            throw new Exception(nameof(this.GetType) + " ****Exception**** ", ex);
        }

SignalR中心位于我的Web API项目中:

SignalR Hub Location

以下是Web API项目的项目属性。这是设置端口号60161的位置。由于跨域兼容性,此号码与运行SPA的端口不同:

APR Project Properties

知道为什么会这样吗?

1 个答案:

答案 0 :(得分:3)

经过多次调试后,我终于找到了问题所在。事实上,这里有两个不同的问题。首先,由于代码已部署到测试服务器,&#34; localhost&#34;不应该在任何地方使用。相反,测试服务器的URL带有后缀&#39; signalr&#39;应该使用,例如&#39; http://testserver.companyname.com/signalr&#39;。其次,在我的客户端SignalR集线器代码中,我有以下几行:

transport: 'webSockets'

这导致了一个问题,因为在我们的测试服务器上没有启用Web套接字,因此没有要使用的传输。一旦我注释掉了那行代码,它就开始工作了,但它正在使用服务器端事件(SSE)进行传输,因为Web套接字不可用。在我们进入IIS并安装并启用它们之后,它开始使用Web套接字而不是SSE。 所以你有它,解决这个棘手的问题。希望这会帮助其他人,所以他们不必花费大约2天的时间来解决这个问题。