我正在尝试以编程方式设置 WCF 连接的端点。
我一直没能,下面是我正在使用的代码有人帮助识别出了什么问题?
Uri wsBaseAddress = new Uri("http://localhost:27198/");
ServiceHost host = new ServiceHost(typeof(ServiceClient), wsBaseAddress);
WSHttpBinding wshttpbinding = new WSHttpBinding();
host.AddServiceEndpoint(typeof(IService), wshttpbinding, "ServiceClient");
host.AddServiceEndpoint(typeof(IService), wshttpbinding,
"http://localhost:27198/Service.svc");
host.Open();
编辑:
错误:HTTP 无法注册 URL“http://+:27198/”,因为 TCP 端口 27198 正在被另一个应用程序使用。”
谢谢