作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我如何添加 IncludeExceptionDetailInFaults = true;到下面的代码。我需要获取 Web 服务抛出的 FaultException 的详细信息。目前我没有得到任何细节。看起来我唯一回来的是 .有什么想法吗?
C#代码
CustomBinding Binding = new CustomBinding(BINDING_NAME);
EndpointAddress EndPoint = new EndpointAddress(WsEndpoint);
// Trust all certificates
ServicePointManager.ServerCertificateValidationCallback = ((Sender, certificate, chain, sslPolicyErrors) => true);
_WsProxy = new MyDataSoapClient(Binding, EndPoint);
//_WsProxy.Endpoint.Behaviors.Add(????);
_WsProxy.ChannelFactory.Credentials.UserName.UserName = "username";
_WsProxy.ChannelFactory.Credentials.UserName.Password = "pwd";
最佳答案
我认为您必须添加一个 ServiceDebugBehavior。
ServiceHost host = new ServiceHost(typeof(MyService), new Uri("http://localhost:6598/"));
host.AddServiceEndpoint(typeof(IMyService), new BasicHttpBinding(), "MyService");
host.Description.Behaviors.Remove(typeof(ServiceDebugBehavior));
host.Description.Behaviors.Add(new ServiceDebugBehavior() { IncludeExceptionDetailInFaults = true });
host.Open();
关于c# - 如何将 WCF IncludeExceptionDetailInFaults 添加到端点行为?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4259371/
我是一名优秀的程序员,十分优秀!