Co to jest deklaracja WSDL dla tablicy liczb całkowitych?

Specyfikacje SOAP są mylące, liczne i dostępne w wielu wersjach, a generator WSDL mojej biblioteki mydlanej jest wadliwy. Jaki jest prawidłowy WSDL dla tablicy liczb całkowitych? Mogłoby to być:

<element name="ArrayOfIntegers">
  <complexType base="SOAP-ENC:Array">
    <element name="integer" type="xsd:integer" maxOccurs="unbounded"/>
  </complexType>
  <anyAttribute/>
</element>

czy jest to (ze specyfikacji wsdl):

<complexType name="ArrayOfFloat">
  <complexContent>
      <restriction base="soapenc:Array">
          <attribute ref="soapenc:arrayType" 
                     wsdl:arrayType="xsd:integer[]"/>
      </restriction>
  </complexContent>
</complexType>

A może:

<element name="ArrayOfIntegers">
 <complexType>
  <sequence>
   <element maxOccurs="unbounded" name="integer" type="xsd:int"/>
  </sequence>
 </complexType>
</element>

Albo coś innego?

questionAnswers(1)

yourAnswerToTheQuestion