我有一個使用WCF的服務器&客戶端解決方案。客戶端會在運行時詢問關於活動服務器的URL的服務,並且可以設置我使用的ChannelFactory。然而,我仍然需要使用配置文件中的所有其他WCF設置。這是我該如何做的:WCF channelfactory中的設置來自配置文件?
var clientSection = ConfigurationManager.GetSection("system.serviceModel/client") as ClientSection;
var address = string.Empty;
for(int i = 0; i < clientSection.Endpoints.Count; i++)
{
if(clientSection.Endpoints[i].Name == endpointConfigurationName)
{
var endpointAddress = new EndpointAddress(clientSection.Endpoints[i].Address.ToString());
var netHttpBinding = new NetHttpBinding(clientSection.Endpoints[i].BindingConfiguration);
var serviceEndpoint = new ServiceEndpoint(ContractDescription.GetContract(typeof(T)), netHttpBinding, endpointAddress);
var channelFactory = new ChannelFactory<T>(serviceEndpoint);
break;
}
}
問題是我有2個BehaviorExtensions被一些端點使用,例如這樣。
<services>
<endpoint binding="netHttpBinding" behaviorConfiguration="protoEndpointBehavior" address="BinaryHttpProto" bindingNamespace="http://MyApp.ServiceContracts/2007/11" contract="MyApp.ServiceContracts.IMyAppClientService" />
</services>
<behaviors>
<endpointBehaviors>
<behavior name="protoEndpointBehavior">
<protobuf />
</behavior>
</endpointBehaviors>
</behaviors>
<extensions>
<behaviorExtensions>
<add name="protobuf" type="ProtoBuf.ServiceModel.ProtoBehaviorExtension, protobuf-net, Version=2.0.0.668, Culture=neutral, PublicKeyToken=257b51d87d2e4d67" />
</behaviorExtensions>
</extensions>
問題是我如何從clientSection.Endpoints讀取這個?並將其設置在channelFactory上?我知道我可以手動創建則是這樣的:
serviceEndpoint.EndpointBehaviors.Add(new ProtoEndpointBehavior());
serviceEndpoint.EndpointBehaviors.Add(new CustomMessageInspectorBehavior());
但是,那麼這將是一個硬編碼的靜態,這將適用於所有終端,我需要能夠把它從配置改變。
恭喜。但是,仍然,你的答案只適用於索姆的例子和解釋.. –