The situation that I'm working with is suboptimal, so bear with me..
We are to consume external (non .NET) SOAP-webservices.
For some reason, each method is implemented in a separate web service with it's own WSDL.
A lot of the objects returned by the web services have the exact same design, name and xml namespace.
"Add Service Reference" is used because:
- the internal dev team are used to it
- we'd like to keep the automatic "Update Service Reference"
The 2nd reference is added with the "Reuse types in all referenced assemblies" option on.
All of the classes are however generated again under the new reference.
Is where a way to reuse the classes from the 1st reference?
svcutil.exe /r
? – Unsex