Skip to content

Commit 9ca2acf

Browse files
committed
added soap 1.2 schemas
1 parent c5dd58f commit 9ca2acf

File tree

2 files changed

+263
-0
lines changed

2 files changed

+263
-0
lines changed

schema/soap1.2-envelope.xsd

Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
This XML file does not appear to have any style information associated with it. The document tree is shown below.
2+
<!--
3+
4+
5+
Copyright 2001 - 2006, International Business Machines Corporation and Microsoft Corporation
6+
All Rights Reserved
7+
8+
License for WSDL 1.1 Binding Extension for SOAP 1.2 Schema Files
9+
10+
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:
11+
12+
http://schemas.xmlsoap.org/wsdl/soap12/wsdl11soap12.xsd
13+
14+
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.
15+
16+
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.
17+
18+
No other rights are granted by implication, estoppel or otherwise.
19+
20+
21+
-->
22+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsoap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://schemas.xmlsoap.org/wsdl/soap12/">
23+
<xs:import namespace="http://schemas.xmlsoap.org/wsdl/"/>
24+
<xs:complexType name="tExtensibilityElementOpenAttrs">
25+
<xs:complexContent>
26+
<xs:extension base="wsdl:tExtensibilityElement">
27+
<xs:anyAttribute namespace="##other" processContents="lax"/>
28+
</xs:extension>
29+
</xs:complexContent>
30+
</xs:complexType>
31+
<xs:element name="binding" type="wsoap12:tBinding"/>
32+
<xs:complexType name="tBinding">
33+
<xs:complexContent>
34+
<xs:extension base="wsoap12:tExtensibilityElementOpenAttrs">
35+
<xs:attribute name="transport" type="xs:anyURI" use="required"/>
36+
<xs:attribute name="style" type="wsoap12:tStyleChoice" use="optional"/>
37+
</xs:extension>
38+
</xs:complexContent>
39+
</xs:complexType>
40+
<xs:simpleType name="tStyleChoice">
41+
<xs:restriction base="xs:string">
42+
<xs:enumeration value="rpc"/>
43+
<xs:enumeration value="document"/>
44+
</xs:restriction>
45+
</xs:simpleType>
46+
<xs:element name="operation" type="wsoap12:tOperation"/>
47+
<xs:complexType name="tOperation">
48+
<xs:complexContent>
49+
<xs:extension base="wsoap12:tExtensibilityElementOpenAttrs">
50+
<xs:attribute name="soapAction" type="xs:anyURI" use="optional"/>
51+
<xs:attribute name="soapActionRequired" type="xs:boolean" use="optional"/>
52+
<xs:attribute name="style" type="wsoap12:tStyleChoice" use="optional"/>
53+
</xs:extension>
54+
</xs:complexContent>
55+
</xs:complexType>
56+
<xs:element name="body" type="wsoap12:tBody"/>
57+
<xs:attributeGroup name="tBodyAttributes">
58+
<!--
59+
The encodingStyle attribute is now a single URI, instead of a list of URIs
60+
-->
61+
<xs:attribute name="encodingStyle" type="xs:anyURI" use="optional"/>
62+
<xs:attribute name="use" type="wsoap12:useChoice" use="optional"/>
63+
<xs:attribute name="namespace" type="xs:anyURI" use="optional"/>
64+
</xs:attributeGroup>
65+
<xs:simpleType name="tParts">
66+
<xs:list itemType="xs:NMTOKEN"/>
67+
</xs:simpleType>
68+
<xs:complexType name="tBody">
69+
<xs:complexContent>
70+
<xs:extension base="wsoap12:tExtensibilityElementOpenAttrs">
71+
<xs:attribute name="parts" type="wsoap12:tParts" use="optional"/>
72+
<xs:attributeGroup ref="wsoap12:tBodyAttributes"/>
73+
</xs:extension>
74+
</xs:complexContent>
75+
</xs:complexType>
76+
<xs:simpleType name="useChoice">
77+
<xs:restriction base="xs:string">
78+
<xs:enumeration value="literal"/>
79+
<xs:enumeration value="encoded"/>
80+
</xs:restriction>
81+
</xs:simpleType>
82+
<xs:element name="fault" type="wsoap12:tFault"/>
83+
<xs:complexType name="tFaultRes" abstract="true">
84+
<xs:complexContent>
85+
<xs:restriction base="wsoap12:tBody">
86+
<xs:attribute ref="wsdl:required" use="optional"/>
87+
<xs:attribute name="parts" type="wsoap12:tParts" use="prohibited"/>
88+
<xs:attributeGroup ref="wsoap12:tBodyAttributes"/>
89+
</xs:restriction>
90+
</xs:complexContent>
91+
</xs:complexType>
92+
<xs:complexType name="tFault">
93+
<xs:complexContent>
94+
<xs:extension base="wsoap12:tFaultRes">
95+
<xs:attribute name="name" type="xs:NCName" use="required"/>
96+
</xs:extension>
97+
</xs:complexContent>
98+
</xs:complexType>
99+
<xs:element name="header" type="wsoap12:tHeader"/>
100+
<xs:attributeGroup name="tHeaderAttributes">
101+
<xs:attribute name="message" type="xs:QName" use="required"/>
102+
<xs:attribute name="part" type="xs:NMTOKEN" use="required"/>
103+
<xs:attribute name="use" type="wsoap12:useChoice" use="required"/>
104+
<xs:attribute name="encodingStyle" type="xs:anyURI" use="optional"/>
105+
<xs:attribute name="namespace" type="xs:anyURI" use="optional"/>
106+
</xs:attributeGroup>
107+
<xs:complexType name="tHeader">
108+
<xs:complexContent>
109+
<xs:extension base="wsoap12:tExtensibilityElementOpenAttrs">
110+
<xs:sequence>
111+
<xs:element ref="wsoap12:headerfault" minOccurs="0" maxOccurs="unbounded"/>
112+
</xs:sequence>
113+
<xs:attributeGroup ref="wsoap12:tHeaderAttributes"/>
114+
</xs:extension>
115+
</xs:complexContent>
116+
</xs:complexType>
117+
<xs:element name="headerfault" type="wsoap12:tHeaderFault"/>
118+
<xs:complexType name="tHeaderFault">
119+
<xs:attributeGroup ref="wsoap12:tHeaderAttributes"/>
120+
<xs:anyAttribute namespace="##other" processContents="lax"/>
121+
</xs:complexType>
122+
<xs:element name="address" type="wsoap12:tAddress"/>
123+
<xs:complexType name="tAddress">
124+
<xs:complexContent>
125+
<xs:extension base="wsoap12:tExtensibilityElementOpenAttrs">
126+
<xs:attribute name="location" type="xs:anyURI" use="required"/>
127+
</xs:extension>
128+
</xs:complexContent>
129+
</xs:complexType>
130+
</xs:schema>

