custom-adal 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (98) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +6 -0
  3. data/.rubocop.yml +7 -0
  4. data/.travis.yml +7 -0
  5. data/Gemfile +25 -0
  6. data/LICENSE.txt +21 -0
  7. data/README.md +106 -0
  8. data/Rakefile +39 -0
  9. data/adal.gemspec +52 -0
  10. data/contributing.md +127 -0
  11. data/lib/adal/authentication_context.rb +202 -0
  12. data/lib/adal/authentication_parameters.rb +126 -0
  13. data/lib/adal/authority.rb +165 -0
  14. data/lib/adal/cache_driver.rb +171 -0
  15. data/lib/adal/cached_token_response.rb +190 -0
  16. data/lib/adal/client_assertion.rb +63 -0
  17. data/lib/adal/client_assertion_certificate.rb +89 -0
  18. data/lib/adal/client_credential.rb +46 -0
  19. data/lib/adal/core_ext/hash.rb +34 -0
  20. data/lib/adal/core_ext.rb +26 -0
  21. data/lib/adal/jwt_parameters.rb +39 -0
  22. data/lib/adal/logger.rb +90 -0
  23. data/lib/adal/logging.rb +98 -0
  24. data/lib/adal/memory_cache.rb +95 -0
  25. data/lib/adal/mex_request.rb +52 -0
  26. data/lib/adal/mex_response.rb +141 -0
  27. data/lib/adal/noop_cache.rb +38 -0
  28. data/lib/adal/oauth_request.rb +76 -0
  29. data/lib/adal/request_parameters.rb +48 -0
  30. data/lib/adal/self_signed_jwt_factory.rb +96 -0
  31. data/lib/adal/templates/rst.13.xml.erb +35 -0
  32. data/lib/adal/templates/rst.2005.xml.erb +32 -0
  33. data/lib/adal/token_request.rb +231 -0
  34. data/lib/adal/token_response.rb +144 -0
  35. data/lib/adal/user_assertion.rb +57 -0
  36. data/lib/adal/user_credential.rb +152 -0
  37. data/lib/adal/user_identifier.rb +83 -0
  38. data/lib/adal/user_information.rb +49 -0
  39. data/lib/adal/util.rb +49 -0
  40. data/lib/adal/version.rb +36 -0
  41. data/lib/adal/wstrust_request.rb +100 -0
  42. data/lib/adal/wstrust_response.rb +168 -0
  43. data/lib/adal/xml_namespaces.rb +64 -0
  44. data/lib/adal.rb +24 -0
  45. data/samples/authorization_code_example/README.md +10 -0
  46. data/samples/authorization_code_example/web_app.rb +139 -0
  47. data/samples/client_assertion_certificate_example/README.md +42 -0
  48. data/samples/client_assertion_certificate_example/app.rb +55 -0
  49. data/samples/on_behalf_of_example/README.md +35 -0
  50. data/samples/on_behalf_of_example/native_app.rb +52 -0
  51. data/samples/on_behalf_of_example/web_api.rb +71 -0
  52. data/samples/user_credentials_example/README.md +7 -0
  53. data/samples/user_credentials_example/app.rb +52 -0
  54. data/spec/adal/authentication_context_spec.rb +186 -0
  55. data/spec/adal/authentication_parameters_spec.rb +107 -0
  56. data/spec/adal/authority_spec.rb +122 -0
  57. data/spec/adal/cache_driver_spec.rb +191 -0
  58. data/spec/adal/cached_token_response_spec.rb +148 -0
  59. data/spec/adal/client_assertion_certificate_spec.rb +113 -0
  60. data/spec/adal/client_assertion_spec.rb +38 -0
  61. data/spec/adal/core_ext/hash_spec.rb +47 -0
  62. data/spec/adal/logging_spec.rb +48 -0
  63. data/spec/adal/memory_cache_spec.rb +107 -0
  64. data/spec/adal/mex_request_spec.rb +57 -0
  65. data/spec/adal/mex_response_spec.rb +143 -0
  66. data/spec/adal/self_signed_jwt_factory_spec.rb +63 -0
  67. data/spec/adal/token_request_spec.rb +150 -0
  68. data/spec/adal/token_response_spec.rb +102 -0
  69. data/spec/adal/user_credential_spec.rb +125 -0
  70. data/spec/adal/user_identifier_spec.rb +115 -0
  71. data/spec/adal/wstrust_request_spec.rb +51 -0
  72. data/spec/adal/wstrust_response_spec.rb +152 -0
  73. data/spec/fixtures/mex/insecureaddress.xml +924 -0
  74. data/spec/fixtures/mex/invalid_namespaces.xml +916 -0
  75. data/spec/fixtures/mex/malformed.xml +914 -0
  76. data/spec/fixtures/mex/microsoft.xml +916 -0
  77. data/spec/fixtures/mex/multiple_endpoints.xml +922 -0
  78. data/spec/fixtures/mex/no_matching_bindings.xml +916 -0
  79. data/spec/fixtures/mex/no_username_token_policies.xml +914 -0
  80. data/spec/fixtures/mex/no_wstrust_endpoints.xml +838 -0
  81. data/spec/fixtures/mex/only_13.xml +842 -0
  82. data/spec/fixtures/mex/only_2005.xml +842 -0
  83. data/spec/fixtures/oauth/error.json +1 -0
  84. data/spec/fixtures/oauth/success.json +1 -0
  85. data/spec/fixtures/oauth/success_with_id_token.json +1 -0
  86. data/spec/fixtures/wstrust/error.xml +24 -0
  87. data/spec/fixtures/wstrust/invalid_namespaces.xml +136 -0
  88. data/spec/fixtures/wstrust/missing_security_tokens.xml +90 -0
  89. data/spec/fixtures/wstrust/success.xml +136 -0
  90. data/spec/fixtures/wstrust/token.xml +1 -0
  91. data/spec/fixtures/wstrust/too_many_security_tokens.xml +219 -0
  92. data/spec/fixtures/wstrust/unrecognized_token_type.xml +136 -0
  93. data/spec/fixtures/wstrust/wstrust.13.xml +1 -0
  94. data/spec/fixtures/wstrust/wstrust.2005.xml +89 -0
  95. data/spec/spec_helper.rb +53 -0
  96. data/spec/support/fake_data.rb +40 -0
  97. data/spec/support/fake_token_endpoint.rb +108 -0
  98. metadata +264 -0
