Does anyone know of a good tool to generate the WSDL for a service contract written in C# (i.e. set of methods that are tagged as "[OperationContract]" using WCF)? All the tools I've found work the other way around: create code stubs from a WSDL. I don't want to have to hand-jam a WSDL file. I've found tools for php and J2EE, but not C#. Thanks!
|
|
Easiest thing to do is host the service with a base address setup, and then just hit it from a browser with "?wsdl" appended to the end. Here's an example of a service configuration with a base address specified. Note this goes in the
Once you get it hosted, just go to |
||
|
|
|
|
svcutil or just host it quickly and hit the MEX point :) |
||
|
|
