0

I want to recreate the following wsdl type definition

<!-- Existent non spyne specification -->
<s:element name="GetVehiclesResponse">
   <s:complexType>
       <s:sequence>
         <s:element minOccurs="0" maxOccurs="1" ref="s1:vehiclesResponse"/>
         <s:element ... />
    </s:sequence> 
  </s:complexType>
</s:element>

How do i get there? Cause when inheriting from ComplexModel my result looks similar to this

<!-- Result from ComplexModel -->
<xs:complexType name="GetVehiclesResponse">
  <xs:sequence>
    <xs:element ... />
    ...
  </xs:sequence>
</xs:complexType>

Should I implement a class that is deriving from ComplexModelBase?

0x00F
  • 50
  • 7

1 Answers1

0

The two notations are equivalent.

Burak Arslan
  • 7,671
  • 2
  • 15
  • 24