sipsorcery
sipsorcery

Reputation: 30734

WCF list all client endpoints that implement a certain contract

Is there a way to list all the WCF client endpoints in an application config file?

I need to establish multiple client connections to different servers and want to find a way to still maintain all the client connection information in the application config file.

Upvotes: 5

Views: 1993

Answers (1)

Rubens Farias
Rubens Farias

Reputation: 57996

Try this:

// using System.ServiceModel.Configuration;
ServiceModelSectionGroup serviceModelSectionGroup =
    ServiceModelSectionGroup.GetSectionGroup(
        ConfigurationManager.OpenExeConfiguration(
            ConfigurationUserLevel.None));
foreach (ServiceElement serviceElement in
    serviceModelSectionGroup.Services.Services.OfType<ServiceElement>())
{
    // do stuff
}

Upvotes: 12

Related Questions