Hi,
I defined a simpleType in wsdl that looks something like this:
<xsd:simpleType name="PlanType">
<xsd:restriction base="xsd:int">
<xsd:enumeration name="Gold" value="0"/>
<xsd:enumeration name="Silver" value="1"/>
<xsd:enumeration name="Bronze" value="2"/>
</xsd:restriction>
</xsd:simpleType>
The resulting wsdl2java generated code does not make use of the "Gold",
"Silver", "Bronze". Is there a way I can associate user defined identifiers
within the generated code instead of value0, value1 etc. that get generated
by default.
Thx.
Harish