I'm trying to generate a .NET WS client from a WSDL + some XSD. I've tried two ways with the same result: Add Web Reference and WSDL.EXE I've tried different framework versions, IDE versions and different approaches (WCF and old style WSs).
The tools generate two interfaces with the correct operations and all the type defined in the XSD schemas, but none of the types contain the members I defined in the schema.
My WSDL + XSDs work well on java platform (jax-ws via cxf, axis) and I can produce clients and publishers.
The published services can be consumed via soapUI, which generate correct requests (with all the members defined in the schemas).
The same result is given by the tools even if I use the published WSDL url instead of local files.
Update:
I've tried to avoid the wsdl:import
and I built a valid single file WSDL. Same result.
One more consideration about thie issue is that I use type inheritance by xsd:extension
. Are there issues about generating .Net WS client with this feature?