Advertisement
Guest User

Untitled

a guest
Aug 4th, 2015
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:ns="Fulfillment" name="Fulfillment" targetNamespace="Fulfillment">
  3. ...
  4. <wsdl:types>
  5. <xsd:schema targetNamespace="Fulfillment">
  6. <xsd:complexType name="getOpenedStocksDocumentsRequestParamsType">
  7. <xsd:annotation>
  8. <xsd:documentation name="type">
  9. Document type
  10. </xsd:documentation>
  11. <xsd:documentation name="documentIDs">
  12. #!Documents identificators!#
  13. </xsd:documentation>
  14. <xsd:documentation name="addDate">
  15. Creation Date
  16. </xsd:documentation>
  17. </xsd:annotation>
  18. <xsd:sequence>
  19. <xsd:element name="type" type="ns:stockDocumentType" minOccurs="1"/>
  20. <xsd:choice>
  21. <xsd:element name="documentIDs" type="ns:documentsIDsType"/>
  22. <xsd:element name="addDate" type="xsd:string" />
  23. </xsd:choice>
  24. </xsd:sequence>
  25. </xsd:complexType>
  26. <xsd:simpleType name="stockDocumentType">
  27. <xsd:restriction base="xsd:string">
  28. <xsd:enumeration value="xxx"/>
  29. <xsd:enumeration value="yyy"/>
  30. <xsd:enumeration value="zzz"/>
  31. </xsd:restriction>
  32. </xsd:simpleType>
  33.  
  34. <xsd:complexType name="documentsIDsType">
  35. <xsd:complexContent>
  36. <xsd:restriction base="soapenc:Array">
  37. <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:int[]"/>
  38. </xsd:restriction>
  39. </xsd:complexContent>
  40. </xsd:complexType>
  41. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement