I have inherited a code base for a Java application that talks about several SOAP web services. Proxy classes for this are generated using the ANT task that calls wsdl2java. Since my Java experience is pretty limited, I'm still trying to figure out how it all works.
There is a build-wsdl2java.xml file in the project that seems to contain the configuration information needed to generate the class. Currently, the file has attributes that are not currently supported (namespacesmapfile, overWriteTypes, testcaseoverwrite), but if I try to resolve this by changing the first to 'namespacemappingfile' and deleting the rest, the attributes will be returned if the project is cleared. The WSDL URL is also returned if it is changed.
What controls the generation of this file and where can I determine the configuration options that it contains?
source share