-e, --extraClasses <argument>
A space or comma separated list of class names to be added to
the type section.
On 6/30/06, Alex Pivovarov <[EMAIL PROTECTED]> wrote:
The problem is that I get wrong WSDL from my class model.
The model:
---------------------------------------------------------------------------------------
package org.x4444;
public abstract class License {
.... //some public getters ang setters
}
public class SoftLicense extends License {
.... some other public getters and setters
}
public class SoftLicDB {
public SoftLicense getSoftLicense(int i) {
.....
}
}
---------------------------------------------------------------------------------------
I run the command
Java2WSDL -cn org.x4444.LicDB -cp . -sn SoftLicDB
and wsdl file I get contain only type definition from class SoftLicense and no type defenitions from class License.
