Runtime builds an extra element for String[] in schema when excute build
service from class
---------------------------------------------------------------------------------------------
Key: CXF-614
URL: https://issues.apache.org/jira/browse/CXF-614
Project: CXF
Issue Type: Bug
Reporter: jimma
Runtime generate the following schema in wsdl :
<xs:complexType name="operation0ResponseType">
<xs:sequence>
<xs:element minOccurs="0" name="birth" type="xs:dateTime"/>
<xs:element minOccurs="0" name="death" type="xs:dateTime"/>
<xs:element minOccurs="0" name="name" type="xs:string"/>
<xs:element minOccurs="0" name="owner" type="xs:string"/>
<xs:element minOccurs="0" name="sex" type="xs:string"/>
<xs:element minOccurs="0" name="species" type="xs:string"/>
</xs:sequence>
</xs:complexType>
<xs:complexType final="#all" name="operation0ResponseTypeArray">
<xs:sequence>
<xs:element maxOccurs="unbounded" minOccurs="0" name="item" nillable="true"
type="tns:operation0ResponseType"/>
</xs:sequence>
</xs:complexType>
<xs:element name="operation0">
<xs:complexType>
<xs:sequence/>
</xs:complexType>
</xs:element>
<xs:element name="operation0Response">
<xs:complexType>
<xs:sequence>
<xs:element name="return" nillable="true"
type="tns:operation0ResponseTypeArray"/>
</xs:sequence>
</xs:complexType>
Type "operation0ResponseTypeArray" should be removed .
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.