Kindly let me know how to create WSDL for a WCF service programmatically.
|
I don't think this is possible, other than programmatically using svcutil.exe to achieve the task. |
|||
|
|
|
You can use the MetadataSet and WsdlImporter classes to do this if you have a mex endpoint exposed for whatever service it is that you are trying to generate WSDL against. If the service you are trying to generate WSDL for is compiled code, you should be able to make use of svcutil for that. |
|||||
|
|
better late than never, but I think you're after the IWsdlExportExtension behaviour, which allows you to modify the WSDL generated by WCF when the service is hosted - here is a good blog post on how to get started when implementing this interface. |
|||
|
|
|
You can do the following:
Also, here is good article about it: http://mleder.blogspot.com/2008/05/creating-wsdl-using-c.html |
|||
|
|