I have a simple REST based service for which I am trying to create a client proxy using ChannelFactory. I want to be without a configuration file, so I try to do this in code, and I believe that I have everything I had in .config, except for the behavior. Can someone tell me how I can get this config in C # code:
<behaviors>
<endpointBehaviors>
<behavior name="InitBehavior">
<webHttp />
</behavior>
</endpointBehaviors>
</behaviors>
Here is the stripped-down C # code that I have now:
var endpoint = new EndpointAddress(urlCommServer);
var binding = new WebHttpBinding();
return ChannelFactory<IInitialization>.CreateChannel(binding, endpoint);
source
share