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?

有帮助吗?

解决方案 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.

其他提示

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

Cheers.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top