I spent hours trying to do some customizations in the wsdl generation, without results. I got stuck mainly because I could not find a clear sample for what I want to do (I may have missed something).
Let's got to the point : I want to customize the generated WSDL. The most relevant articles I found are about adding attributes to existing Services to add behavior, like this article.
What I want to do is being able to analyze the OperationContract and generate and additionnal xsd if required.
My questions are :
- How can you add or intercept existing WSDL generation without adding attributes ?
- How do I configure this component in the config file ?
I don't want to change the way the metadata are consumed by svcutil.exe, just add some ComplexType 'on-the-fly' in the generated wsdl.
Thanks for your suggestions !
What you need is implementing
IWsdlExportExtension.ExportContract
but the documentation clearly states:For me it means that this method is called only when implemented by contract or operation behavior which is usually defined by custom attribute but you should be also able to assign these behaviors in custom initialization. Here is the example of WSDL extension for endpoint configured from configuration file (configuration offers only behaviors for whole service and endpoints). I believe (but didn't test it) that you can do similar extension which will consist of:
IWsdlExportExtension
andExportContract
IEndpointBehavior
andApplyDispatchBehavior
. InApplyDispatchBehavior
you will useserviceEndpoint.Contract.Behaviors
to add contract behavior orserviceEndpoint.Contract.Operations[x].Behaviors
to add operation behavior.BehaviorExtensionElement
for defining your new endpoint behavior from configuration file.