Last active
December 16, 2015 13:19
-
-
Save tangblack/5441048 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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