Last week, Ralph Squillace posted a walkthough of how to enable metadata publication (MEX, WSDL) for WCF services. I've been digging a little deeper into this and one of the questions I had was: How does the ServiceHost know where to find the IMetadataExchange implementation for a hosted service?

If you have looked into the WCF configuration, you'll notice that one enables metadata publication basically through two primary things:

  1. Add a service endpoint for the IMetadataExchange contract
  2. Add a service behavior

However, your service class doesn't really implement IMetadataExchange; it is implemented by WCF itself. The way this works, as far as I'm able to tell, goes somewhat like this:

  1. The ServiceHostBase and ServiceMetadataBehavior classes have deep, carnal knowledge of some of the implementation details of one another. Together, they collaborate to enable the MEX and WSDL endpoints on the hosted service.
  2. When the configuration for a service is loaded, the service host will try to resolve all endpoint contracts configured; this is done through the internal ServiceHostBase+ServiceAndBehaviorsContractResolver class which implementes the (also internal) IContractResolver interface.
    These classes will reflect over the service implementation class and ensure that the service does indeed implement the contracts (i.e. implements the interfaces) specified in all the configured endpoints.Still, we know that our service doesn't really implement IMetadataExchange.
  3. The built-in contract resolvers (and let me repeat there doesn't appear to be any other way to add your own) know about IMetadataExchange. When they are asked to lookup the IMetadataExchange contract, they'll go out to the ServiceMetadataBehavior class and ask it to get them the contract description for IMetadataExchange. This basically means that to the ServiceHost hosting the service it will appear as if the service implemented IMetadataExchange. This is why the configuration validation will succeed at first. We still don't know who implements IMetadataExchange, but we have a valid (if incomplete) endpoint for it in our ServiceHost.
  4. Further down the pipeline, the ServiceMetadataBehavior will get executed through ApplyDispatchBehavior(). Here it will introduce a new extension object to the ServiceHost which has all the service descriptions and metadata (an instance of the ServiceMetadataExtension class).
    It will also look at all configured endpoints and look for the one implementing the IMetadataExchange contract. When it does, it will complete the endpoint configuration by supplying an instance of the ServiceMetadataExtension+WSMexImpl class to the endpoint's DispatchRuntime. This is where, and how, the service host will know where to go when the MEX endpoint is hit!

One pretty impressive thing about how all of this is accomplished is that most of this is not really magical; it just uses the standard extensibility points in WCF to do a fairly significant portion of the work. In my humble opinion, though, it is a shame that the first two steps I outlined above throw this out the window and introduce hight coupling between service hosting and metadata publication and even introduces a completely internal extensibility point [1].

This is particularly sad because this was a greate overall example of how to introduce arbitrary endpoints into a hosted service, which was something I was looking forward to as a way to expose other custom metadata endpoints to a service without having the service implementation itself be aware of this.

[1] it is always possible I'm just misinterpreting this, though I've been going over this for several days now.


Tomas Restrepo

Software developer located in Colombia.