Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
1.6.0, 1.6.2
-
Ubuntu 10.10, Tomcat v6, JDK 1.6.0_26
Description
If input wsdl/xsd includes at least one attribute/element of type anySimpleType, e.g:
<xs:complexType name="MyType">
<xs:sequence />
<xs:attribute name="name" type="xs:string" use="required" />
<xs:attribute name="another" type="xs:anySimpleType" />
<xs:attribute name="another2" type="xs:string" />
</xs:complexType>
.. then wsdl2java generated MyType.java contains "name" & "another2" but not "another" variable.