Skip to content

Instantly share code, notes, and snippets.

@tangblack
Last active December 16, 2015 13:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tangblack/5441048 to your computer and use it in GitHub Desktop.
Save tangblack/5441048 to your computer and use it in GitHub Desktop.
<!-- static array style -->
<xsd:complextype name="__messages">
<xsd:sequence>
<xsd:element name="message" type="tns:ArrayOf__message" minoccurs="0" />
</xsd:sequence>
</xsd:complextype>
<xsd:complextype name="ArrayOf__message">
<xsd:complexcontent>
<xsd:restriction base="SOAP_ENC:Array">
<xsd:attribute ref="SOAP_ENC:arrayType" wsdl:arraytype="tns:__message[]" />
</xsd:restriction>
</xsd:complexcontent>
</xsd:complextype>
<!-- dynamic array style -->
<xsd:complextype name="__messages">
<xsd:sequence>
<xsd:element name="message" type="tns:__message" minoccurs="0" maxoccurs="unbounded" />
</xsd:sequence>
</xsd:complextype>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment