Question

A company I am working with has created a wsdl of how they would LIKE the WCF service interface I am about to write to look. Thats not really a problem as its just a starting point rather than a proscription.

However, is it possible from their wsdl to create individual class files for each class in the interface?

e.g. instead of create the proxy class, do the hard work for me ;) and create the individual classes themselves?

Was it helpful?

Solution 2

You can generate the proxy class in normal ways via wsdl.exe and then, copy and paste the generated code into your seperate class files. This way, it will be simpler to constitute the classes you want.

OTHER TIPS

Yes you can. As long as you have downloaded the WSDL document. You can use XSD to generate proxy classes from the definition.

Cheers.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top