我正在使用SignalR.client DLL与使用SignalR的网站对话。 当客户端和站点在同一台机器上时,它可以很好地工作。 (立即调用hub方法)
但是,现在我通过网络在一台机器上设置了站点,调用(调用)平均需要2.5秒。 (但工作)
我在< 1ms。
中ping机器使用Wireshark我看到数据包在2.5秒后发送。
我调试了SignalR.client dll并且它停留在System.Threading.Task级别(在此处调用,在HttpHelper.cs中)
[SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes", Justification = "Exceptions are flowed back to the caller.")]
public static Task<Stream> GetHttpRequestStreamAsync(this HttpWebRequest request)
{
try
{
return Task.Factory.FromAsync<Stream>(request.BeginGetRequestStream, request.EndGetRequestStream, null);
}
catch (Exception ex)
{
return TaskAsyncHelper.FromError<Stream>(ex);
}
}
有什么想法可以减缓这个过程吗?
非常感谢。
ps:我使用SignalR聊天示例来重现延迟。
pps:这是我的测试应用程序的(非常简单的)代码:
var connection = new HubConnection("http://IP:PORT/SITENAME/");
var myHub = connection.CreateHubProxy("ChatHub");
// Start the connection
connection.Start().Wait();
while (true)
{
string sMsg = string.Format("Hello world from winform! Sent(winform) at {0}", DateTime.Now.ToString("hh:mm:ss.fff"));
Console.WriteLine("Sending data : " + sMsg);
myHub.Invoke("Send", "Winform", sMsg).ContinueWith(task2 =>
{
if (task2.IsFaulted)
{
Console.WriteLine("An error occurred during the method call {0}", task2.Exception.GetBaseException());
}
else
{
Console.WriteLine("Successfully called MethodOnServer at {0}", DateTime.Now.ToString("hh:mm:ss.fff"));
}
});
Thread.Sleep(60*1000);
}
答案 0 :(得分:0)
问题是由于本地网络配置错误造成的。 我的专业计算机使用自动配置脚本+自动检测连接参数,这减缓了一切。 (=&gt;愚蠢浪费时间)
感谢大卫的回答&amp;关于使用Fiddler的建议(一切都运行正常,因为我发现Fiddler重写代理配置)