Hello,I have a simple abstract class exposed as part of an an Axis2 service. When the service WSDL is generated, I expected the complexType declaration for it to appear as follows:
<xs:complexType name="Test" abstract="true">...
Instead I only got:
<xs:complexType name="Test">...
The class is declared as follows:
public abstract class Test { ...
Is there something else needed to get the generated WSDL to represent
the abstract class?
Thanks, Jason
