We have several .Net web services for which we use the java client. Each web service has its own namespace, but they all often use common classes. When they are displayed as WSDL and then generated in Java code, we get many duplicates in Java of the same .Net classes.
Is there a way in .Net to define a set of WebService objects for export in a common namespace (in XML)? Or can we use wsimport in Java to generate just one instance of each repeating class?
source
share