System.ServiceModel.AddressAlreadyInUseException: HTTP 无法注册 URL http://+:80

WS双向绑定(Duplex WS Binding):由WSDualHttpBinding类提供,WS双向绑定与WS绑定相似,但它还支持从服务到客户端的双向通信。双向绑定的特点是,无论使用单向消息发送还是请求/答复消息发送方式,服务和客户端均能够独立地向对方发送消息。 对于必须直接与客户端通信或向消息交换的任意一方提供异步体验(包括类似于事件的行为)的服务来说,这种双向绑定形式非常有用。

      实现双向绑定需要做的工作:

      A:还必须设计回调协定,并将该回调协定的类型分配给标记服务协定的 ServiceContractAttribute 属性 (attribute) 的 CallbackContract 属性(property)。     

      B:您必须创建第二个接口,该接口包含在客户端调用的方法声明。

     说明: WSDualHttpBinding wsbind = new WSDualHttpBinding();
            wsbind.ClientBaseAddress = new Uri("http://127.0.0.1:10010/Service/");不写客户端地址,默认是http://+:80/tempro~

出现   Your process does not have access rights to this namespace
管理员 输入命令:netsh http add urlacl url=http://+:10010/Service/ user=Everyone

你可能感兴趣的:(C#)