schema/soap1.2.xsd

Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
<?xml version="1.0" encoding="UTF-8" ?>
2+
<!-- Copyright 2001 - 2006, International Business Machines Corporation and
3+
Microsoft Corporation All Rights Reserved License for WSDL 1.1 Binding Extension
4+
for SOAP 1.2 Schema Files The Authors grant permission to copy and distribute
5+
the WSDL 1.1 Binding Extension for SOAP 1.2 Schema Files in any medium without
6+
fee or royalty as long as this notice and license are distributed with them.
7+
The originals of these files can be located at: http://schemas.xmlsoap.org/wsdl/soap12/wsdl11soap12.xsd
8+
THESE SCHEMA FILES ARE PROVIDED "AS IS," AND THE AUTHORS MAKE NO REPRESENTATIONS
9+
OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THESE FILES, INCLUDING, BUT
10+
NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,
11+
NON-INFRINGEMENT OR TITLE. THE AUTHORS WILL NOT BE LIABLE FOR ANY DIRECT,
12+
INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR
13+
RELATING TO ANY USE OR DISTRIBUTION OF THESE FILES. The name and trademarks
14+
of the Authors may NOT be used in any manner, including advertising or publicity
15+
pertaining to these files or any program or service that uses these files,
16+
written prior permission. Title to copyright in these files will at all times
17+
remain with the Authors. No other rights are granted by implication, estoppel
18+
or otherwise. -->
19+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
20+
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsoap12="http://schemas.xmlsoap.org/wsdl/soap12/"
21+
targetNamespace="http://schemas.xmlsoap.org/wsdl/soap12/">
22+
<xs:import namespace="http://schemas.xmlsoap.org/wsdl/" />
23+
<xs:complexType name="tExtensibilityElementOpenAttrs">
24+
<xs:complexContent>
25+
<xs:extension base="wsdl:tExtensibilityElement">
26+
<xs:anyAttribute namespace="##other"
27+
processContents="lax" />
28+
</xs:extension>
29+
</xs:complexContent>
30+
</xs:complexType>
31+
<xs:element name="binding" type="wsoap12:tBinding" />
32+
<xs:complexType name="tBinding">
33+
<xs:complexContent>
34+
<xs:extension base="wsoap12:tExtensibilityElementOpenAttrs">
35+
<xs:attribute name="transport" type="xs:anyURI" use="required" />
36+
<xs:attribute name="style" type="wsoap12:tStyleChoice"
37+
use="optional" />
38+
</xs:extension>
39+
</xs:complexContent>
40+
</xs:complexType>
41+
<xs:simpleType name="tStyleChoice">
42+
<xs:restriction base="xs:string">
43+
<xs:enumeration value="rpc" />
44+
<xs:enumeration value="document" />
45+
</xs:restriction>
46+
</xs:simpleType>
47+
<xs:element name="operation" type="wsoap12:tOperation" />
48+
<xs:complexType name="tOperation">
49+
<xs:complexContent>
50+
<xs:extension base="wsoap12:tExtensibilityElementOpenAttrs">
51+
<xs:attribute name="soapAction" type="xs:anyURI" use="optional" />
52+
<xs:attribute name="soapActionRequired" type="xs:boolean"
53+
use="optional" />
54+
<xs:attribute name="style" type="wsoap12:tStyleChoice"
55+
use="optional" />
56+
</xs:extension>
57+
</xs:complexContent>
58+
</xs:complexType>
59+
<xs:element name="body" type="wsoap12:tBody" />
60+
<xs:attributeGroup name="tBodyAttributes">
61+
<!-- The encodingStyle attribute is now a single URI, instead of a list
62+
of URIs -->
63+
<xs:attribute name="encodingStyle" type="xs:anyURI" use="optional" />
64+
<xs:attribute name="use" type="wsoap12:useChoice" use="optional" />
65+
<xs:attribute name="namespace" type="xs:anyURI" use="optional" />
66+
</xs:attributeGroup>
67+
<xs:simpleType name="tParts">
68+
<xs:list itemType="xs:NMTOKEN" />
69+
</xs:simpleType>
70+
<xs:complexType name="tBody">
71+
<xs:complexContent>
72+
<xs:extension base="wsoap12:tExtensibilityElementOpenAttrs">
73+
<xs:attribute name="parts" type="wsoap12:tParts" use="optional" />
74+
<xs:attributeGroup ref="wsoap12:tBodyAttributes" />
75+
</xs:extension>
76+
</xs:complexContent>
77+
</xs:complexType>
78+
<xs:simpleType name="useChoice">
79+
<xs:restriction base="xs:string">
80+
<xs:enumeration value="literal" />
81+
<xs:enumeration value="encoded" />
82+
</xs:restriction>
83+
</xs:simpleType>
84+
<xs:element name="fault" type="wsoap12:tFault" />
85+
<xs:complexType name="tFaultRes" abstract="true">
86+
<xs:complexContent>
87+
<xs:restriction base="wsoap12:tBody">
88+
<xs:attribute ref="wsdl:required" use="optional" />
89+
<xs:attribute name="parts" type="wsoap12:tParts" use="prohibited" />
90+
<xs:attributeGroup ref="wsoap12:tBodyAttributes" />
91+
</xs:restriction>
92+
</xs:complexContent>
93+
</xs:complexType>
94+
<xs:complexType name="tFault">
95+
<xs:complexContent>
96+
<xs:extension base="wsoap12:tFaultRes">
97+
<xs:attribute name="name" type="xs:NCName" use="required" />
98+
</xs:extension>
99+
</xs:complexContent>
100+
</xs:complexType>
101+
<xs:element name="header" type="wsoap12:tHeader" />
102+
<xs:attributeGroup name="tHeaderAttributes">
103+
<xs:attribute name="message" type="xs:QName" use="required" />
104+
<xs:attribute name="part" type="xs:NMTOKEN" use="required" />
105+
<xs:attribute name="use" type="wsoap12:useChoice" use="required" />
106+
<xs:attribute name="encodingStyle" type="xs:anyURI" use="optional" />
107+
<xs:attribute name="namespace" type="xs:anyURI" use="optional" />
108+
</xs:attributeGroup>
109+
<xs:complexType name="tHeader">
110+
<xs:complexContent>
111+
<xs:extension base="wsoap12:tExtensibilityElementOpenAttrs">
112+
<xs:sequence>
113+
<xs:element ref="wsoap12:headerfault" minOccurs="0"
114+
maxOccurs="unbounded" />
115+
</xs:sequence>
116+
<xs:attributeGroup ref="wsoap12:tHeaderAttributes" />
117+
</xs:extension>
118+
</xs:complexContent>
119+
</xs:complexType>
120+
<xs:element name="headerfault" type="wsoap12:tHeaderFault" />
121+
<xs:complexType name="tHeaderFault">
122+
<xs:attributeGroup ref="wsoap12:tHeaderAttributes" />
123+
<xs:anyAttribute namespace="##other" processContents="lax" />
124+
</xs:complexType>
125+
<xs:element name="address" type="wsoap12:tAddress" />
126+
<xs:complexType name="tAddress">
127+
<xs:complexContent>
128+
<xs:extension base="wsoap12:tExtensibilityElementOpenAttrs">
129+
<xs:attribute name="location" type="xs:anyURI" use="required" />
130+
</xs:extension>
131+
</xs:complexContent>
132+
</xs:complexType>
133+
</xs:schema>

0 commit comments

Comments
 (0)