我有一个使用 wsdusalhttpbinding 的 wcf
WSDualHttpBinding binding = new WSDualHttpBinding();
binding.MaxBufferPoolSize = int.MaxValue;
binding.MaxReceivedMessageSize = int.MaxValue;
binding.Security.Mode = WSDualHttpSecurityMode.None;
binding.Security.Message.ClientCredentialType = MessageCredentialType.None;
_host.AddServiceEndpoint(typeof(IService), binding, baseAddress + "/ws");
//Mex
ServiceMetadataBehavior smb = new ServiceMetadataBehavior();
smb.HttpGetEnabled = true;
_host.Description.Behaviors.Add(smb);
_host.Open();
现在这适用于我的计算机和我的一位同事,但在某些计算机上我们会收到此错误。
堆栈跟踪导致这一行。
_host.Open();
我不明白为什么它会说 WebHttpBinding 我用于此服务的唯一端点是我用我编写的代码创建的端点。