saml2 1.0.5 → 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,195 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+ OASIS takes no position regarding the validity or scope of any intellectual property or other rights that might be claimed to pertain to the implementation or use of the technology described in this document or the extent to which any license under such rights might or might not be available; neither does it represent that it has made any effort to identify any such rights. Information on OASIS's procedures with respect to rights in OASIS specifications can be found at the OASIS website. Copies of claims of rights made available for publication and any assurances of licenses to be made available, or the result of an attempt made to obtain a general license or permission for the use of such proprietary rights by implementors or users of this specification, can be obtained from the OASIS Executive Director.
4
+ OASIS invites any interested party to bring to its attention any copyrights, patents or patent applications, or other proprietary rights which may cover technology that may be required to implement this specification. Please address the information to the OASIS Executive Director.
5
+ Copyright © OASIS Open 2002-2004. All Rights Reserved.
6
+ This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself does not be modified in any way, such as by removing the copyright notice or references to OASIS, except as needed for the purpose of developing OASIS specifications, in which case the procedures for copyrights defined in the OASIS Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
7
+ The limited permissions granted above are perpetual and will not be revoked by OASIS or its successors or assigns.
8
+ This document and the information contained herein is provided on an “AS IS” basis and OASIS DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
9
+ -->
10
+ <xsd:schema targetNamespace="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" elementFormDefault="qualified" attributeFormDefault="unqualified" blockDefault="#all" version="0.2">
11
+ <xsd:import namespace="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" schemaLocation="oasis-200401-wss-wssecurity-utility-1.0.xsd"/>
12
+ <xsd:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="http://www.w3.org/2001/xml.xsd"/>
13
+ <xsd:import namespace="http://www.w3.org/2000/09/xmldsig#" schemaLocation="xmldsig-core-schema.xsd"/>
14
+ <xsd:complexType name="AttributedString">
15
+ <xsd:annotation>
16
+ <xsd:documentation>This type represents an element with arbitrary attributes.</xsd:documentation>
17
+ </xsd:annotation>
18
+ <xsd:simpleContent>
19
+ <xsd:extension base="xsd:string">
20
+ <xsd:attribute ref="wsu:Id"/>
21
+ <xsd:anyAttribute namespace="##other" processContents="lax"/>
22
+ </xsd:extension>
23
+ </xsd:simpleContent>
24
+ </xsd:complexType>
25
+ <xsd:complexType name="PasswordString">
26
+ <xsd:annotation>
27
+ <xsd:documentation>This type is used for password elements per Section 4.1.</xsd:documentation>
28
+ </xsd:annotation>
29
+ <xsd:simpleContent>
30
+ <xsd:extension base="wsse:AttributedString">
31
+ <xsd:attribute name="Type" type="xsd:anyURI"/>
32
+ </xsd:extension>
33
+ </xsd:simpleContent>
34
+ </xsd:complexType>
35
+ <xsd:complexType name="EncodedString">
36
+ <xsd:annotation>
37
+ <xsd:documentation>This type is used for elements containing stringified binary data.</xsd:documentation>
38
+ </xsd:annotation>
39
+ <xsd:simpleContent>
40
+ <xsd:extension base="wsse:AttributedString">
41
+ <xsd:attribute name="EncodingType" type="xsd:anyURI"/>
42
+ </xsd:extension>
43
+ </xsd:simpleContent>
44
+ </xsd:complexType>
45
+ <xsd:complexType name="UsernameTokenType">
46
+ <xsd:annotation>
47
+ <xsd:documentation>This type represents a username token per Section 4.1</xsd:documentation>
48
+ </xsd:annotation>
49
+ <xsd:sequence>
50
+ <xsd:element name="Username" type="wsse:AttributedString"/>
51
+ <xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
52
+ </xsd:sequence>
53
+ <xsd:attribute ref="wsu:Id"/>
54
+ <xsd:anyAttribute namespace="##other" processContents="lax"/>
55
+ </xsd:complexType>
56
+ <xsd:complexType name="BinarySecurityTokenType">
57
+ <xsd:annotation>
58
+ <xsd:documentation>A security token that is encoded in binary</xsd:documentation>
59
+ </xsd:annotation>
60
+ <xsd:simpleContent>
61
+ <xsd:extension base="wsse:EncodedString">
62
+ <xsd:attribute name="ValueType" type="xsd:anyURI"/>
63
+ </xsd:extension>
64
+ </xsd:simpleContent>
65
+ </xsd:complexType>
66
+ <xsd:complexType name="KeyIdentifierType">
67
+ <xsd:annotation>
68
+ <xsd:documentation>A security token key identifier</xsd:documentation>
69
+ </xsd:annotation>
70
+ <xsd:simpleContent>
71
+ <xsd:extension base="wsse:EncodedString">
72
+ <xsd:attribute name="ValueType" type="xsd:anyURI"/>
73
+ </xsd:extension>
74
+ </xsd:simpleContent>
75
+ </xsd:complexType>
76
+ <xsd:simpleType name="tUsage">
77
+ <xsd:annotation>
78
+ <xsd:documentation>Typedef to allow a list of usages (as URIs).</xsd:documentation>
79
+ </xsd:annotation>
80
+ <xsd:list itemType="xsd:anyURI"/>
81
+ </xsd:simpleType>
82
+ <xsd:attribute name="Usage" type="tUsage">
83
+ <xsd:annotation>
84
+ <xsd:documentation>This global attribute is used to indicate the usage of a referenced or indicated token within the containing context</xsd:documentation>
85
+ </xsd:annotation>
86
+ </xsd:attribute>
87
+ <xsd:complexType name="ReferenceType">
88
+ <xsd:annotation>
89
+ <xsd:documentation>This type represents a reference to an external security token.</xsd:documentation>
90
+ </xsd:annotation>
91
+ <xsd:attribute name="URI" type="xsd:anyURI"/>
92
+ <xsd:attribute name="ValueType" type="xsd:anyURI"/>
93
+ <xsd:anyAttribute namespace="##other" processContents="lax"/>
94
+ </xsd:complexType>
95
+ <xsd:complexType name="EmbeddedType">
96
+ <xsd:annotation>
97
+ <xsd:documentation>This type represents a reference to an embedded security token.</xsd:documentation>
98
+ </xsd:annotation>
99
+ <xsd:choice minOccurs="0" maxOccurs="unbounded">
100
+ <xsd:any processContents="lax"/>
101
+ </xsd:choice>
102
+ <xsd:attribute name="ValueType" type="xsd:anyURI"/>
103
+ <xsd:anyAttribute namespace="##other" processContents="lax"/>
104
+ </xsd:complexType>
105
+ <xsd:complexType name="SecurityTokenReferenceType">
106
+ <xsd:annotation>
107
+ <xsd:documentation>This type is used reference a security token.</xsd:documentation>
108
+ </xsd:annotation>
109
+ <xsd:choice minOccurs="0" maxOccurs="unbounded">
110
+ <xsd:any processContents="lax"/>
111
+ </xsd:choice>
112
+ <xsd:attribute ref="wsu:Id"/>
113
+ <xsd:attribute ref="wsse:Usage"/>
114
+ <xsd:anyAttribute namespace="##other" processContents="lax"/>
115
+ </xsd:complexType>
116
+ <xsd:complexType name="SecurityHeaderType">
117
+ <xsd:annotation>
118
+ <xsd:documentation>This complexType defines header block to use for security-relevant data directed at a specific SOAP actor.</xsd:documentation>
119
+ </xsd:annotation>
120
+ <xsd:sequence>
121
+ <xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded">
122
+ <xsd:annotation>
123
+ <xsd:documentation>The use of "any" is to allow extensibility and different forms of security data.</xsd:documentation>
124
+ </xsd:annotation>
125
+ </xsd:any>
126
+ </xsd:sequence>
127
+ <xsd:anyAttribute namespace="##other" processContents="lax"/>
128
+ </xsd:complexType>
129
+ <xsd:complexType name="TransformationParametersType">
130
+ <xsd:annotation>
131
+ <xsd:documentation>This complexType defines a container for elements to be specified from any namespace as properties/parameters of a DSIG transformation.</xsd:documentation>
132
+ </xsd:annotation>
133
+ <xsd:sequence>
134
+ <xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded">
135
+ <xsd:annotation>
136
+ <xsd:documentation>The use of "any" is to allow extensibility from any namespace.</xsd:documentation>
137
+ </xsd:annotation>
138
+ </xsd:any>
139
+ </xsd:sequence>
140
+ <xsd:anyAttribute namespace="##other" processContents="lax"/>
141
+ </xsd:complexType>
142
+ <xsd:element name="UsernameToken" type="wsse:UsernameTokenType">
143
+ <xsd:annotation>
144
+ <xsd:documentation>This element defines the wsse:UsernameToken element per Section 4.1.</xsd:documentation>
145
+ </xsd:annotation>
146
+ </xsd:element>
147
+ <xsd:element name="BinarySecurityToken" type="wsse:BinarySecurityTokenType">
148
+ <xsd:annotation>
149
+ <xsd:documentation>This element defines the wsse:BinarySecurityToken element per Section 4.2.</xsd:documentation>
150
+ </xsd:annotation>
151
+ </xsd:element>
152
+ <xsd:element name="Reference" type="wsse:ReferenceType">
153
+ <xsd:annotation>
154
+ <xsd:documentation>This element defines a security token reference</xsd:documentation>
155
+ </xsd:annotation>
156
+ </xsd:element>
157
+ <xsd:element name="Embedded" type="wsse:EmbeddedType">
158
+ <xsd:annotation>
159
+ <xsd:documentation>This element defines a security token embedded reference</xsd:documentation>
160
+ </xsd:annotation>
161
+ </xsd:element>
162
+ <xsd:element name="KeyIdentifier" type="wsse:KeyIdentifierType">
163
+ <xsd:annotation>
164
+ <xsd:documentation>This element defines a key identifier reference</xsd:documentation>
165
+ </xsd:annotation>
166
+ </xsd:element>
167
+ <xsd:element name="SecurityTokenReference" type="wsse:SecurityTokenReferenceType">
168
+ <xsd:annotation>
169
+ <xsd:documentation>This element defines the wsse:SecurityTokenReference per Section 4.3.</xsd:documentation>
170
+ </xsd:annotation>
171
+ </xsd:element>
172
+ <xsd:element name="Security" type="wsse:SecurityHeaderType">
173
+ <xsd:annotation>
174
+ <xsd:documentation>This element defines the wsse:Security SOAP header element per Section 4.</xsd:documentation>
175
+ </xsd:annotation>
176
+ </xsd:element>
177
+ <xsd:element name="TransformationParameters" type="wsse:TransformationParametersType">
178
+ <xsd:annotation>
179
+ <xsd:documentation>This element contains properties for transformations from any namespace, including DSIG.</xsd:documentation>
180
+ </xsd:annotation>
181
+ </xsd:element>
182
+ <xsd:element name="Password" type="wsse:PasswordString"/>
183
+ <xsd:element name="Nonce" type="wsse:EncodedString"/>
184
+ <xsd:simpleType name="FaultcodeEnum">
185
+ <xsd:restriction base="xsd:QName">
186
+ <xsd:enumeration value="wsse:UnsupportedSecurityToken"/>
187
+ <xsd:enumeration value="wsse:UnsupportedAlgorithm"/>
188
+ <xsd:enumeration value="wsse:InvalidSecurity"/>
189
+ <xsd:enumeration value="wsse:InvalidSecurityToken"/>
190
+ <xsd:enumeration value="wsse:FailedAuthentication"/>
191
+ <xsd:enumeration value="wsse:FailedCheck"/>
192
+ <xsd:enumeration value="wsse:SecurityTokenUnavailable"/>
193
+ </xsd:restriction>
194
+ </xsd:simpleType>
195
+ </xsd:schema>
@@ -0,0 +1,108 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+ OASIS takes no position regarding the validity or scope of any intellectual property or other rights that might be claimed to pertain to the implementation or use of the technology described in this document or the extent to which any license under such rights might or might not be available; neither does it represent that it has made any effort to identify any such rights. Information on OASIS's procedures with respect to rights in OASIS specifications can be found at the OASIS website. Copies of claims of rights made available for publication and any assurances of licenses to be made available, or the result of an attempt made to obtain a general license or permission for the use of such proprietary rights by implementors or users of this specification, can be obtained from the OASIS Executive Director.
4
+ OASIS invites any interested party to bring to its attention any copyrights, patents or patent applications, or other proprietary rights which may cover technology that may be required to implement this specification. Please address the information to the OASIS Executive Director.
5
+ Copyright © OASIS Open 2002-2004. All Rights Reserved.
6
+ This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself does not be modified in any way, such as by removing the copyright notice or references to OASIS, except as needed for the purpose of developing OASIS specifications, in which case the procedures for copyrights defined in the OASIS Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
7
+ The limited permissions granted above are perpetual and will not be revoked by OASIS or its successors or assigns.
8
+ This document and the information contained herein is provided on an “AS IS” basis and OASIS DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
9
+ -->
10
+ <xsd:schema targetNamespace="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
11
+
12
+
13
+
14
+ xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
15
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="0.1">
16
+ <!-- // Fault Codes /////////////////////////////////////////// -->
17
+ <xsd:simpleType name="tTimestampFault">
18
+ <xsd:annotation>
19
+ <xsd:documentation>
20
+ This type defines the fault code value for Timestamp message expiration.
21
+ </xsd:documentation>
22
+ </xsd:annotation>
23
+ <xsd:restriction base="xsd:QName">
24
+ <xsd:enumeration value="wsu:MessageExpired"/>
25
+ </xsd:restriction>
26
+ </xsd:simpleType>
27
+ <!-- // Global attributes //////////////////////////////////// -->
28
+ <xsd:attribute name="Id" type="xsd:ID">
29
+ <xsd:annotation>
30
+ <xsd:documentation>
31
+ This global attribute supports annotating arbitrary elements with an ID.
32
+ </xsd:documentation>
33
+ </xsd:annotation>
34
+ </xsd:attribute>
35
+ <xsd:attributeGroup name="commonAtts">
36
+ <xsd:annotation>
37
+ <xsd:documentation>
38
+ Convenience attribute group used to simplify this schema.
39
+ </xsd:documentation>
40
+ </xsd:annotation>
41
+ <xsd:attribute ref="wsu:Id" use="optional"/>
42
+ <xsd:anyAttribute namespace="##other" processContents="lax"/>
43
+ </xsd:attributeGroup>
44
+ <!-- // Utility types //////////////////////////////////////// -->
45
+ <xsd:complexType name="AttributedDateTime">
46
+ <xsd:annotation>
47
+ <xsd:documentation>
48
+ This type is for elements whose [children] is a psuedo-dateTime and can have arbitrary attributes.
49
+ </xsd:documentation>
50
+ </xsd:annotation>
51
+ <xsd:simpleContent>
52
+ <xsd:extension base="xsd:string">
53
+ <xsd:attributeGroup ref="wsu:commonAtts"/>
54
+ </xsd:extension>
55
+ </xsd:simpleContent>
56
+ </xsd:complexType>
57
+ <xsd:complexType name="AttributedURI">
58
+ <xsd:annotation>
59
+ <xsd:documentation>
60
+ This type is for elements whose [children] is an anyURI and can have arbitrary attributes.
61
+ </xsd:documentation>
62
+ </xsd:annotation>
63
+ <xsd:simpleContent>
64
+ <xsd:extension base="xsd:anyURI">
65
+ <xsd:attributeGroup ref="wsu:commonAtts"/>
66
+ </xsd:extension>
67
+ </xsd:simpleContent>
68
+ </xsd:complexType>
69
+ <!-- // Timestamp header components /////////////////////////// -->
70
+ <xsd:complexType name="TimestampType">
71
+ <xsd:annotation>
72
+ <xsd:documentation>
73
+ This complex type ties together the timestamp related elements into a composite type.
74
+ </xsd:documentation>
75
+ </xsd:annotation>
76
+ <xsd:sequence>
77
+ <xsd:element ref="wsu:Created" minOccurs="0"/>
78
+ <xsd:element ref="wsu:Expires" minOccurs="0"/>
79
+ <xsd:choice minOccurs="0" maxOccurs="unbounded">
80
+ <xsd:any namespace="##other" processContents="lax"/>
81
+ </xsd:choice>
82
+ </xsd:sequence>
83
+ <xsd:attributeGroup ref="wsu:commonAtts"/>
84
+ </xsd:complexType>
85
+ <xsd:element name="Timestamp" type="wsu:TimestampType">
86
+ <xsd:annotation>
87
+ <xsd:documentation>
88
+ This element allows Timestamps to be applied anywhere element wildcards are present,
89
+ including as a SOAP header.
90
+ </xsd:documentation>
91
+ </xsd:annotation>
92
+ </xsd:element>
93
+ <!-- global element decls to allow individual elements to appear anywhere -->
94
+ <xsd:element name="Expires" type="wsu:AttributedDateTime">
95
+ <xsd:annotation>
96
+ <xsd:documentation>
97
+ This element allows an expiration time to be applied anywhere element wildcards are present.
98
+ </xsd:documentation>
99
+ </xsd:annotation>
100
+ </xsd:element>
101
+ <xsd:element name="Created" type="wsu:AttributedDateTime">
102
+ <xsd:annotation>
103
+ <xsd:documentation>
104
+ This element allows a creation time to be applied anywhere element wildcards are present.
105
+ </xsd:documentation>
106
+ </xsd:annotation>
107
+ </xsd:element>
108
+ </xsd:schema>
@@ -0,0 +1,137 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!--
3
+ W3C XML Schema defined in the Web Services Addressing 1.0 specification
4
+ http://www.w3.org/TR/ws-addr-core
5
+
6
+ Copyright © 2005 World Wide Web Consortium,
7
+
8
+ (Massachusetts Institute of Technology, European Research Consortium for
9
+ Informatics and Mathematics, Keio University). All Rights Reserved. This
10
+ work is distributed under the W3C® Software License [1] in the hope that
11
+ it will be useful, but WITHOUT ANY WARRANTY; without even the implied
12
+ warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13
+
14
+ [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
15
+
16
+ $Id: ws-addr.xsd,v 1.2 2008/07/23 13:38:16 plehegar Exp $
17
+ -->
18
+ <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://www.w3.org/2005/08/addressing" targetNamespace="http://www.w3.org/2005/08/addressing" blockDefault="#all" elementFormDefault="qualified" finalDefault="" attributeFormDefault="unqualified">
19
+
20
+ <!-- Constructs from the WS-Addressing Core -->
21
+
22
+ <xs:element name="EndpointReference" type="tns:EndpointReferenceType"/>
23
+ <xs:complexType name="EndpointReferenceType" mixed="false">
24
+ <xs:sequence>
25
+ <xs:element name="Address" type="tns:AttributedURIType"/>
26
+ <xs:element ref="tns:ReferenceParameters" minOccurs="0"/>
27
+ <xs:element ref="tns:Metadata" minOccurs="0"/>
28
+ <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
29
+ </xs:sequence>
30
+ <xs:anyAttribute namespace="##other" processContents="lax"/>
31
+ </xs:complexType>
32
+
33
+ <xs:element name="ReferenceParameters" type="tns:ReferenceParametersType"/>
34
+ <xs:complexType name="ReferenceParametersType" mixed="false">
35
+ <xs:sequence>
36
+ <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
37
+ </xs:sequence>
38
+ <xs:anyAttribute namespace="##other" processContents="lax"/>
39
+ </xs:complexType>
40
+
41
+ <xs:element name="Metadata" type="tns:MetadataType"/>
42
+ <xs:complexType name="MetadataType" mixed="false">
43
+ <xs:sequence>
44
+ <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
45
+ </xs:sequence>
46
+ <xs:anyAttribute namespace="##other" processContents="lax"/>
47
+ </xs:complexType>
48
+
49
+ <xs:element name="MessageID" type="tns:AttributedURIType"/>
50
+ <xs:element name="RelatesTo" type="tns:RelatesToType"/>
51
+ <xs:complexType name="RelatesToType" mixed="false">
52
+ <xs:simpleContent>
53
+ <xs:extension base="xs:anyURI">
54
+ <xs:attribute name="RelationshipType" type="tns:RelationshipTypeOpenEnum" use="optional" default="http://www.w3.org/2005/08/addressing/reply"/>
55
+ <xs:anyAttribute namespace="##other" processContents="lax"/>
56
+ </xs:extension>
57
+ </xs:simpleContent>
58
+ </xs:complexType>
59
+
60
+ <xs:simpleType name="RelationshipTypeOpenEnum">
61
+ <xs:union memberTypes="tns:RelationshipType xs:anyURI"/>
62
+ </xs:simpleType>
63
+
64
+ <xs:simpleType name="RelationshipType">
65
+ <xs:restriction base="xs:anyURI">
66
+ <xs:enumeration value="http://www.w3.org/2005/08/addressing/reply"/>
67
+ </xs:restriction>
68
+ </xs:simpleType>
69
+
70
+ <xs:element name="ReplyTo" type="tns:EndpointReferenceType"/>
71
+ <xs:element name="From" type="tns:EndpointReferenceType"/>
72
+ <xs:element name="FaultTo" type="tns:EndpointReferenceType"/>
73
+ <xs:element name="To" type="tns:AttributedURIType"/>
74
+ <xs:element name="Action" type="tns:AttributedURIType"/>
75
+
76
+ <xs:complexType name="AttributedURIType" mixed="false">
77
+ <xs:simpleContent>
78
+ <xs:extension base="xs:anyURI">
79
+ <xs:anyAttribute namespace="##other" processContents="lax"/>
80
+ </xs:extension>
81
+ </xs:simpleContent>
82
+ </xs:complexType>
83
+
84
+ <!-- Constructs from the WS-Addressing SOAP binding -->
85
+
86
+ <xs:attribute name="IsReferenceParameter" type="xs:boolean"/>
87
+
88
+ <xs:simpleType name="FaultCodesOpenEnumType">
89
+ <xs:union memberTypes="tns:FaultCodesType xs:QName"/>
90
+ </xs:simpleType>
91
+
92
+ <xs:simpleType name="FaultCodesType">
93
+ <xs:restriction base="xs:QName">
94
+ <xs:enumeration value="tns:InvalidAddressingHeader"/>
95
+ <xs:enumeration value="tns:InvalidAddress"/>
96
+ <xs:enumeration value="tns:InvalidEPR"/>
97
+ <xs:enumeration value="tns:InvalidCardinality"/>
98
+ <xs:enumeration value="tns:MissingAddressInEPR"/>
99
+ <xs:enumeration value="tns:DuplicateMessageID"/>
100
+ <xs:enumeration value="tns:ActionMismatch"/>
101
+ <xs:enumeration value="tns:MessageAddressingHeaderRequired"/>
102
+ <xs:enumeration value="tns:DestinationUnreachable"/>
103
+ <xs:enumeration value="tns:ActionNotSupported"/>
104
+ <xs:enumeration value="tns:EndpointUnavailable"/>
105
+ </xs:restriction>
106
+ </xs:simpleType>
107
+
108
+ <xs:element name="RetryAfter" type="tns:AttributedUnsignedLongType"/>
109
+ <xs:complexType name="AttributedUnsignedLongType" mixed="false">
110
+ <xs:simpleContent>
111
+ <xs:extension base="xs:unsignedLong">
112
+ <xs:anyAttribute namespace="##other" processContents="lax"/>
113
+ </xs:extension>
114
+ </xs:simpleContent>
115
+ </xs:complexType>
116
+
117
+ <xs:element name="ProblemHeaderQName" type="tns:AttributedQNameType"/>
118
+ <xs:complexType name="AttributedQNameType" mixed="false">
119
+ <xs:simpleContent>
120
+ <xs:extension base="xs:QName">
121
+ <xs:anyAttribute namespace="##other" processContents="lax"/>
122
+ </xs:extension>
123
+ </xs:simpleContent>
124
+ </xs:complexType>
125
+
126
+ <xs:element name="ProblemIRI" type="tns:AttributedURIType"/>
127
+
128
+ <xs:element name="ProblemAction" type="tns:ProblemActionType"/>
129
+ <xs:complexType name="ProblemActionType" mixed="false">
130
+ <xs:sequence>
131
+ <xs:element ref="tns:Action" minOccurs="0"/>
132
+ <xs:element name="SoapAction" minOccurs="0" type="xs:anyURI"/>
133
+ </xs:sequence>
134
+ <xs:anyAttribute namespace="##other" processContents="lax"/>
135
+ </xs:complexType>
136
+
137
+ </xs:schema>
@@ -0,0 +1,145 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!--
3
+ OASIS takes no position regarding the validity or scope of any intellectual property or other rights that might be claimed to pertain to the
4
+ implementation or use of the technology described in this document or the extent to which any license under such rights might or might not be available;
5
+ neither does it represent that it has made any effort to identify any such rights. Information on OASIS's procedures with respect to rights in OASIS
6
+ specifications can be found at the OASIS website. Copies of claims of rights made available for publication and any assurances of licenses to be made
7
+ available, or the result of an attempt made to obtain a general license or permission for the use of such proprietary rights by implementors or users
8
+ of this specification, can be obtained from the OASIS Executive Director.
9
+ OASIS invites any interested party to bring to its attention any copyrights, patents or patent applications, or other proprietary rights which may
10
+ cover technology that may be required to implement this specification. Please address the information to the OASIS Executive Director.
11
+ Copyright © OASIS Open 2002-2007. All Rights Reserved.
12
+ This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist
13
+ in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the
14
+ above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself does not be modified
15
+ in any way, such as by removing the copyright notice or references to OASIS, except as needed for the purpose of developing OASIS specifications,
16
+ in which case the procedures for copyrights defined in the OASIS Intellectual Property Rights document must be followed, or as required to translate
17
+ it into languages other than English.
18
+ The limited permissions granted above are perpetual and will not be revoked by OASIS or its successors or assigns.
19
+ This document and the information contained herein is provided on an AS IS basis and OASIS DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED,
20
+ INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
21
+ MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
22
+ -->
23
+
24
+ <xs:schema xmlns:xs='http://www.w3.org/2001/XMLSchema'
25
+ xmlns:xenc='http://www.w3.org/2001/04/xmlenc#'
26
+ xmlns:tns='http://docs.oasis-open.org/wsfed/authorization/200706'
27
+ targetNamespace='http://docs.oasis-open.org/wsfed/authorization/200706'
28
+ elementFormDefault='qualified' >
29
+ <xs:import namespace='http://www.w3.org/2001/04/xmlenc#'
30
+ schemaLocation='xenc-schema.xsd'/>
31
+
32
+ <!-- Section 9.2 -->
33
+ <xs:element name='AdditionalContext' type='tns:AdditionalContextType' />
34
+ <xs:complexType name='AdditionalContextType' >
35
+ <xs:sequence>
36
+ <xs:element name='ContextItem' type='tns:ContextItemType' minOccurs='0' maxOccurs='unbounded' />
37
+ <xs:any namespace='##other' processContents='lax' minOccurs='0' maxOccurs='unbounded' />
38
+ </xs:sequence>
39
+ <xs:anyAttribute namespace='##other' processContents='lax' />
40
+ </xs:complexType>
41
+
42
+ <xs:complexType name='ContextItemType' >
43
+ <xs:choice minOccurs='0'>
44
+ <xs:element name='Value' type='xs:string' minOccurs='1' maxOccurs='1' />
45
+ <xs:any namespace='##other' processContents='lax' minOccurs='1' maxOccurs='1' />
46
+ </xs:choice>
47
+ <xs:attribute name='Name' type='xs:anyURI' use='required' />
48
+ <xs:attribute name='Scope' type='xs:anyURI' use='optional' />
49
+ <xs:anyAttribute namespace='##other' processContents='lax' />
50
+ </xs:complexType>
51
+
52
+ <!-- Section 9.3 -->
53
+ <xs:element name='ClaimType' type='tns:ClaimType' />
54
+ <xs:complexType name='ClaimType' >
55
+ <xs:sequence>
56
+ <xs:element name="DisplayName" type="tns:DisplayNameType" minOccurs="0" maxOccurs="1" />
57
+ <xs:element name="Description" type="tns:DescriptionType" minOccurs="0" maxOccurs="1" />
58
+ <xs:element name="DisplayValue" type="tns:DisplayValueType" minOccurs="0" maxOccurs="1" />
59
+ <xs:choice minOccurs='0'>
60
+ <xs:element name='Value' type='xs:string' minOccurs='1' maxOccurs='1' />
61
+ <xs:element name='EncryptedValue' type='tns:EncryptedValueType' minOccurs='1' maxOccurs='1' />
62
+ <xs:element name='StructuredValue' type='tns:StructuredValueType' minOccurs='1' maxOccurs='1' />
63
+ <xs:element name='ConstrainedValue' type='tns:ConstrainedValueType' minOccurs='1' maxOccurs='1' />
64
+ <xs:any namespace='##other' processContents='lax' minOccurs='1' maxOccurs='1' />
65
+ </xs:choice>
66
+ </xs:sequence>
67
+ <xs:attribute name='Uri' type='xs:anyURI' use='required' />
68
+ <xs:attribute name='Optional' type='xs:boolean' use='optional' />
69
+ <xs:anyAttribute namespace='##other' processContents='lax' />
70
+ </xs:complexType>
71
+
72
+ <xs:complexType name="DisplayNameType">
73
+ <xs:simpleContent>
74
+ <xs:extension base="xs:string">
75
+ <xs:anyAttribute namespace="##other" processContents="lax" />
76
+ </xs:extension>
77
+ </xs:simpleContent>
78
+ </xs:complexType>
79
+ <xs:complexType name="DescriptionType">
80
+ <xs:simpleContent>
81
+ <xs:extension base="xs:string">
82
+ <xs:anyAttribute namespace="##other" processContents="lax" />
83
+ </xs:extension>
84
+ </xs:simpleContent>
85
+ </xs:complexType>
86
+ <xs:complexType name="DisplayValueType">
87
+ <xs:simpleContent>
88
+ <xs:extension base="xs:string">
89
+ <xs:anyAttribute namespace="##other" processContents="lax" />
90
+ </xs:extension>
91
+ </xs:simpleContent>
92
+ </xs:complexType>
93
+
94
+ <xs:complexType name="EncryptedValueType">
95
+ <xs:sequence>
96
+ <xs:element ref="xenc:EncryptedData" minOccurs="1" maxOccurs="1"/>
97
+ </xs:sequence>
98
+ <xs:attribute name="DecryptionCondition" type="xs:anyURI" use="optional"/>
99
+ </xs:complexType>
100
+
101
+ <xs:complexType name="StructuredValueType">
102
+ <xs:sequence>
103
+ <xs:any namespace='##other' processContents='lax' minOccurs='1' maxOccurs='unbounded' />
104
+ </xs:sequence>
105
+ <xs:anyAttribute namespace='##other' processContents='lax' />
106
+ </xs:complexType>
107
+
108
+ <!-- Section 9.3.1 -->
109
+
110
+ <xs:complexType name='ConstrainedValueType'>
111
+ <xs:sequence>
112
+ <xs:choice minOccurs='1'>
113
+ <xs:element name='ValueLessThan' type='tns:ConstrainedSingleValueType' minOccurs='1' maxOccurs='1'/>
114
+ <xs:element name='ValueLessThanOrEqual' type='tns:ConstrainedSingleValueType' minOccurs='1' maxOccurs='1'/>
115
+ <xs:element name='ValueGreaterThan' type='tns:ConstrainedSingleValueType' minOccurs='1' maxOccurs='1'/>
116
+ <xs:element name='ValueGreaterThanOrEqual' type='tns:ConstrainedSingleValueType' minOccurs='1' maxOccurs='1'/>
117
+ <xs:element name='ValueInRangen' type='tns:ValueInRangeType' minOccurs='1' maxOccurs='1'/>
118
+ <xs:element name='ValueOneOf' type='tns:ConstrainedManyValueType' minOccurs='1' maxOccurs='1'/>
119
+ </xs:choice>
120
+ <xs:any namespace='##other' processContents='lax' minOccurs='1' maxOccurs='unbounded' />
121
+ </xs:sequence>
122
+ <xs:attribute name='AssertConstraint' type='xs:boolean' use='optional' />
123
+ </xs:complexType>
124
+ <xs:complexType name='ValueInRangeType'>
125
+ <xs:sequence>
126
+ <xs:element name='ValueUpperBound' type='tns:ConstrainedSingleValueType' minOccurs='1' maxOccurs='1'/>
127
+ <xs:element name='ValueLowerBound' type='tns:ConstrainedSingleValueType' minOccurs='1' maxOccurs='1'/>
128
+ </xs:sequence>
129
+ </xs:complexType>
130
+
131
+ <xs:complexType name='ConstrainedSingleValueType'>
132
+ <xs:choice minOccurs='0'>
133
+ <xs:element name='Value' type='xs:string' minOccurs='1' maxOccurs='1' />
134
+ <xs:element name='StructuredValue' type='tns:StructuredValueType' minOccurs='1' maxOccurs='1' />
135
+ </xs:choice>
136
+ </xs:complexType>
137
+
138
+ <xs:complexType name='ConstrainedManyValueType'>
139
+ <xs:choice minOccurs='0'>
140
+ <xs:element name='Value' type='xs:string' minOccurs='1' maxOccurs='unbounded' />
141
+ <xs:element name='StructuredValue' type='tns:StructuredValueType' minOccurs='1' maxOccurs='unbounded' />
142
+ </xs:choice>
143
+ </xs:complexType>
144
+
145
+ </xs:schema>