With all this, I am not saying that WS-Discovery is a good replacement for a service repository, which actually provides opposite capabilities, a centralized storage for service metadata at design time that supports full rich querying.
However, they both complement very well each, the service can configure itself from the service repository, and expose metadata and runtime information to clients through WS-Discovery.
There are two types of metadata attributes or extensions that you can configure in the “endpoint” discovery behavior,
<endpointDiscovery enabled="true">
<scopes>
<add scope="urn:CRM"/>
</scopes>
<extensions>
<Owner>Pablo Cibraro</Owner>
<Metadata>http://locahost:8080/?wsdl</Metadata>
</extensions>
</endpointDiscovery>
Scopes, which represents “URI”s and can be used by clients to filter the discovery results when sending the discovery probes. For example, in the configuration above, a client could only be interested in a service that provides a “urn:CRM” scope, so this service will match that probe.
On the client side, the WCF client can specify the “scopes” as part of the “FindCriteria” argument passed to the DiscoveryClient,
var discovery = new DiscoveryClient(new UdpDiscoveryEndpoint());
var criteria = new FindCriteria(typeof(IHelloWorld));
criteria.Scopes.Add(new Uri("urn:CRM"));
var discoveryResponse = discovery.Find(criteria);
Read more: Pablo M. Cibraro (aka Cibrax)