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.
- Java2WSDL from complex classes with inheritance Alex Pivovarov
- Re: Java2WSDL from complex classes with inheritance Anne Thomas Manes
- Re: Java2WSDL from complex classes with inherit... Alex Pivovarov
