我可以在信号R客户端和由C#构成的控制台之间建立一个通信,作为侦听端口的服务器。那些comunicatios在当地主机上工作得很好。它也使用同一局域网中的两台计算机。一个用作服务器,另一个用作客户端。
当我想在外部服务器(特别是我雇用的亚马逊服务器)中从C#运行我的程序时,问题就出现了。在这种情况下,服务器运行正常,但客户端无法访问它。
我认为我的问题可能是服务器提供公共IP(54.xxx.xxx.xxx)和私有IP(172.xxx.xxx.xxx)。在我的程序中,我引用了公共IP。
我相信它可能是问题所在,但我不知道如何通过私密IP进行通信。我将在下面留下代码。谢谢你的帮助。
客户端:
<!DOCTYPE html>
<html>
<head>
<title>SignalR Simple Chat</title>
</head>
<body>
What's your name?: <input type="text" id="message" />
<input type="button" id="sendmessage" value="Send" />
<!--Script references. -->
<!--Reference the jQuery library. -->
<script src="Scripts/jquery-1.6.4.min.js"></script>
<!--Reference the SignalR library. -->
<script src="Scripts/jquery.signalR-2.2.0.min.js"></script>
<!--Reference the autogenerated SignalR hub script. -->
<script src="http://54.xxx.xxx.xxx:9988/signalr/hubs"></script>
<!--Add script to update the page and send messages.-->
<script type="text/javascript">
$(function () {
$.connection.hub.url = "http://54.xxx.xxx.xxx:9988/signalR";
// Declare a proxy to reference the hub.
var chat = $.connection.myHub;
// Create a function that the hub can call to broadcast messages.
chat.client.addMessage = function (text) {
alert(text);
};
// Start the connection.
$.connection.hub.start().done(function () {
$('#sendmessage').click(function () {
chat.server.send($('#message').val());
})
});
});
</script>
</body>
</html>
服务器:
namespace SignalRSelfHost {
class Program {
static void Main(string[] args) {
string url="http://*:9988";
using(WebApp.Start<Startup>(url)) {
Console.WriteLine("Server running on {0}", url);
Console.ReadLine();
}
}
}
class Startup {
public void Configuration(IAppBuilder app) {
app.UseCors(CorsOptions.AllowAll);
app.MapSignalR();
}
}
public class MyHub : Hub {
public void Send(string name) {
Clients.All.addMessage("Hi "+ name+"!");
}
}
}