Blame tests/regression/server_root/conf/SoapEnvelope.xsd

Packit 284210
Packit 284210
Packit 284210
Packit 284210
Packit 284210
Portions © 2001 DevelopMentor. 
Packit 284210
© 2001 W3C (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved.  
Packit 284210
 
Packit 284210
This document is governed by the W3C Software License [1] as described in the FAQ [2].
Packit 284210
[1] http://www.w3.org/Consortium/Legal/copyright-software-19980720
Packit 284210
[2] http://www.w3.org/Consortium/Legal/IPR-FAQ-20000620.html#DTD 
Packit 284210
By obtaining, using and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions:
Packit 284210
Packit 284210
Permission to use, copy, modify, and distribute this software and its documentation, with or without modification,  for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the software and documentation or portions thereof, including modifications, that you make:
Packit 284210
Packit 284210
1.  The full text of this NOTICE in a location viewable to users of the redistributed or derivative work. 
Packit 284210
Packit 284210
2.  Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, a short notice of the following form (hypertext is preferred, text is permitted) should be used within the body of any redistributed or derivative code: "Copyright © 2001 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/" 
Packit 284210
Packit 284210
3.  Notice of any changes or modifications to the W3C files, including the date changes were made. (We recommend you provide URIs to the location from which the code is derived.)   
Packit 284210
Packit 284210
Original W3C files; http://www.w3.org/2001/06/soap-envelope
Packit 284210
Changes made: 
Packit 284210
     - reverted namespace to http://schemas.xmlsoap.org/soap/envelope/
Packit 284210
     - reverted mustUnderstand to only allow 0 and 1 as lexical values
Packit 284210
	 - made encodingStyle a global attribute 20020825
Packit 284210
	 - removed default value from mustUnderstand attribute declaration
Packit 284210
Packit 284210
THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
Packit 284210
Packit 284210
COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.
Packit 284210
Packit 284210
The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the software without specific, written prior permission. Title to copyright in this software and any associated documentation will at all times remain with copyright holders.
Packit 284210
Packit 284210
-->
Packit 284210
Packit 284210
           xmlns:tns="http://schemas.xmlsoap.org/soap/envelope/"
Packit 284210
           targetNamespace="http://schemas.xmlsoap.org/soap/envelope/" >
Packit 284210
Packit 284210
     
Packit 284210
  
Packit 284210
  <xs:element name="Envelope" type="tns:Envelope" />
Packit 284210
  <xs:complexType name="Envelope" >
Packit 284210
    <xs:sequence>
Packit 284210
      <xs:element ref="tns:Header" minOccurs="0" />
Packit 284210
      <xs:element ref="tns:Body" minOccurs="1" />
Packit 284210
      <xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="lax" />
Packit 284210
    </xs:sequence>
Packit 284210
    <xs:anyAttribute namespace="##other" processContents="lax" />
Packit 284210
  </xs:complexType>
Packit 284210
Packit 284210
  <xs:element name="Header" type="tns:Header" />
Packit 284210
  <xs:complexType name="Header" >
Packit 284210
    <xs:sequence>
Packit 284210
      <xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="lax" />
Packit 284210
    </xs:sequence>
Packit 284210
    <xs:anyAttribute namespace="##other" processContents="lax" />
Packit 284210
  </xs:complexType>
Packit 284210
  
Packit 284210
  <xs:element name="Body" type="tns:Body" />
Packit 284210
  <xs:complexType name="Body" >
Packit 284210
    <xs:sequence>
Packit 284210
      <xs:any namespace="##any" minOccurs="0" maxOccurs="unbounded" processContents="lax" />
Packit 284210
    </xs:sequence>
Packit 284210
    <xs:anyAttribute namespace="##any" processContents="lax" >
Packit 284210
	  <xs:annotation>
Packit 284210
	    <xs:documentation>
Packit 284210
		  Prose in the spec does not specify that attributes are allowed on the Body element
Packit 284210
		</xs:documentation>
Packit 284210
	  </xs:annotation>
Packit 284210
	</xs:anyAttribute>
Packit 284210
  </xs:complexType>
Packit 284210
Packit 284210
       
Packit 284210
  
Packit 284210
  <xs:attribute name="mustUnderstand" >	
Packit 284210
     <xs:simpleType>
Packit 284210
     <xs:restriction base='xs:boolean'>
Packit 284210
	   <xs:pattern value='0|1' />
Packit 284210
	 </xs:restriction>
Packit 284210
   </xs:simpleType>
Packit 284210
  </xs:attribute>
Packit 284210
  <xs:attribute name="actor" type="xs:anyURI" />
Packit 284210
Packit 284210
  <xs:simpleType name="encodingStyle" >
Packit 284210
    <xs:annotation>
Packit 284210
	  <xs:documentation>
Packit 284210
	    'encodingStyle' indicates any canonicalization conventions followed in the contents of the containing element.  For example, the value 'http://schemas.xmlsoap.org/soap/encoding/' indicates the pattern described in SOAP specification
Packit 284210
	  </xs:documentation>
Packit 284210
	</xs:annotation>
Packit 284210
    <xs:list itemType="xs:anyURI" />
Packit 284210
  </xs:simpleType>
Packit 284210
Packit 284210
  <xs:attribute name="encodingStyle" type="tns:encodingStyle" />
Packit 284210
  <xs:attributeGroup name="encodingStyle" >
Packit 284210
    <xs:attribute ref="tns:encodingStyle" />
Packit 284210
  </xs:attributeGroup>
Packit 284210
Packit 284210
  <xs:element name="Fault" type="tns:Fault" />
Packit 284210
  <xs:complexType name="Fault" final="extension" >
Packit 284210
    <xs:annotation>
Packit 284210
	  <xs:documentation>
Packit 284210
	    Fault reporting structure
Packit 284210
	  </xs:documentation>
Packit 284210
	</xs:annotation>
Packit 284210
    <xs:sequence>
Packit 284210
      <xs:element name="faultcode" type="xs:QName" />
Packit 284210
      <xs:element name="faultstring" type="xs:string" />
Packit 284210
      <xs:element name="faultactor" type="xs:anyURI" minOccurs="0" />
Packit 284210
      <xs:element name="detail" type="tns:detail" minOccurs="0" />      
Packit 284210
    </xs:sequence>
Packit 284210
  </xs:complexType>
Packit 284210
Packit 284210
  <xs:complexType name="detail">
Packit 284210
    <xs:sequence>
Packit 284210
      <xs:any namespace="##any" minOccurs="0" maxOccurs="unbounded" processContents="lax" />
Packit 284210
    </xs:sequence>
Packit 284210
    <xs:anyAttribute namespace="##any" processContents="lax" /> 
Packit 284210
  </xs:complexType>
Packit 284210
Packit 284210
</xs:schema>
Packit 284210
Packit 284210
Packit 284210
Packit 284210
Packit 284210
Packit 284210