@@ -0,0 +1,842 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:t="http://schemas.xmlsoap.org/ws/2005/02/trust" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://schemas.microsoft.com/ws/2008/06/identity/securitytokenservice" xmlns:msc="http://schemas.microsoft.com/ws/2005/12/wsdl/contract" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:wsa10="http://www.w3.org/2005/08/addressing" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:wsx="http://schemas.xmlsoap.org/ws/2004/09/mex" xmlns:wsap="http://schemas.xmlsoap.org/ws/2004/08/addressing/policy" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" name="SecurityTokenService" targetNamespace="http://schemas.microsoft.com/ws/2008/06/identity/securitytokenservice">
3
+ <wsp:Policy wsu:Id="CustomBinding_IWSTrustFeb2005Async_policy">
4
+ <wsp:ExactlyOne>
5
+ <wsp:All>
6
+ <http:NegotiateAuthentication xmlns:http="http://schemas.microsoft.com/ws/06/2004/policy/http"/>
7
+ <sp:TransportBinding xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
8
+ <wsp:Policy>
9
+ <sp:TransportToken>
10
+ <wsp:Policy>
11
+ <sp:HttpsToken RequireClientCertificate="false"/>
12
+ </wsp:Policy>
13
+ </sp:TransportToken>
14
+ <sp:AlgorithmSuite>
15
+ <wsp:Policy>
16
+ <sp:Basic256/>
17
+ </wsp:Policy>
18
+ </sp:AlgorithmSuite>
19
+ <sp:Layout>
20
+ <wsp:Policy>
21
+ <sp:Strict/>
22
+ </wsp:Policy>
23
+ </sp:Layout>
24
+ </wsp:Policy>
25
+ </sp:TransportBinding>
26
+ <wsaw:UsingAddressing/>
27
+ </wsp:All>
28
+ </wsp:ExactlyOne>
29
+ </wsp:Policy>
30
+ <wsp:Policy wsu:Id="CertificateWSTrustBinding_IWSTrustFeb2005Async_policy">
31
+ <wsp:ExactlyOne>
32
+ <wsp:All>
33
+ <sp:TransportBinding xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
34
+ <wsp:Policy>
35
+ <sp:TransportToken>
36
+ <wsp:Policy>
37
+ <sp:HttpsToken RequireClientCertificate="false"/>
38
+ </wsp:Policy>
39
+ </sp:TransportToken>
40
+ <sp:AlgorithmSuite>
41
+ <wsp:Policy>
42
+ <sp:Basic256/>
43
+ </wsp:Policy>
44
+ </sp:AlgorithmSuite>
45
+ <sp:Layout>
46
+ <wsp:Policy>
47
+ <sp:Strict/>
48
+ </wsp:Policy>
49
+ </sp:Layout>
50
+ <sp:IncludeTimestamp/>
51
+ </wsp:Policy>
52
+ </sp:TransportBinding>
53
+ <sp:EndorsingSupportingTokens xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
54
+ <wsp:Policy>
55
+ <sp:X509Token sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/AlwaysToRecipient">
56
+ <wsp:Policy>
57
+ <sp:RequireThumbprintReference/>
58
+ <sp:WssX509V3Token10/>
59
+ </wsp:Policy>
60
+ </sp:X509Token>
61
+ <mssp:RsaToken xmlns:mssp="http://schemas.microsoft.com/ws/2005/07/securitypolicy" sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Never" wsp:Optional="true"/>
62
+ <sp:SignedParts>
63
+ <sp:Header Name="To" Namespace="http://www.w3.org/2005/08/addressing"/>
64
+ </sp:SignedParts>
65
+ </wsp:Policy>
66
+ </sp:EndorsingSupportingTokens>
67
+ <sp:Wss11 xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
68
+ <wsp:Policy>
69
+ <sp:MustSupportRefThumbprint/>
70
+ </wsp:Policy>
71
+ </sp:Wss11>
72
+ <sp:Trust10 xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
73
+ <wsp:Policy>
74
+ <sp:MustSupportIssuedTokens/>
75
+ <sp:RequireClientEntropy/>
76
+ <sp:RequireServerEntropy/>
77
+ </wsp:Policy>
78
+ </sp:Trust10>
79
+ <wsaw:UsingAddressing/>
80
+ </wsp:All>
81
+ </wsp:ExactlyOne>
82
+ </wsp:Policy>
83
+ <wsp:Policy wsu:Id="CertificateWSTrustBinding_IWSTrustFeb2005Async1_policy">
84
+ <wsp:ExactlyOne>
85
+ <wsp:All>
86
+ <sp:TransportBinding xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
87
+ <wsp:Policy>
88
+ <sp:TransportToken>
89
+ <wsp:Policy>
90
+ <sp:HttpsToken RequireClientCertificate="true"/>
91
+ </wsp:Policy>
92
+ </sp:TransportToken>
93
+ <sp:AlgorithmSuite>
94
+ <wsp:Policy>
95
+ <sp:Basic256/>
96
+ </wsp:Policy>
97
+ </sp:AlgorithmSuite>
98
+ <sp:Layout>
99
+ <wsp:Policy>
100
+ <sp:Strict/>
101
+ </wsp:Policy>
102
+ </sp:Layout>
103
+ </wsp:Policy>
104
+ </sp:TransportBinding>
105
+ <wsaw:UsingAddressing/>
106
+ </wsp:All>
107
+ </wsp:ExactlyOne>
108
+ </wsp:Policy>
109
+ <wsp:Policy wsu:Id="CustomBinding_IWSTrustFeb2005Async1_policy">
110
+ <wsp:ExactlyOne>
111
+ <wsp:All>
112
+ <sp:TransportBinding xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
113
+ <wsp:Policy>
114
+ <sp:TransportToken>
115
+ <wsp:Policy>
116
+ <sp:HttpsToken RequireClientCertificate="false"/>
117
+ </wsp:Policy>
118
+ </sp:TransportToken>
119
+ <sp:AlgorithmSuite>
120
+ <wsp:Policy>
121
+ <sp:Basic128/>
122
+ </wsp:Policy>
123
+ </sp:AlgorithmSuite>
124
+ <sp:Layout>
125
+ <wsp:Policy>
126
+ <sp:Strict/>
127
+ </wsp:Policy>
128
+ </sp:Layout>
129
+ <sp:IncludeTimestamp/>
130
+ </wsp:Policy>
131
+ </sp:TransportBinding>
132
+ <sp:EndorsingSupportingTokens xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
133
+ <wsp:Policy>
134
+ <sp:KerberosToken sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Once">
135
+ <wsp:Policy>
136
+ <sp:WssGssKerberosV5ApReqToken11/>
137
+ </wsp:Policy>
138
+ </sp:KerberosToken>
139
+ <mssp:RsaToken xmlns:mssp="http://schemas.microsoft.com/ws/2005/07/securitypolicy" sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Never" wsp:Optional="true"/>
140
+ <sp:SignedParts>
141
+ <sp:Header Name="To" Namespace="http://www.w3.org/2005/08/addressing"/>
142
+ </sp:SignedParts>
143
+ </wsp:Policy>
144
+ </sp:EndorsingSupportingTokens>
145
+ <sp:Wss11 xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
146
+ <wsp:Policy/>
147
+ </sp:Wss11>
148
+ <sp:Trust10 xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
149
+ <wsp:Policy>
150
+ <sp:MustSupportIssuedTokens/>
151
+ <sp:RequireClientEntropy/>
152
+ <sp:RequireServerEntropy/>
153
+ </wsp:Policy>
154
+ </sp:Trust10>
155
+ <wsaw:UsingAddressing/>
156
+ </wsp:All>
157
+ </wsp:ExactlyOne>
158
+ </wsp:Policy>
159
+ <wsp:Policy wsu:Id="IssuedTokenWSTrustBinding_IWSTrustFeb2005Async_policy">
160
+ <wsp:ExactlyOne>
161
+ <wsp:All>
162
+ <sp:TransportBinding xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
163
+ <wsp:Policy>
164
+ <sp:TransportToken>
165
+ <wsp:Policy>
166
+ <sp:HttpsToken RequireClientCertificate="false"/>
167
+ </wsp:Policy>
168
+ </sp:TransportToken>
169
+ <sp:AlgorithmSuite>
170
+ <wsp:Policy>
171
+ <sp:Basic256/>
172
+ </wsp:Policy>
173
+ </sp:AlgorithmSuite>
174
+ <sp:Layout>
175
+ <wsp:Policy>
176
+ <sp:Strict/>
177
+ </wsp:Policy>
178
+ </sp:Layout>
179
+ <sp:IncludeTimestamp/>
180
+ </wsp:Policy>
181
+ </sp:TransportBinding>
182
+ <sp:EndorsingSupportingTokens xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
183
+ <wsp:Policy>
184
+ <sp:IssuedToken sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/AlwaysToRecipient">
185
+ <sp:RequestSecurityTokenTemplate>
186
+ <t:KeyType>http://schemas.xmlsoap.org/ws/2005/02/trust/PublicKey</t:KeyType>
187
+ <t:EncryptWith>http://www.w3.org/2001/04/xmlenc#rsa-oaep-mgf1p</t:EncryptWith>
188
+ <t:SignatureAlgorithm>http://www.w3.org/2000/09/xmldsig#rsa-sha1</t:SignatureAlgorithm>
189
+ <t:CanonicalizationAlgorithm>http://www.w3.org/2001/10/xml-exc-c14n#</t:CanonicalizationAlgorithm>
190
+ <t:EncryptionAlgorithm>http://www.w3.org/2001/04/xmlenc#aes256-cbc</t:EncryptionAlgorithm>
191
+ </sp:RequestSecurityTokenTemplate>
192
+ <wsp:Policy>
193
+ <sp:RequireInternalReference/>
194
+ </wsp:Policy>
195
+ </sp:IssuedToken>
196
+ <mssp:RsaToken xmlns:mssp="http://schemas.microsoft.com/ws/2005/07/securitypolicy" sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Never" wsp:Optional="true"/>
197
+ <sp:SignedParts>
198
+ <sp:Header Name="To" Namespace="http://www.w3.org/2005/08/addressing"/>
199
+ </sp:SignedParts>
200
+ </wsp:Policy>
201
+ </sp:EndorsingSupportingTokens>
202
+ <sp:Wss11 xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
203
+ <wsp:Policy/>
204
+ </sp:Wss11>
205
+ <sp:Trust10 xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
206
+ <wsp:Policy>
207
+ <sp:MustSupportIssuedTokens/>
208
+ <sp:RequireClientEntropy/>
209
+ <sp:RequireServerEntropy/>
210
+ </wsp:Policy>
211
+ </sp:Trust10>
212
+ <wsaw:UsingAddressing/>
213
+ </wsp:All>
214
+ </wsp:ExactlyOne>
215
+ </wsp:Policy>
216
+ <wsp:Policy wsu:Id="IssuedTokenWSTrustBinding_IWSTrustFeb2005Async1_policy">
217
+ <wsp:ExactlyOne>
218
+ <wsp:All>
219
+ <sp:TransportBinding xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
220
+ <wsp:Policy>
221
+ <sp:TransportToken>
222
+ <wsp:Policy>
223
+ <sp:HttpsToken RequireClientCertificate="false"/>
224
+ </wsp:Policy>
225
+ </sp:TransportToken>
226
+ <sp:AlgorithmSuite>
227
+ <wsp:Policy>
228
+ <sp:Basic256/>
229
+ </wsp:Policy>
230
+ </sp:AlgorithmSuite>
231
+ <sp:Layout>
232
+ <wsp:Policy>
233
+ <sp:Strict/>
234
+ </wsp:Policy>
235
+ </sp:Layout>
236
+ <sp:IncludeTimestamp/>
237
+ </wsp:Policy>
238
+ </sp:TransportBinding>
239
+ <sp:EndorsingSupportingTokens xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
240
+ <wsp:Policy>
241
+ <sp:IssuedToken sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/AlwaysToRecipient">
242
+ <sp:RequestSecurityTokenTemplate>
243
+ <t:KeyType>http://schemas.xmlsoap.org/ws/2005/02/trust/SymmetricKey</t:KeyType>
244
+ <t:KeySize>256</t:KeySize>
245
+ <t:EncryptWith>http://www.w3.org/2001/04/xmlenc#aes256-cbc</t:EncryptWith>
246
+ <t:SignatureAlgorithm>http://www.w3.org/2000/09/xmldsig#hmac-sha1</t:SignatureAlgorithm>
247
+ <t:CanonicalizationAlgorithm>http://www.w3.org/2001/10/xml-exc-c14n#</t:CanonicalizationAlgorithm>
248
+ <t:EncryptionAlgorithm>http://www.w3.org/2001/04/xmlenc#aes256-cbc</t:EncryptionAlgorithm>
249
+ </sp:RequestSecurityTokenTemplate>
250
+ <wsp:Policy>
251
+ <sp:RequireInternalReference/>
252
+ </wsp:Policy>
253
+ </sp:IssuedToken>
254
+ <mssp:RsaToken xmlns:mssp="http://schemas.microsoft.com/ws/2005/07/securitypolicy" sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Never" wsp:Optional="true"/>
255
+ <sp:SignedParts>
256
+ <sp:Header Name="To" Namespace="http://www.w3.org/2005/08/addressing"/>
257
+ </sp:SignedParts>
258
+ </wsp:Policy>
259
+ </sp:EndorsingSupportingTokens>
260
+ <sp:Wss11 xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
261
+ <wsp:Policy/>
262
+ </sp:Wss11>
263
+ <sp:Trust10 xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
264
+ <wsp:Policy>
265
+ <sp:MustSupportIssuedTokens/>
266
+ <sp:RequireClientEntropy/>
267
+ <sp:RequireServerEntropy/>
268
+ </wsp:Policy>
269
+ </sp:Trust10>
270
+ <wsaw:UsingAddressing/>
271
+ </wsp:All>
272
+ </wsp:ExactlyOne>
273
+ </wsp:Policy>
274
+ <wsp:Policy wsu:Id="CustomBinding_IWSTrust13Async_policy">
275
+ <wsp:ExactlyOne>
276
+ <wsp:All>
277
+ <sp:TransportBinding xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
278
+ <wsp:Policy>
279
+ <sp:TransportToken>
280
+ <wsp:Policy>
281
+ <sp:HttpsToken/>
282
+ </wsp:Policy>
283
+ </sp:TransportToken>
284
+ <sp:AlgorithmSuite>
285
+ <wsp:Policy>
286
+ <sp:Basic128/>
287
+ </wsp:Policy>
288
+ </sp:AlgorithmSuite>
289
+ <sp:Layout>
290
+ <wsp:Policy>
291
+ <sp:Strict/>
292
+ </wsp:Policy>
293
+ </sp:Layout>
294
+ <sp:IncludeTimestamp/>
295
+ </wsp:Policy>
296
+ </sp:TransportBinding>
297
+ <sp:EndorsingSupportingTokens xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
298
+ <wsp:Policy>
299
+ <sp:KerberosToken sp:IncludeToken="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702/IncludeToken/Once">
300
+ <wsp:Policy>
301
+ <sp:WssGssKerberosV5ApReqToken11/>
302
+ </wsp:Policy>
303
+ </sp:KerberosToken>
304
+ <sp:KeyValueToken sp:IncludeToken="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702/IncludeToken/Never" wsp:Optional="true"/>
305
+ <sp:SignedParts>
306
+ <sp:Header Name="To" Namespace="http://www.w3.org/2005/08/addressing"/>
307
+ </sp:SignedParts>
308
+ </wsp:Policy>
309
+ </sp:EndorsingSupportingTokens>
310
+ <sp:Wss11 xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
311
+ <wsp:Policy/>
312
+ </sp:Wss11>
313
+ <sp:Trust13 xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
314
+ <wsp:Policy>
315
+ <sp:MustSupportIssuedTokens/>
316
+ <sp:RequireClientEntropy/>
317
+ <sp:RequireServerEntropy/>
318
+ </wsp:Policy>
319
+ </sp:Trust13>
320
+ <wsaw:UsingAddressing/>
321
+ </wsp:All>
322
+ </wsp:ExactlyOne>
323
+ </wsp:Policy>
324
+ <wsp:Policy wsu:Id="CertificateWSTrustBinding_IWSTrust13Async_policy">
325
+ <wsp:ExactlyOne>
326
+ <wsp:All>
327
+ <sp:TransportBinding xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
328
+ <wsp:Policy>
329
+ <sp:TransportToken>
330
+ <wsp:Policy>
331
+ <sp:HttpsToken/>
332
+ </wsp:Policy>
333
+ </sp:TransportToken>
334
+ <sp:AlgorithmSuite>
335
+ <wsp:Policy>
336
+ <sp:Basic256/>
337
+ </wsp:Policy>
338
+ </sp:AlgorithmSuite>
339
+ <sp:Layout>
340
+ <wsp:Policy>
341
+ <sp:Strict/>
342
+ </wsp:Policy>
343
+ </sp:Layout>
344
+ <sp:IncludeTimestamp/>
345
+ </wsp:Policy>
346
+ </sp:TransportBinding>
347
+ <sp:EndorsingSupportingTokens xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
348
+ <wsp:Policy>
349
+ <sp:X509Token sp:IncludeToken="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702/IncludeToken/AlwaysToRecipient">
350
+ <wsp:Policy>
351
+ <sp:RequireThumbprintReference/>
352
+ <sp:WssX509V3Token10/>
353
+ </wsp:Policy>
354
+ </sp:X509Token>
355
+ <sp:KeyValueToken sp:IncludeToken="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702/IncludeToken/Never" wsp:Optional="true"/>
356
+ <sp:SignedParts>
357
+ <sp:Header Name="To" Namespace="http://www.w3.org/2005/08/addressing"/>
358
+ </sp:SignedParts>
359
+ </wsp:Policy>
360
+ </sp:EndorsingSupportingTokens>
361
+ <sp:Wss11 xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
362
+ <wsp:Policy>
363
+ <sp:MustSupportRefThumbprint/>
364
+ </wsp:Policy>
365
+ </sp:Wss11>
366
+ <sp:Trust13 xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
367
+ <wsp:Policy>
368
+ <sp:MustSupportIssuedTokens/>
369
+ <sp:RequireClientEntropy/>
370
+ <sp:RequireServerEntropy/>
371
+ </wsp:Policy>
372
+ </sp:Trust13>
373
+ <wsaw:UsingAddressing/>
374
+ </wsp:All>
375
+ </wsp:ExactlyOne>
376
+ </wsp:Policy>
377
+ <wsp:Policy wsu:Id="UserNameWSTrustBinding_IWSTrust13Async_policy">
378
+ <wsp:ExactlyOne>
379
+ <wsp:All>
380
+ <sp:TransportBinding xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
381
+ <wsp:Policy>
382
+ <sp:TransportToken>
383
+ <wsp:Policy>
384
+ <sp:HttpsToken/>
385
+ </wsp:Policy>
386
+ </sp:TransportToken>
387
+ <sp:AlgorithmSuite>
388
+ <wsp:Policy>
389
+ <sp:Basic256/>
390
+ </wsp:Policy>
391
+ </sp:AlgorithmSuite>
392
+ <sp:Layout>
393
+ <wsp:Policy>
394
+ <sp:Strict/>
395
+ </wsp:Policy>
396
+ </sp:Layout>
397
+ <sp:IncludeTimestamp/>
398
+ </wsp:Policy>
399
+ </sp:TransportBinding>
400
+ <sp:SignedEncryptedSupportingTokens xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
401
+ <wsp:Policy>
402
+ <sp:UsernameToken sp:IncludeToken="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702/IncludeToken/AlwaysToRecipient">
403
+ <wsp:Policy>
404
+ <sp:WssUsernameToken10/>
405
+ </wsp:Policy>
406
+ </sp:UsernameToken>
407
+ </wsp:Policy>
408
+ </sp:SignedEncryptedSupportingTokens>
409
+ <sp:EndorsingSupportingTokens xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
410
+ <wsp:Policy>
411
+ <sp:KeyValueToken sp:IncludeToken="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702/IncludeToken/Never" wsp:Optional="true"/>
412
+ <sp:SignedParts>
413
+ <sp:Header Name="To" Namespace="http://www.w3.org/2005/08/addressing"/>
414
+ </sp:SignedParts>
415
+ </wsp:Policy>
416
+ </sp:EndorsingSupportingTokens>
417
+ <sp:Wss11 xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
418
+ <wsp:Policy/>
419
+ </sp:Wss11>
420
+ <sp:Trust13 xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
421
+ <wsp:Policy>
422
+ <sp:MustSupportIssuedTokens/>
423
+ <sp:RequireClientEntropy/>
424
+ <sp:RequireServerEntropy/>
425
+ </wsp:Policy>
426
+ </sp:Trust13>
427
+ <wsaw:UsingAddressing/>
428
+ </wsp:All>
429
+ </wsp:ExactlyOne>
430
+ </wsp:Policy>
431
+ <wsp:Policy wsu:Id="IssuedTokenWSTrustBinding_IWSTrust13Async_policy">
432
+ <wsp:ExactlyOne>
433
+ <wsp:All>
434
+ <sp:TransportBinding xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
435
+ <wsp:Policy>
436
+ <sp:TransportToken>
437
+ <wsp:Policy>
438
+ <sp:HttpsToken/>
439
+ </wsp:Policy>
440
+ </sp:TransportToken>
441
+ <sp:AlgorithmSuite>
442
+ <wsp:Policy>
443
+ <sp:Basic256/>
444
+ </wsp:Policy>
445
+ </sp:AlgorithmSuite>
446
+ <sp:Layout>
447
+ <wsp:Policy>
448
+ <sp:Strict/>
449
+ </wsp:Policy>
450
+ </sp:Layout>
451
+ <sp:IncludeTimestamp/>
452
+ </wsp:Policy>
453
+ </sp:TransportBinding>
454
+ <sp:EndorsingSupportingTokens xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
455
+ <wsp:Policy>
456
+ <sp:IssuedToken sp:IncludeToken="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702/IncludeToken/AlwaysToRecipient">
457
+ <sp:RequestSecurityTokenTemplate>
458
+ <trust:KeyType>http://docs.oasis-open.org/ws-sx/ws-trust/200512/PublicKey</trust:KeyType>
459
+ <trust:KeyWrapAlgorithm>http://www.w3.org/2001/04/xmlenc#rsa-oaep-mgf1p</trust:KeyWrapAlgorithm>
460
+ <trust:EncryptWith>http://www.w3.org/2001/04/xmlenc#rsa-oaep-mgf1p</trust:EncryptWith>
461
+ <trust:SignatureAlgorithm>http://www.w3.org/2000/09/xmldsig#rsa-sha1</trust:SignatureAlgorithm>
462
+ <trust:CanonicalizationAlgorithm>http://www.w3.org/2001/10/xml-exc-c14n#</trust:CanonicalizationAlgorithm>
463
+ <trust:EncryptionAlgorithm>http://www.w3.org/2001/04/xmlenc#aes256-cbc</trust:EncryptionAlgorithm>
464
+ </sp:RequestSecurityTokenTemplate>
465
+ <wsp:Policy>
466
+ <sp:RequireInternalReference/>
467
+ </wsp:Policy>
468
+ </sp:IssuedToken>
469
+ <sp:KeyValueToken sp:IncludeToken="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702/IncludeToken/Never" wsp:Optional="true"/>
470
+ <sp:SignedParts>
471
+ <sp:Header Name="To" Namespace="http://www.w3.org/2005/08/addressing"/>
472
+ </sp:SignedParts>
473
+ </wsp:Policy>
474
+ </sp:EndorsingSupportingTokens>
475
+ <sp:Wss11 xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
476
+ <wsp:Policy/>
477
+ </sp:Wss11>
478
+ <sp:Trust13 xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
479
+ <wsp:Policy>
480
+ <sp:MustSupportIssuedTokens/>
481
+ <sp:RequireClientEntropy/>
482
+ <sp:RequireServerEntropy/>
483
+ </wsp:Policy>
484
+ </sp:Trust13>
485
+ <wsaw:UsingAddressing/>
486
+ </wsp:All>
487
+ </wsp:ExactlyOne>
488
+ </wsp:Policy>
489
+ <wsp:Policy wsu:Id="IssuedTokenWSTrustBinding_IWSTrust13Async1_policy">
490
+ <wsp:ExactlyOne>
491
+ <wsp:All>
492
+ <sp:TransportBinding xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
493
+ <wsp:Policy>
494
+ <sp:TransportToken>
495
+ <wsp:Policy>
496
+ <sp:HttpsToken/>
497
+ </wsp:Policy>
498
+ </sp:TransportToken>
499
+ <sp:AlgorithmSuite>
500
+ <wsp:Policy>
501
+ <sp:Basic256/>
502
+ </wsp:Policy>
503
+ </sp:AlgorithmSuite>
504
+ <sp:Layout>
505
+ <wsp:Policy>
506
+ <sp:Strict/>
507
+ </wsp:Policy>
508
+ </sp:Layout>
509
+ <sp:IncludeTimestamp/>
510
+ </wsp:Policy>
511
+ </sp:TransportBinding>
512
+ <sp:EndorsingSupportingTokens xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
513
+ <wsp:Policy>
514
+ <sp:IssuedToken sp:IncludeToken="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702/IncludeToken/AlwaysToRecipient">
515
+ <sp:RequestSecurityTokenTemplate>
516
+ <trust:KeyType>http://docs.oasis-open.org/ws-sx/ws-trust/200512/SymmetricKey</trust:KeyType>
517
+ <trust:KeySize>256</trust:KeySize>
518
+ <trust:KeyWrapAlgorithm>http://www.w3.org/2001/04/xmlenc#rsa-oaep-mgf1p</trust:KeyWrapAlgorithm>
519
+ <trust:EncryptWith>http://www.w3.org/2001/04/xmlenc#aes256-cbc</trust:EncryptWith>
520
+ <trust:SignatureAlgorithm>http://www.w3.org/2000/09/xmldsig#hmac-sha1</trust:SignatureAlgorithm>
521
+ <trust:CanonicalizationAlgorithm>http://www.w3.org/2001/10/xml-exc-c14n#</trust:CanonicalizationAlgorithm>
522
+ <trust:EncryptionAlgorithm>http://www.w3.org/2001/04/xmlenc#aes256-cbc</trust:EncryptionAlgorithm>
523
+ </sp:RequestSecurityTokenTemplate>
524
+ <wsp:Policy>
525
+ <sp:RequireInternalReference/>
526
+ </wsp:Policy>
527
+ </sp:IssuedToken>
528
+ <sp:KeyValueToken sp:IncludeToken="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702/IncludeToken/Never" wsp:Optional="true"/>
529
+ <sp:SignedParts>
530
+ <sp:Header Name="To" Namespace="http://www.w3.org/2005/08/addressing"/>
531
+ </sp:SignedParts>
532
+ </wsp:Policy>
533
+ </sp:EndorsingSupportingTokens>
534
+ <sp:Wss11 xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
535
+ <wsp:Policy/>
536
+ </sp:Wss11>
537
+ <sp:Trust13 xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
538
+ <wsp:Policy>
539
+ <sp:MustSupportIssuedTokens/>
540
+ <sp:RequireClientEntropy/>
541
+ <sp:RequireServerEntropy/>
542
+ </wsp:Policy>
543
+ </sp:Trust13>
544
+ <wsaw:UsingAddressing/>
545
+ </wsp:All>
546
+ </wsp:ExactlyOne>
547
+ </wsp:Policy>
548
+ <wsp:Policy wsu:Id="CustomBinding_IWSTrust13Async1_policy">
549
+ <wsp:ExactlyOne>
550
+ <wsp:All>
551
+ <http:NegotiateAuthentication xmlns:http="http://schemas.microsoft.com/ws/06/2004/policy/http"/>
552
+ <sp:TransportBinding xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
553
+ <wsp:Policy>
554
+ <sp:TransportToken>
555
+ <wsp:Policy>
556
+ <sp:HttpsToken RequireClientCertificate="false"/>
557
+ </wsp:Policy>
558
+ </sp:TransportToken>
559
+ <sp:AlgorithmSuite>
560
+ <wsp:Policy>
561
+ <sp:Basic256/>
562
+ </wsp:Policy>
563
+ </sp:AlgorithmSuite>
564
+ <sp:Layout>
565
+ <wsp:Policy>
566
+ <sp:Strict/>
567
+ </wsp:Policy>
568
+ </sp:Layout>
569
+ </wsp:Policy>
570
+ </sp:TransportBinding>
571
+ <wsaw:UsingAddressing/>
572
+ </wsp:All>
573
+ </wsp:ExactlyOne>
574
+ </wsp:Policy>
575
+ <wsdl:types>
576
+ <xsd:schema targetNamespace="http://schemas.microsoft.com/ws/2008/06/identity/securitytokenservice/Imports">
577
+ <xsd:import schemaLocation="https://fs.ajmichael.net/adfs/services/trust/mex?xsd=xsd0" namespace="http://schemas.microsoft.com/Message"/>
578
+ <xsd:import schemaLocation="https://fs.ajmichael.net/adfs/services/trust/mex?xsd=xsd1" namespace="http://schemas.xmlsoap.org/ws/2005/02/trust"/>
579
+ <xsd:import schemaLocation="https://fs.ajmichael.net/adfs/services/trust/mex?xsd=xsd2" namespace="http://docs.oasis-open.org/ws-sx/ws-trust/200512"/>
580
+ </xsd:schema>
581
+ </wsdl:types>
582
+ <wsdl:message name="IWSTrustFeb2005Async_TrustFeb2005IssueAsync_InputMessage">
583
+ <wsdl:part name="request" element="t:RequestSecurityToken"/>
584
+ </wsdl:message>
585
+ <wsdl:message name="IWSTrustFeb2005Async_TrustFeb2005IssueAsync_OutputMessage">
586
+ <wsdl:part name="TrustFeb2005IssueAsyncResult" element="t:RequestSecurityTokenResponse"/>
587
+ </wsdl:message>
588
+ <wsdl:message name="IWSTrust13Async_Trust13IssueAsync_InputMessage">
589
+ <wsdl:part name="request" element="trust:RequestSecurityToken"/>
590
+ </wsdl:message>
591
+ <wsdl:message name="IWSTrust13Async_Trust13IssueAsync_OutputMessage">
592
+ <wsdl:part name="Trust13IssueAsyncResult" element="trust:RequestSecurityTokenResponseCollection"/>
593
+ </wsdl:message>
594
+ <wsdl:portType name="IWSTrustFeb2005Async">
595
+ <wsdl:operation name="TrustFeb2005IssueAsync">
596
+ <wsdl:input wsaw:Action="http://schemas.xmlsoap.org/ws/2005/02/trust/RST/Issue" message="tns:IWSTrustFeb2005Async_TrustFeb2005IssueAsync_InputMessage"/>
597
+ <wsdl:output wsaw:Action="http://schemas.xmlsoap.org/ws/2005/02/trust/RSTR/Issue" message="tns:IWSTrustFeb2005Async_TrustFeb2005IssueAsync_OutputMessage"/>
598
+ </wsdl:operation>
599
+ </wsdl:portType>
600
+ <wsdl:portType name="IWSTrust13Async">
601
+ <wsdl:operation name="Trust13IssueAsync">
602
+ <wsdl:input wsaw:Action="http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/Issue" message="tns:IWSTrust13Async_Trust13IssueAsync_InputMessage"/>
603
+ <wsdl:output wsaw:Action="http://docs.oasis-open.org/ws-sx/ws-trust/200512/RSTRC/IssueFinal" message="tns:IWSTrust13Async_Trust13IssueAsync_OutputMessage"/>
604
+ </wsdl:operation>
605
+ </wsdl:portType>
606
+ <wsdl:binding name="CustomBinding_IWSTrustFeb2005Async" type="tns:IWSTrustFeb2005Async">
607
+ <wsp:PolicyReference URI="#CustomBinding_IWSTrustFeb2005Async_policy"/>
608
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
609
+ <wsdl:operation name="TrustFeb2005IssueAsync">
610
+ <soap12:operation soapAction="http://schemas.xmlsoap.org/ws/2005/02/trust/RST/Issue" style="document"/>
611
+ <wsdl:input>
612
+ <soap12:body use="literal"/>
613
+ </wsdl:input>
614
+ <wsdl:output>
615
+ <soap12:body use="literal"/>
616
+ </wsdl:output>
617
+ </wsdl:operation>
618
+ </wsdl:binding>
619
+ <wsdl:binding name="CertificateWSTrustBinding_IWSTrustFeb2005Async" type="tns:IWSTrustFeb2005Async">
620
+ <wsp:PolicyReference URI="#CertificateWSTrustBinding_IWSTrustFeb2005Async_policy"/>
621
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
622
+ <wsdl:operation name="TrustFeb2005IssueAsync">
623
+ <soap12:operation soapAction="http://schemas.xmlsoap.org/ws/2005/02/trust/RST/Issue" style="document"/>
624
+ <wsdl:input>
625
+ <soap12:body use="literal"/>
626
+ </wsdl:input>
627
+ <wsdl:output>
628
+ <soap12:body use="literal"/>
629
+ </wsdl:output>
630
+ </wsdl:operation>
631
+ </wsdl:binding>
632
+ <wsdl:binding name="CertificateWSTrustBinding_IWSTrustFeb2005Async1" type="tns:IWSTrustFeb2005Async">
633
+ <wsp:PolicyReference URI="#CertificateWSTrustBinding_IWSTrustFeb2005Async1_policy"/>
634
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
635
+ <wsdl:operation name="TrustFeb2005IssueAsync">
636
+ <soap12:operation soapAction="http://schemas.xmlsoap.org/ws/2005/02/trust/RST/Issue" style="document"/>
637
+ <wsdl:input>
638
+ <soap12:body use="literal"/>
639
+ </wsdl:input>
640
+ <wsdl:output>
641
+ <soap12:body use="literal"/>
642
+ </wsdl:output>
643
+ </wsdl:operation>
644
+ </wsdl:binding>
645
+ <wsdl:binding name="CustomBinding_IWSTrustFeb2005Async1" type="tns:IWSTrustFeb2005Async">
646
+ <wsp:PolicyReference URI="#CustomBinding_IWSTrustFeb2005Async1_policy"/>
647
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
648
+ <wsdl:operation name="TrustFeb2005IssueAsync">
649
+ <soap12:operation soapAction="http://schemas.xmlsoap.org/ws/2005/02/trust/RST/Issue" style="document"/>
650
+ <wsdl:input>
651
+ <soap12:body use="literal"/>
652
+ </wsdl:input>
653
+ <wsdl:output>
654
+ <soap12:body use="literal"/>
655
+ </wsdl:output>
656
+ </wsdl:operation>
657
+ </wsdl:binding>
658
+ <wsdl:binding name="IssuedTokenWSTrustBinding_IWSTrustFeb2005Async" type="tns:IWSTrustFeb2005Async">
659
+ <wsp:PolicyReference URI="#IssuedTokenWSTrustBinding_IWSTrustFeb2005Async_policy"/>
660
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
661
+ <wsdl:operation name="TrustFeb2005IssueAsync">
662
+ <soap12:operation soapAction="http://schemas.xmlsoap.org/ws/2005/02/trust/RST/Issue" style="document"/>
663
+ <wsdl:input>
664
+ <soap12:body use="literal"/>
665
+ </wsdl:input>
666
+ <wsdl:output>
667
+ <soap12:body use="literal"/>
668
+ </wsdl:output>
669
+ </wsdl:operation>
670
+ </wsdl:binding>
671
+ <wsdl:binding name="IssuedTokenWSTrustBinding_IWSTrustFeb2005Async1" type="tns:IWSTrustFeb2005Async">
672
+ <wsp:PolicyReference URI="#IssuedTokenWSTrustBinding_IWSTrustFeb2005Async1_policy"/>
673
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
674
+ <wsdl:operation name="TrustFeb2005IssueAsync">
675
+ <soap12:operation soapAction="http://schemas.xmlsoap.org/ws/2005/02/trust/RST/Issue" style="document"/>
676
+ <wsdl:input>
677
+ <soap12:body use="literal"/>
678
+ </wsdl:input>
679
+ <wsdl:output>
680
+ <soap12:body use="literal"/>
681
+ </wsdl:output>
682
+ </wsdl:operation>
683
+ </wsdl:binding>
684
+ <wsdl:binding name="CustomBinding_IWSTrust13Async" type="tns:IWSTrust13Async">
685
+ <wsp:PolicyReference URI="#CustomBinding_IWSTrust13Async_policy"/>
686
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
687
+ <wsdl:operation name="Trust13IssueAsync">
688
+ <soap12:operation soapAction="http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/Issue" style="document"/>
689
+ <wsdl:input>
690
+ <soap12:body use="literal"/>
691
+ </wsdl:input>
692
+ <wsdl:output>
693
+ <soap12:body use="literal"/>
694
+ </wsdl:output>
695
+ </wsdl:operation>
696
+ </wsdl:binding>
697
+ <wsdl:binding name="CertificateWSTrustBinding_IWSTrust13Async" type="tns:IWSTrust13Async">
698
+ <wsp:PolicyReference URI="#CertificateWSTrustBinding_IWSTrust13Async_policy"/>
699
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
700
+ <wsdl:operation name="Trust13IssueAsync">
701
+ <soap12:operation soapAction="http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/Issue" style="document"/>
702
+ <wsdl:input>
703
+ <soap12:body use="literal"/>
704
+ </wsdl:input>
705
+ <wsdl:output>
706
+ <soap12:body use="literal"/>
707
+ </wsdl:output>
708
+ </wsdl:operation>
709
+ </wsdl:binding>
710
+ <wsdl:binding name="UserNameWSTrustBinding_IWSTrust13Async" type="tns:IWSTrust13Async">
711
+ <wsp:PolicyReference URI="#UserNameWSTrustBinding_IWSTrust13Async_policy"/>
712
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
713
+ <wsdl:operation name="Trust13IssueAsync">
714
+ <soap12:operation soapAction="http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/Issue" style="document"/>
715
+ <wsdl:input>
716
+ <soap12:body use="literal"/>
717
+ </wsdl:input>
718
+ <wsdl:output>
719
+ <soap12:body use="literal"/>
720
+ </wsdl:output>
721
+ </wsdl:operation>
722
+ </wsdl:binding>
723
+ <wsdl:binding name="IssuedTokenWSTrustBinding_IWSTrust13Async" type="tns:IWSTrust13Async">
724
+ <wsp:PolicyReference URI="#IssuedTokenWSTrustBinding_IWSTrust13Async_policy"/>
725
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
726
+ <wsdl:operation name="Trust13IssueAsync">
727
+ <soap12:operation soapAction="http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/Issue" style="document"/>
728
+ <wsdl:input>
729
+ <soap12:body use="literal"/>
730
+ </wsdl:input>
731
+ <wsdl:output>
732
+ <soap12:body use="literal"/>
733
+ </wsdl:output>
734
+ </wsdl:operation>
735
+ </wsdl:binding>
736
+ <wsdl:binding name="IssuedTokenWSTrustBinding_IWSTrust13Async1" type="tns:IWSTrust13Async">
737
+ <wsp:PolicyReference URI="#IssuedTokenWSTrustBinding_IWSTrust13Async1_policy"/>
738
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
739
+ <wsdl:operation name="Trust13IssueAsync">
740
+ <soap12:operation soapAction="http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/Issue" style="document"/>
741
+ <wsdl:input>
742
+ <soap12:body use="literal"/>
743
+ </wsdl:input>
744
+ <wsdl:output>
745
+ <soap12:body use="literal"/>
746
+ </wsdl:output>
747
+ </wsdl:operation>
748
+ </wsdl:binding>
749
+ <wsdl:binding name="CustomBinding_IWSTrust13Async1" type="tns:IWSTrust13Async">
750
+ <wsp:PolicyReference URI="#CustomBinding_IWSTrust13Async1_policy"/>
751
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
752
+ <wsdl:operation name="Trust13IssueAsync">
753
+ <soap12:operation soapAction="http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/Issue" style="document"/>
754
+ <wsdl:input>
755
+ <soap12:body use="literal"/>
756
+ </wsdl:input>
757
+ <wsdl:output>
758
+ <soap12:body use="literal"/>
759
+ </wsdl:output>
760
+ </wsdl:operation>
761
+ </wsdl:binding>
762
+ <wsdl:service name="SecurityTokenService">
763
+ <wsdl:port name="CustomBinding_IWSTrustFeb2005Async" binding="tns:CustomBinding_IWSTrustFeb2005Async">
764
+ <soap12:address location="https://fs.ajmichael.net/adfs/services/trust/2005/windowstransport"/>
765
+ <wsa10:EndpointReference>
766
+ <wsa10:Address>https://fs.ajmichael.net/adfs/services/trust/2005/windowstransport</wsa10:Address>
767
+ <Identity xmlns="http://schemas.xmlsoap.org/ws/2006/02/addressingidentity">
768
+ <Spn>host/fs.ajmichael.net</Spn>
769
+ </Identity>
770
+ </wsa10:EndpointReference>
771
+ </wsdl:port>
772
+ <wsdl:port name="CertificateWSTrustBinding_IWSTrustFeb2005Async" binding="tns:CertificateWSTrustBinding_IWSTrustFeb2005Async">
773
+ <soap12:address location="https://fs.ajmichael.net/adfs/services/trust/2005/certificatemixed"/>
774
+ <wsa10:EndpointReference>
775
+ <wsa10:Address>https://fs.ajmichael.net/adfs/services/trust/2005/certificatemixed</wsa10:Address>
776
+ </wsa10:EndpointReference>
777
+ </wsdl:port>
778
+ <wsdl:port name="CertificateWSTrustBinding_IWSTrustFeb2005Async1" binding="tns:CertificateWSTrustBinding_IWSTrustFeb2005Async1">
779
+ <soap12:address location="https://fs.ajmichael.net:49443/adfs/services/trust/2005/certificatetransport"/>
780
+ <wsa10:EndpointReference>
781
+ <wsa10:Address>https://fs.ajmichael.net:49443/adfs/services/trust/2005/certificatetransport</wsa10:Address>
782
+ </wsa10:EndpointReference>
783
+ </wsdl:port>
784
+ <wsdl:port name="CustomBinding_IWSTrustFeb2005Async1" binding="tns:CustomBinding_IWSTrustFeb2005Async1">
785
+ <soap12:address location="https://fs.ajmichael.net/adfs/services/trust/2005/kerberosmixed"/>
786
+ <wsa10:EndpointReference>
787
+ <wsa10:Address>https://fs.ajmichael.net/adfs/services/trust/2005/kerberosmixed</wsa10:Address>
788
+ </wsa10:EndpointReference>
789
+ </wsdl:port>
790
+ <wsdl:port name="IssuedTokenWSTrustBinding_IWSTrustFeb2005Async" binding="tns:IssuedTokenWSTrustBinding_IWSTrustFeb2005Async">
791
+ <soap12:address location="https://fs.ajmichael.net/adfs/services/trust/2005/issuedtokenmixedasymmetricbasic256"/>
792
+ <wsa10:EndpointReference>
793
+ <wsa10:Address>https://fs.ajmichael.net/adfs/services/trust/2005/issuedtokenmixedasymmetricbasic256</wsa10:Address>
794
+ </wsa10:EndpointReference>
795
+ </wsdl:port>
796
+ <wsdl:port name="IssuedTokenWSTrustBinding_IWSTrustFeb2005Async1" binding="tns:IssuedTokenWSTrustBinding_IWSTrustFeb2005Async1">
797
+ <soap12:address location="https://fs.ajmichael.net/adfs/services/trust/2005/issuedtokenmixedsymmetricbasic256"/>
798
+ <wsa10:EndpointReference>
799
+ <wsa10:Address>https://fs.ajmichael.net/adfs/services/trust/2005/issuedtokenmixedsymmetricbasic256</wsa10:Address>
800
+ </wsa10:EndpointReference>
801
+ </wsdl:port>
802
+ <wsdl:port name="CustomBinding_IWSTrust13Async" binding="tns:CustomBinding_IWSTrust13Async">
803
+ <soap12:address location="https://fs.ajmichael.net/adfs/services/trust/13/kerberosmixed"/>
804
+ <wsa10:EndpointReference>
805
+ <wsa10:Address>https://fs.ajmichael.net/adfs/services/trust/13/kerberosmixed</wsa10:Address>
806
+ </wsa10:EndpointReference>
807
+ </wsdl:port>
808
+ <wsdl:port name="CertificateWSTrustBinding_IWSTrust13Async" binding="tns:CertificateWSTrustBinding_IWSTrust13Async">
809
+ <soap12:address location="https://fs.ajmichael.net/adfs/services/trust/13/certificatemixed"/>
810
+ <wsa10:EndpointReference>
811
+ <wsa10:Address>https://fs.ajmichael.net/adfs/services/trust/13/certificatemixed</wsa10:Address>
812
+ </wsa10:EndpointReference>
813
+ </wsdl:port>
814
+ <wsdl:port name="UserNameWSTrustBinding_IWSTrust13Async" binding="tns:UserNameWSTrustBinding_IWSTrust13Async">
815
+ <soap12:address location="https://fs.ajmichael.net/adfs/services/trust/13/usernamemixed"/>
816
+ <wsa10:EndpointReference>
817
+ <wsa10:Address>https://fs.ajmichael.net/adfs/services/trust/13/usernamemixed</wsa10:Address>
818
+ </wsa10:EndpointReference>
819
+ </wsdl:port>
820
+ <wsdl:port name="IssuedTokenWSTrustBinding_IWSTrust13Async" binding="tns:IssuedTokenWSTrustBinding_IWSTrust13Async">
821
+ <soap12:address location="https://fs.ajmichael.net/adfs/services/trust/13/issuedtokenmixedasymmetricbasic256"/>
822
+ <wsa10:EndpointReference>
823
+ <wsa10:Address>https://fs.ajmichael.net/adfs/services/trust/13/issuedtokenmixedasymmetricbasic256</wsa10:Address>
824
+ </wsa10:EndpointReference>
825
+ </wsdl:port>
826
+ <wsdl:port name="IssuedTokenWSTrustBinding_IWSTrust13Async1" binding="tns:IssuedTokenWSTrustBinding_IWSTrust13Async1">
827
+ <soap12:address location="https://fs.ajmichael.net/adfs/services/trust/13/issuedtokenmixedsymmetricbasic256"/>
828
+ <wsa10:EndpointReference>
829
+ <wsa10:Address>https://fs.ajmichael.net/adfs/services/trust/13/issuedtokenmixedsymmetricbasic256</wsa10:Address>
830
+ </wsa10:EndpointReference>
831
+ </wsdl:port>
832
+ <wsdl:port name="CustomBinding_IWSTrust13Async1" binding="tns:CustomBinding_IWSTrust13Async1">
833
+ <soap12:address location="https://fs.ajmichael.net/adfs/services/trust/13/windowstransport"/>
834
+ <wsa10:EndpointReference>
835
+ <wsa10:Address>https://fs.ajmichael.net/adfs/services/trust/13/windowstransport</wsa10:Address>
836
+ <Identity xmlns="http://schemas.xmlsoap.org/ws/2006/02/addressingidentity">
837
+ <Spn>host/fs.ajmichael.net</Spn>
838
+ </Identity>
839
+ </wsa10:EndpointReference>
840
+ </wsdl:port>
841
+ </wsdl:service>
842
+ </wsdl:definitions>