XSD not generated correctly for java 1.5 enum
---------------------------------------------
Key: AXIS2-2766
URL: https://issues.apache.org/jira/browse/AXIS2-2766
Project: Axis 2.0 (Axis2)
Issue Type: Bug
Environment: Axis2 1.2, XP
Reporter: Drew Bentley
Given the following Java Code:
public enum Values
{
One,Two,Three
}
public class EnumTest
{
private Values _value;
public Values getValue(){
return _value;
}
public void setValue(Values value){
_value = value;
}
}
The type generated in the WSDL is incorrect. According to both SOAPScope and
XMLSpy "xs:Enum" is not a valid xml schema type:
<xs:complexType name="Values">
<xs:complexContent>
<xs:extension base="xs:Enum">
<xs:sequence>
<xs:element name="One" nillable="true" type="ns:Values" />
<xs:element name="Three" nillable="true" type="ns:Values" />
<xs:element name="Two" nillable="true" type="ns:Values" />
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]