为什么在Azure SignalR上调用通知时出现连接错误

时间:2019-11-03 03:41:16

标签: azure signalr

我已在Azure帐户上配置了SignalR资源,并使用C#编写的Azure函数中的以下代码段将消息发送到SignalR集线器:

await signalRMessages.AddAsync(new SignalRMessage()
            {
                Target = "notify",
                Arguments = new object[] { requestBody }
            });

但是,我不断收到以下错误消息。

A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond

我还验证了Azure函数的协商函数URL是否按预期向我返回了以下信息。

{“ endpoint”:“ https://xxxxxxx.service.signalr.net:5001/client/?hub=broadcast”,“ accessKey”:“ yyyyyyyy”}

为什么会出现连接错误,我该如何更改配置?

1 个答案:

答案 0 :(得分:0)

此错误表示没有服务器在您尝试连接的指定IP /端口上侦听。使用错误的IP地址或错误的PORT可能导致此错误。