我有一个客户端和服务器方案,其中一个服务安装在客户端上,另一个服务安装在服务器上。当它们安装在不同的机器上时,我没有问题。但是,我还希望能够在同一台机器上安装客户端服务和服务器服务。我可以将它们设置为使用不同的端口,但是我想使用单个端口来完成此操作。
我已经启用并启动了 Net.Tcp 端口共享服务 Windows 服务。我首先启动服务器服务。当我尝试启动客户端服务时,执行 serviceHost.Open() 时出现以下异常:
The TransportManager failed to listen on the supplied URI using the NetTcpPortSharing service: the URI is already registered with the service.
下面是源代码。服务器和客户端都使用不同的端点地址,如下所示:
服务器服务:
ServiceHost serviceHost = new ServiceHost(typeof(ServerService),
new Uri("net.tcp://localhost:50000");
NetTcpBinding binding = new NetTcpBinding();
serviceHost.AddServiceEndpoint(typeof(IServerService),
binding, "ServerService");
serviceHost.Open();
客户服务:
ServiceHost serviceHost = new ServiceHost(typeof(ClientService),
new Uri("net.tcp://localhost:50000");
NetTcpBinding binding = new NetTcpBinding();
serviceHost.AddServiceEndpoint(typeof(IClientService),
binding, "ClientService");
serviceHost.Open();