I'm trying to generate a client for some SOAP web services using the JDK 6 tool wsimport
.
The WSDL was generated by a .NET 2.0 application. For .NET 3.X applications, it works fine.
When I run
wsimport -keep -p mypackage http://myservice?wsdl
it shows several error messages like this:
[ERROR] A class/interface with the same name "mypackage.SomeClass" is already in use. Use a class customization to resolve this conflict. line ?? of http://myservice?wsdl
When I generate the web services client using Axis 1.4 (using the Eclipse WebTools plug-in).
Does anybody know what can I do in order to use the wsimport
tool? I really don't understand what the "class customization" thing is.
wsimport
command. But the root of this problem for me, there are two different type with adjoiningXResponse
and with underscoreX_Response
so it occurs name conflict, if naming would be understandable likeXResponse
andXResponseDefinition
, it will be no problem. – Ratel