gpt4 book ai didi

c# - SignalR 在最终代理调用时失败

转载 作者:太空宇宙 更新时间:2023-11-03 15:29:31 32 4
gpt4 key购买 nike

我有一个 Web Api 服务,可以将 signalR 通知发送到我在同一个盒子上的 MVC 网站上运行的代理。经过大量调整后,我已经让 Web 服务与网站上的集线器通信,并通过调试日志记录确认。

在网站方面,似乎一切正常,并且似乎引用了我正在调用该网站的客户端浏览器。下面我将粘贴 Hub 类和调试日志输出来证明这一点。

最后一行是

Clients.Client(conn).addNotification(notification);

我假设它会寻找与该签名匹配的 JavaScript 方法。其中我有一个。下面是我的 JS 文件中的方法。

 notifyProxy.client.addNotification = function (notification) {
$notificationTableBody.prepend(rowTemplate.supplant(formatNotification(notification)));
};

但是在此设置断点(使用 chrome 开发人员工具),该方法永远不会被调用。 MVC 网站和开发人员工具控制台均未报告任何错误,但我不知道 SignalR 是否在其他地方写入错误。

唯一需要注意的是在 JS 文件中我有一行

$.connection.hub.start().done(init);

当我在 Chrome 开发者工具中设置断点时调用它。但是 init() 方法永远不会被调用。这是否意味着 hub.start() 方法可能会失败?如果是这样,我如何找出原因?

出了什么问题?我对 signalR 很陌生,所以我失去了理智!

我的集线器类的代码和下面的调试输出

public void PushNotification(EventNotification notification, List<string> users)
{
_logger.WriteDebug("Entered push notification");
if (notification.FriendlyText.Length > 1000)
notification.FriendlyText = notification.FriendlyText.Substring(0, 1000) + "...";
if (users.Contains("*") && users.Count > 1)
{
users.RemoveAll(u => !u.Equals("*"));
}
foreach (var userName in users)
{
_logger.WriteDebug("Push notification for " + userName);
UserConnectionInformation user = null;
if (UserInformation.TryGetValue(userName.ToUpperInvariant(), out user))
{
_logger.WriteDebug("Adding " + notification.FriendlyText + ", " + user.ConnectionIds.Count + " connections");
user.Notifications.Add(notification);
lock (user.ConnectionIds)
{
foreach (var conn in user.ConnectionIds)
{
_logger.WriteDebug("Is Client null - {0}", Clients.Client(conn) == null);
_logger.WriteDebug("Conn {0}", conn);
var proxy = Clients.Client(conn) as ConnectionIdProxy;
_logger.WriteDebug("proxy {0}", proxy.ToString());
Clients.Client(conn).addNotification(notification);
_logger.WriteDebug("Added notification ");
}
}
}
}
}

11-12-2015 12:19:43,808 [UK\kerslaj1][20] DEBUG Centrica.CE.SEFlex.Common.Logging.ConsoleLogger - Entered push notification
11-12-2015 12:19:43,808 [UK\kerslaj1][20] DEBUG Centrica.CE.SEFlex.Common.Logging.ConsoleLogger - Push notification for kerslaj1
11-12-2015 12:19:43,808 [UK\kerslaj1][20] DEBUG Centrica.CE.SEFlex.Common.Logging.ConsoleLogger - Push notification for UK\kerslaj1
11-12-2015 12:19:43,808 [UK\kerslaj1][20] DEBUG Centrica.CE.SEFlex.Common.Logging.ConsoleLogger - Adding Job 'testrose45job-11dec15121944' ('ROSE-0000045') cancellation has been requested by 'UK\kerslaj1' on 'seflexpool3'., 1 connections
11-12-2015 12:19:43,808 [UK\kerslaj1][20] DEBUG Centrica.CE.SEFlex.Common.Logging.ConsoleLogger - Is Client null - False
11-12-2015 12:19:43,808 [UK\kerslaj1][20] DEBUG Centrica.CE.SEFlex.Common.Logging.ConsoleLogger - Conn 3d008947-0d96-4965-bb01-dfd1517c24a5
11-12-2015 12:19:43,808 [UK\kerslaj1][20] DEBUG Centrica.CE.SEFlex.Common.Logging.ConsoleLogger - proxy Microsoft.AspNet.SignalR.Hubs.ConnectionIdProxy
11-12-2015 12:19:44,803 [UK\kerslaj1][20] DEBUG Centrica.CE.SEFlex.Common.Logging.ConsoleLogger - Added notification

最佳答案

看看您是否可以从代理中取回错误:

$.connection.hub.error(function (error) {
console.log('SignalR error: ' + error)
});

您可能还需要在开始连接之前启用客户端日志记录:

// enable client side logging
$.connection.hub.logging = true;
$.connection.hub.start()
.done(function(){ console.log('Now connected, connection ID=' + $.connection.hub.id); })
.fail(function(){ console.log('Could not Connect!'); });
});

让我们看看我们是否能从那里得到更多,以及集线器连接的开始是否是实际问题。

关于c# - SignalR 在最终代理调用时失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34225128/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com