Pregunta

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?

¿Fue útil?

Solución 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.

Otros consejos

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

Cheers.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top