Advertisement
Guest User

Untitled

a guest
May 11th, 2012
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.63 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
  2. <xs:schema version="1.0" targetNamespace="http://localhost" xmlns:tns="http://localhost" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  3.  
  4.   <xs:element name="add" type="tns:add"/>
  5.  
  6.   <xs:element name="addResponse" type="tns:addResponse"/>
  7.  
  8.   <xs:complexType name="add">
  9.     <xs:sequence>
  10.       <xs:element name="arg0" type="xs:int"/>
  11.       <xs:element name="arg1" type="xs:int"/>
  12.     </xs:sequence>
  13.   </xs:complexType>
  14.  
  15.   <xs:complexType name="addResponse">
  16.     <xs:sequence>
  17.       <xs:element name="return" type="xs:int"/>
  18.     </xs:sequence>
  19.   </xs:complexType>
  20. </xs:schema>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement