Advertisement
pellekrogholt

Untitled

Apr 7th, 2011
329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. This XML file does not appear to have any style information associated with it. The document tree is shown below.
  2. <!--
  3. Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.6 in JDK 6.
  4. -->
  5. <xs:schema version="1.0" targetNamespace="http://hello.samples.smds2011.itu.dk/">
  6. <xs:element name="addPerson" type="tns:addPerson"/>
  7. <xs:element name="addPersonResponse" type="tns:addPersonResponse"/>
  8. <xs:element name="helloOperation" type="tns:helloOperation"/>
  9. <xs:element name="helloOperationResponse" type="tns:helloOperationResponse"/>
  10. <xs:complexType name="helloOperation">
  11. <xs:sequence>
  12. <xs:element name="arg0" type="xs:string" minOccurs="0"/>
  13. </xs:sequence>
  14. </xs:complexType>
  15. <xs:complexType name="helloOperationResponse">
  16. <xs:sequence>
  17. <xs:element name="return" type="xs:string" minOccurs="0"/>
  18. </xs:sequence>
  19. </xs:complexType>
  20. <xs:complexType name="addPerson">...</xs:complexType>
  21. <xs:complexType name="person">
  22. <xs:sequence>
  23. <xs:element name="address" type="xs:string" minOccurs="0"/>
  24. <xs:element name="name" type="xs:string" minOccurs="0"/>
  25. <xs:element name="phone" type="xs:string" minOccurs="0"/>
  26. <xs:element name="zip" type="xs:int"/>
  27. </xs:sequence>
  28. </xs:complexType>
  29. <xs:complexType name="addPersonResponse">
  30. <xs:sequence>
  31. <xs:element name="return" type="xs:string" minOccurs="0"/>
  32. </xs:sequence>
  33. </xs:complexType>
  34. </xs:schema>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement