信号无法连接远程服务器

本文关键字:服务器 连接 信号 | 更新日期: 2023-09-27 18:17:27

所以,我安装了信号库,除了远程连接外,一切都工作得很好。我的客户端很容易连接到本地服务器,但当我尝试远程连接时,我得到下一个错误:无法连接远程服务器。

防火墙关闭

StartUp.cs

[assembly: OwinStartup(typeof(PushNotifier.StartUp))]
namespace PushNotifier
{
 public class StartUp
 {
  public void Configuration(IAppBuilder appBuilder)
  {      
   appBuilder.Map("/signalr", map =>
    {
     var hubConfiguration = new HubConfiguration
      {
       EnableDetailedErrors = true,
      };
     map.UseCors(CorsOptions.AllowAll);
     map.RunSignalR(hubConfiguration);
    });
  }
 }
}

Program.cs

  public static void Main(string[] args)
  {
   try
   {
    using (WebApp.Start("http://*:8734"))
    {
     while (true)
     {
      var pressedKey = Console.ReadKey(true).Key;
      switch (pressedKey)
      {
       case ConsoleKey.P:
        {
         var hubEntity = new HubEntity();
         hubEntity.SendNotification("hidden", JsonConvert.DeserializeObject<VersionEntity>(FileHelper.OpenFile(filePath)).Version);           
        }
        break;
       case ConsoleKey.Escape:
        return;
      }
     }
    }
   }
   catch (Exception ex)
   {
    MessageBox.Show(ex.Message + "|" + ex.StackTrace);
   }
  }

Client.cs

 var connection = new HubConnection("http://10.0.0.18:8734/signalr");
   var hubProxy = connection.CreateHubProxy("HubEntity");
   hubProxy.On<string, string>("addMessage", (message, version) =>
    {
     try
     {
      Console.WriteLine("Connected");
     }
     catch (Exception ex)
     {
      MessageBox.Show(ex.Message);
     }
    });
   try
   {
    await connection.Start();
   }
   catch (Exception ex)
   {
    MessageBox.Show(ex.Message, string.Empty, MessageBoxButton.OK, MessageBoxImage.Error);
    Application.Current.Shutdown();
   }

信号无法连接远程服务器

我最近帮助了另一个用户,他在网络上遵循了类似或相同的示例,我这么说的原因是因为代码非常相似,方法几乎相同。

我发现在远程部署服务器时尝试连接时出现的一个问题。很简单,

var connection = new HubConnection("http://10.0.0.18:8734/signalr");

改成

var connection = new HubConnection("http://10.0.0.18:8734/");

谜题的下一部分可能是端口,然而基于这样一个事实,当你浏览到这个地址时,你会得到未知的传输错误,这在这种情况下是好的,所以端口是开放的,通信是正常的。

另一个常见的问题是实际的集线器名称,有些人把情况搞错了,但是为了让我们检查这一点,您需要向我们提供集线器实现,或者您可以简单地尝试阅读有关名称和在某些情况下方法需要在signalr客户端更改情况的方法。

的另一个问题在于使用时等待connection.Start ();

我看不到包含此代码的函数,但如果它没有标记为异步,则上述调用将同步运行并会产生一些问题,这只有在客户端和服务器在单独的机器上时才真正可见,当延迟开始发挥作用时。为了消除这种情况,我建议尝试

hubConnection.Start().Wait();

进一步帮助,很难确定您下一步要做什么,但我将假设您没有超过连接点,这就是为什么您没有放置其余代码的原因。

我只是为了参考去放置代码,我知道是针对一个类似的例子,代码是一个控制台版本的例子。

{
    static void Main(string[] args)
    {
        Console.WriteLine("Starting client  http://10.0.0.18:8734/");
        var hubConnection = new HubConnection("http://10.0.0.18:8734/");
        //hubConnection.TraceLevel = TraceLevels.All;
        //hubConnection.TraceWriter = Console.Out;
        IHubProxy myHubProxy = hubConnection.CreateHubProxy("MyHub");
        myHubProxy.On<string, string>("addMessage", (name, message) => Console.Write("Recieved addMessage: " + name + ": " + message + "'n"));
        myHubProxy.On("heartbeat", () => Console.Write("Recieved heartbeat 'n"));
        myHubProxy.On<HelloModel>("sendHelloObject", hello => Console.Write("Recieved sendHelloObject {0}, {1} 'n", hello.Molly, hello.Age));
        hubConnection.Start().Wait();
        while (true)
        {
            string key = Console.ReadLine();
            if (key.ToUpper() == "W")
            {
                myHubProxy.Invoke("addMessage", "client message", " sent from console client").ContinueWith(task =>
                {
                    if (task.IsFaulted)
                    {
                        Console.WriteLine("!!! There was an error opening the connection:{0} 'n", task.Exception.GetBaseException());
                    }
                }).Wait();
                Console.WriteLine("Client Sending addMessage to server'n");
            }
            if (key.ToUpper() == "E")
            {
                myHubProxy.Invoke("Heartbeat").ContinueWith(task =>
                {
                    if (task.IsFaulted)
                    {
                        Console.WriteLine("There was an error opening the connection:{0}", task.Exception.GetBaseException());
                    }
                }).Wait();
                Console.WriteLine("client heartbeat sent to server'n");
            }
            if (key.ToUpper() == "R")
            {
                HelloModel hello = new HelloModel { Age = 10, Molly = "clientMessage" };
                myHubProxy.Invoke<HelloModel>("SendHelloObject", hello).ContinueWith(task =>
                {
                    if (task.IsFaulted)
                    {
                        Console.WriteLine("There was an error opening the connection:{0}", task.Exception.GetBaseException());
                    }
                }).Wait();
                Console.WriteLine("client sendHelloObject sent to server'n");
            }
            if (key.ToUpper() == "C")
            {
                break;
            }
        }
    }
}