vote up 1 vote down star

I would like to get Binding object from web.config or app.config.

So, this code works:

wcfTestClient = new TestServiceClient("my_endpoint", Url + "/TestService.svc");

but I would like to do the following:

Binding binding = DoSomething();
wcfTestClient = new TestServiceClient(binding, Url + "/TestService.svc");

I am interested in DoSomething() method, of course.

flag

56% accept rate

3 Answers

vote up 3 vote down check

You can instantiate a binding giving a binding configuration name from App.config/Web.config.

http://msdn.microsoft.com/en-us/library/ms575163.aspx

link|flag
Only if you know what kind of binding you are going to use, e.g. WSHttpBinding or NetTcpBiding. You lose the flexibility to change the kind of biding at runtime. – Anthony Oct 15 at 12:51
vote up 2 vote down

Check out this blog post from Mark Gabarra, it shows how to enumerate the configured bindings

link|flag
vote up 1 vote down

One cheeky option might be to create an instance with the default constructor, to use as a template:

Binding defaultBinding;
using(TestServiceClient client = new TestServiceClient()) {
    defaultBinding = client.Endpoint.Binding;
}

Then tuck this away and re-use it. Any help?

link|flag
Better than nothing:) But I would like to get binding object from config file, load it by name. – bh213 Dec 10 '08 at 11:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.