soap12.xsd

Go to the documentation of this file.
00001 <?xml version="1.0" encoding="UTF-8" ?> 
00002 <!-- 
00003  
00004 Copyright 2001 - 2006, International Business Machines Corporation and Microsoft Corporation
00005 All Rights Reserved
00006 
00007 License for WSDL 1.1 Binding Extension for SOAP 1.2 Schema Files
00008 
00009 The Authors grant permission to copy and distribute the WSDL 1.1 Binding Extension for SOAP 1.2 Schema Files in any medium without fee or royalty as long as this notice and license are distributed with them.  The originals of these files can be located at:
00010 
00011 http://schemas.xmlsoap.org/wsdl/soap12/wsdl11soap12.xsd
00012 
00013 THESE SCHEMA FILES ARE PROVIDED "AS IS," AND THE AUTHORS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THESE FILES, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT OR TITLE.  THE AUTHORS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING TO ANY USE OR DISTRIBUTION OF THESE FILES.
00014 
00015 The name and trademarks of the Authors may NOT be used in any manner, including advertising or publicity pertaining to these files or any program or service that uses these files, written prior permission.  Title to copyright in these files will at all times remain with the Authors.
00016 
00017 No other rights are granted by implication, estoppel or otherwise.
00018 
00019 
00020 --> 
00021 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
00022            xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
00023            xmlns:wsoap12="http://schemas.xmlsoap.org/wsdl/soap12/"
00024            targetNamespace="http://schemas.xmlsoap.org/wsdl/soap12/" >
00025 
00026   <xs:import namespace = "http://schemas.xmlsoap.org/wsdl/" />
00027 
00028   <xs:complexType name="tExtensibilityElementOpenAttrs" >
00029     <xs:complexContent>
00030       <xs:extension base="wsdl:tExtensibilityElement" >
00031         <xs:anyAttribute namespace="##other" processContents="lax"/>
00032       </xs:extension>
00033     </xs:complexContent>
00034   </xs:complexType>
00035 
00036   <xs:element name="binding" type="wsoap12:tBinding" />
00037   <xs:complexType name="tBinding" >
00038     <xs:complexContent>
00039       <xs:extension base="wsoap12:tExtensibilityElementOpenAttrs" >
00040         <xs:attribute name="transport" type="xs:anyURI" use="required" />
00041         <xs:attribute name="style" type="wsoap12:tStyleChoice" use="optional" />
00042       </xs:extension>
00043     </xs:complexContent>
00044   </xs:complexType>
00045 
00046   <xs:simpleType name="tStyleChoice" >
00047     <xs:restriction base="xs:string" >
00048       <xs:enumeration value="rpc" />
00049       <xs:enumeration value="document" />
00050     </xs:restriction>
00051   </xs:simpleType>
00052 
00053   <xs:element name="operation" type="wsoap12:tOperation" />
00054   <xs:complexType name="tOperation" >
00055     <xs:complexContent>
00056       <xs:extension base="wsoap12:tExtensibilityElementOpenAttrs" >
00057         <xs:attribute name="soapAction" type="xs:anyURI" use="optional" />
00058         <xs:attribute name="soapActionRequired" type="xs:boolean" use="optional" />
00059         <xs:attribute name="style" type="wsoap12:tStyleChoice" use="optional" />
00060       </xs:extension>
00061     </xs:complexContent>
00062   </xs:complexType>
00063 
00064   <xs:element name="body" type="wsoap12:tBody" />
00065   <xs:attributeGroup name="tBodyAttributes" >
00066     <!-- The encodingStyle attribute is now a single URI, instead of a list of URIs -->
00067     <xs:attribute name="encodingStyle" type="xs:anyURI" use="optional" />
00068     <xs:attribute name="use" type="wsoap12:useChoice" use="optional" />
00069     <xs:attribute name="namespace" type="xs:anyURI" use="optional" />
00070   </xs:attributeGroup>
00071   <xs:simpleType name="tParts">
00072     <xs:list itemType="xs:NMTOKEN"/>
00073   </xs:simpleType>
00074   <xs:complexType name="tBody" >
00075     <xs:complexContent>
00076       <xs:extension base="wsoap12:tExtensibilityElementOpenAttrs" >
00077         <xs:attribute name="parts" type="wsoap12:tParts" use="optional" />
00078         <xs:attributeGroup ref = "wsoap12:tBodyAttributes" />
00079       </xs:extension>
00080     </xs:complexContent>
00081   </xs:complexType>
00082   
00083   <xs:simpleType name="useChoice" >
00084     <xs:restriction base="xs:string" >
00085       <xs:enumeration value="literal" />
00086       <xs:enumeration value="encoded" />
00087     </xs:restriction>
00088   </xs:simpleType>
00089 
00090   <xs:element name="fault" type="wsoap12:tFault" />
00091   <xs:complexType name="tFaultRes" abstract="true" >
00092     <xs:complexContent>
00093       <xs:restriction base="wsoap12:tBody" >
00094             <xs:attribute ref="wsdl:required" use="optional" /> 
00095         <xs:attribute name="parts" type="wsoap12:tParts" use="prohibited" />
00096                 <xs:attributeGroup ref="wsoap12:tBodyAttributes" />
00097       </xs:restriction>
00098     </xs:complexContent>        
00099   </xs:complexType>
00100   <xs:complexType name="tFault" >
00101     <xs:complexContent>
00102       <xs:extension base="wsoap12:tFaultRes">
00103         <xs:attribute name="name" type="xs:NCName" use="required" />
00104       </xs:extension>
00105     </xs:complexContent>
00106   </xs:complexType>
00107 
00108 
00109   <xs:element name="header" type="wsoap12:tHeader" />
00110   <xs:attributeGroup name="tHeaderAttributes" >
00111     <xs:attribute name="message" type="xs:QName" use="required" />
00112     <xs:attribute name="part" type="xs:NMTOKEN" use="required" />
00113     <xs:attribute name="use" type="wsoap12:useChoice" use="required" />
00114     <xs:attribute name="encodingStyle" type="xs:anyURI" use="optional" />
00115     <xs:attribute name="namespace" type="xs:anyURI" use="optional" />      
00116   </xs:attributeGroup>
00117   <xs:complexType name="tHeader" >
00118     <xs:complexContent>
00119       <xs:extension base="wsoap12:tExtensibilityElementOpenAttrs" >
00120         <xs:sequence>
00121           <xs:element ref="wsoap12:headerfault" minOccurs="0" maxOccurs="unbounded" />
00122         </xs:sequence>
00123                 <xs:attributeGroup ref="wsoap12:tHeaderAttributes" />
00124       </xs:extension>
00125     </xs:complexContent>
00126   </xs:complexType>
00127 
00128   <xs:element name="headerfault" type="wsoap12:tHeaderFault" />
00129   <xs:complexType name="tHeaderFault" >
00130         <xs:attributeGroup ref="wsoap12:tHeaderAttributes" />
00131         <xs:anyAttribute namespace="##other" processContents="lax"/>
00132   </xs:complexType>
00133 
00134   <xs:element name="address" type="wsoap12:tAddress" />
00135   <xs:complexType name="tAddress" >
00136     <xs:complexContent>
00137       <xs:extension base="wsoap12:tExtensibilityElementOpenAttrs" >
00138         <xs:attribute name="location" type="xs:anyURI" use="required" />
00139       </xs:extension>
00140     </xs:complexContent>
00141   </xs:complexType>
00142 
00143 </xs:schema>
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines

Generated by  doxygen 1.6.2