我的数据库中的客户端端点不在web.config中。我正在使用ClientBase,它有一些构造函数,我可以在其中传递绑定,地址等。并且可以调用客户端wcf服务。我在web.config中定义了绑定配置和行为配置。我可以在使用ClientBase时传递这些名称。但我找不到该类的任何属性或构造函数,我可以传递已在web.config中定义的EndpointBehavior名称。我可以看到我可以添加IEndpointBehavior实例,但我不想使用它,而是更喜欢传递web.config中定义的endpointbehavior名称。
任何帮助将不胜感激。
感谢。
答案 0 :(得分:1)
我不认为有一种方法可以让你只使用行为的名称。作为一个工作流程,您可以从配置中加载设置,创建IEndpointBehaviours并将它们添加到服务端点。
using System.Configuration;
using System.ServiceModel.Configuration;
public static void ApplyEndpointBehavior(ServiceEndpoint serviceEndpoint, string behaviorName)
{
EndpointBehaviorElement endpointBehaviorElement = GetEndpointBehaviorElement(behaviorName);
if (endpointBehaviorElement == null) return;
List<IEndpointBehavior> list = CreateBehaviors<IEndpointBehavior>(endpointBehaviorElement);
foreach (IEndpointBehavior behavior in list)
{
Type behaviorType = behavior.GetType();
if (serviceEndpoint.Behaviors.Contains(behaviorType))
{
serviceEndpoint.Behaviors.Remove(behaviorType);
}
serviceEndpoint.Behaviors.Add(behavior);
}
}
public static EndpointBehaviorElement GetEndpointBehaviorElement(string behaviorName)
{
var config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
ServiceModelSectionGroup sectionGroup = ServiceModelSectionGroup.GetSectionGroup(config);
if (sectionGroup == null || !sectionGroup.Behaviors.EndpointBehaviors.ContainsKey(behaviorName))
return null;
return sectionGroup.Behaviors.EndpointBehaviors[behaviorName];
}
public static List<T> CreateBehaviors<T>(EndpointBehaviorElement behaviorElement) where T : class
{
List<T> list = new List<T>();
foreach (BehaviorExtensionElement behaviorSection in behaviorElement)
{
MethodInfo info = behaviorSection.GetType().GetMethod("CreateBehavior", BindingFlags.NonPublic | BindingFlags.Instance);
T behavior = info.Invoke(behaviorSection, null) as T;
if (behavior != null)
{
list.Add(behavior);
}
}
return list;
}
请注意,虽然因为它使用受保护的方法来实例化行为,所以有点hacky。