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,914 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <wsdl:definitions name="SecurityTokenService" targetNamespace="http://schemas.microsoft.com/ws/2008/06/identity/securitytokenservice" 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">
3
+ <wsp:Policy wsu:Id="CustomBinding_IWSTrustFeb2005Async_policy">
4
+ <wsp:ExactlyOne>
5
+ <http:NegotiateAuthentication xmlns:http="http://schemas.microsoft.com/ws/06/2004/policy/http"/>
6
+ <sp:TransportBinding xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
7
+ <wsp:Policy>
8
+ <sp:TransportToken>
9
+ <wsp:Policy>
10
+ <sp:HttpsToken RequireClientCertificate="false"/>
11
+ </wsp:Policy>
12
+ </sp:TransportToken>
13
+ <sp:AlgorithmSuite>
14
+ <wsp:Policy>
15
+ <sp:Basic256/>
16
+ </wsp:Policy>
17
+ </sp:AlgorithmSuite>
18
+ <sp:Layout>
19
+ <wsp:Policy>
20
+ <sp:Strict/>
21
+ </wsp:Policy>
22
+ </sp:Layout>
23
+ </wsp:Policy>
24
+ </sp:TransportBinding>
25
+ <wsaw:UsingAddressing/>
26
+ </wsp:All>
27
+ </wsp:ExactlyOne>
28
+ </wsp:Policy>
29
+ <wsp:Policy wsu:Id="CertificateWSTrustBinding_IWSTrustFeb2005Async_policy">
30
+ <wsp:ExactlyOne>
31
+ <wsp:All>
32
+ <sp:TransportBinding xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
33
+ <wsp:Policy>
34
+ <sp:TransportToken>
35
+ <wsp:Policy>
36
+ <sp:HttpsToken RequireClientCertificate="false"/>
37
+ </wsp:Policy>
38
+ </sp:TransportToken>
39
+ <sp:AlgorithmSuite>
40
+ <wsp:Policy>
41
+ <sp:Basic256
42
+ </wsp:Policy>
43
+ </sp:AlgorithmSuite>
44
+ <sp:Layout>
45
+ <wsp:Policy>
46
+ <sp:Strict/>
47
+ </wsp:Policy>
48
+ </sp:Layout>
49
+ <sp:IncludeTimestamp/>
50
+ </wsp:Policy>
51
+ </sp:TransportBinding>
52
+ <sp:EndorsingSupportingTokens xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
53
+ <wsp:Policy>
54
+ <sp:X509Token sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/AlwaysToRecipient">
55
+ <wsp:Policy>
56
+ <sp:RequireThumbprintReference/>
57
+ <sp:WssX509V3Token10/>
58
+ </wsp:Policy>
59
+ </sp:X509Token>
60
+ <mssp:RsaToken sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Never" wsp:Optional="true" xmlns:mssp="http://schemas.microsoft.com/ws/2005/07/securitypolicy"/>
61
+ <sp:SignedParts>
62
+ <sp:Header Name="To" Namespace="http://www.w3.org/2005/08/addressing"/>
63
+ </sp:SignedParts>
64
+ </wsp:Policy>
65
+ </sp:EndorsingSupportingTokens>
66
+ <sp:Wss11 xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
67
+ <wsp:Policy>
68
+ <sp:MustSupportRefThumbprint/>
69
+ </wsp:Policy>
70
+ </sp:Wss11>
71
+ <sp:Trust10 xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
72
+ <wsp:Policy>
73
+ <sp:MustSupportIssuedTokens/>
74
+ <sp:RequireClientEntropy/>
75
+ <sp:RequireServerEntropy/>
76
+ </wsp:Policy>
77
+ </sp:Trust10>
78
+ <wsaw:UsingAddressing/>
79
+ </wsp:All>
80
+ </wsp:ExactlyOne>
81
+ </wsp:Policy>
82
+ <wsp:Policy wsu:Id="CertificateWSTrustBinding_IWSTrustFeb2005Async1_policy">
83
+ <wsp:ExactlyOne>
84
+ <wsp:All>
85
+ <sp:TransportBinding xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
86
+ <wsp:Policy>
87
+ <sp:TransportToken>
88
+ <wsp:Policy>
89
+ <sp:HttpsToken RequireClientCertificate="true"/>
90
+ </wsp:Policy>
91
+ </sp:TransportToken>
92
+ <sp:AlgorithmSuite>
93
+ <wsp:Policy>
94
+ <sp:Basic256/>
95
+ </wsp:Policy>
96
+ </sp:AlgorithmSuite>
97
+ <sp:Layout>
98
+ <wsp:Policy>
99
+ <sp:Strict/>
100
+ </wsp:Policy>
101
+ </sp:Layout>
102
+ </wsp:Policy>
103
+ </sp:TransportBinding>
104
+ <wsaw:UsingAddressing/>
105
+ </wsp:All>
106
+ </wsp:ExactlyOne>
107
+ </wsp:Policy>
108
+ <wsp:Policy wsu:Id="UserNameWSTrustBinding_IWSTrustFeb2005Async_policy">
109
+ <wsp:ExactlyOne>
110
+ <wsp:All>
111
+ <sp:TransportBinding xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
112
+ <wsp:Policy>
113
+ <sp:TransportToken>
114
+ <wsp:Policy>
115
+ <sp:HttpsToken RequireClientCertificate="false"/>
116
+ </wsp:Policy>
117
+ </sp:TransportToken>
118
+ <sp:AlgorithmSuite>
119
+ <wsp:Policy>
120
+ <sp:Basic256/>
121
+ </wsp:Policy>
122
+ </sp:AlgorithmSuite>
123
+ <sp:Layout>
124
+ <wsp:Policy>
125
+ <sp:Strict/>
126
+ </wsp:Policy>
127
+ </sp:Layout>
128
+ <sp:IncludeTimestamp/>
129
+ </wsp:Policy>
130
+ </sp:TransportBinding>
131
+ <sp:SignedSupportingTokens xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
132
+ <wsp:Policy>
133
+ <sp:UsernameToken sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/AlwaysToRecipient">
134
+ <wsp:Policy>
135
+ <sp:WssUsernameToken10/>
136
+ </wsp:Policy>
137
+ </sp:UsernameToken>
138
+ </wsp:Policy>
139
+ </sp:SignedSupportingTokens>
140
+ <sp:EndorsingSupportingTokens xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
141
+ <wsp:Policy>
142
+ <mssp:RsaToken sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Never" wsp:Optional="true" xmlns:mssp="http://schemas.microsoft.com/ws/2005/07/securitypolicy"/>
143
+ <sp:SignedParts>
144
+ <sp:Header Name="To" Namespace="http://www.w3.org/2005/08/addressing"/>
145
+ </sp:SignedParts>
146
+ </wsp:Policy>
147
+ </sp:EndorsingSupportingTokens>
148
+ <sp:Wss11 xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
149
+ <wsp:Policy/>
150
+ </sp:Wss11>
151
+ <sp:Trust10 xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
152
+ <wsp:Policy>
153
+ <sp:MustSupportIssuedTokens/>
154
+ <sp:RequireClientEntropy/>
155
+ <sp:RequireServerEntropy/>
156
+ </wsp:Policy>
157
+ </sp:Trust10>
158
+ <wsaw:UsingAddressing/>
159
+ </wsp:All>
160
+ </wsp:ExactlyOne>
161
+ </wsp:Policy>
162
+ <wsp:Policy wsu:Id="CustomBinding_IWSTrustFeb2005Async1_policy">
163
+ <wsp:ExactlyOne>
164
+ <wsp:All>
165
+ <sp:TransportBinding xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
166
+ <wsp:Policy>
167
+ <sp:TransportToken>
168
+ <wsp:Policy>
169
+ <sp:HttpsToken RequireClientCertificate="false"/>
170
+ </wsp:Policy>
171
+ </sp:TransportToken>
172
+ <sp:AlgorithmSuite>
173
+ <wsp:Policy>
174
+ <sp:Basic128/>
175
+ </wsp:Policy>
176
+ </sp:AlgorithmSuite>
177
+ <sp:Layout>
178
+ <wsp:Policy>
179
+ <sp:Strict/>
180
+ </wsp:Policy>
181
+ </sp:Layout>
182
+ <sp:IncludeTimestamp/>
183
+ </wsp:Policy>
184
+ </sp:TransportBinding>
185
+ <sp:EndorsingSupportingTokens xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
186
+ <wsp:Policy>
187
+ <sp:KerberosToken sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Once">
188
+ <wsp:Policy>
189
+ <sp:WssGssKerberosV5ApReqToken11/>
190
+ </wsp:Policy>
191
+ </sp:KerberosToken>
192
+ <mssp:RsaToken sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Never" wsp:Optional="true" xmlns:mssp="http://schemas.microsoft.com/ws/2005/07/securitypolicy"/>
193
+ <sp:SignedParts>
194
+ <sp:Header Name="To" Namespace="http://www.w3.org/2005/08/addressing"/>
195
+ </sp:SignedParts>
196
+ </wsp:Policy>
197
+ </sp:EndorsingSupportingTokens>
198
+ <sp:Wss11 xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
199
+ <wsp:Policy/>
200
+ </sp:Wss11>
201
+ <sp:Trust10 xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
202
+ <wsp:Policy>
203
+ <sp:MustSupportIssuedTokens/>
204
+ <sp:RequireClientEntropy/>
205
+ <sp:RequireServerEntropy/>
206
+ </wsp:Policy>
207
+ </sp:Trust10>
208
+ <wsaw:UsingAddressing/>
209
+ </wsp:All>
210
+ </wsp:ExactlyOne>
211
+ </wsp:Policy>
212
+ <wsp:Policy wsu:Id="IssuedTokenWSTrustBinding_IWSTrustFeb2005Async_policy">
213
+ <wsp:ExactlyOne>
214
+ <wsp:All>
215
+ <sp:TransportBinding xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
216
+ <wsp:Policy>
217
+ <sp:TransportToken>
218
+ <wsp:Policy>
219
+ <sp:HttpsToken RequireClientCertificate="false"/>
220
+ </wsp:Policy>
221
+ </sp:TransportToken>
222
+ <sp:AlgorithmSuite>
223
+ <wsp:Policy>
224
+ <sp:Basic256/>
225
+ </wsp:Policy>
226
+ </sp:AlgorithmSuite>
227
+ <sp:Layout>
228
+ <wsp:Policy>
229
+ <sp:Strict/>
230
+ </wsp:Policy>
231
+ </sp:Layout>
232
+ <sp:IncludeTimestamp/>
233
+ </wsp:Policy>
234
+ </sp:TransportBinding>
235
+ <sp:EndorsingSupportingTokens xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
236
+ <wsp:Policy>
237
+ <sp:IssuedToken sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/AlwaysToRecipient">
238
+ <sp:RequestSecurityTokenTemplate>
239
+ <t:KeyType>http://schemas.xmlsoap.org/ws/2005/02/trust/PublicKey</t:KeyType>
240
+ <t:EncryptWith>http://www.w3.org/2001/04/xmlenc#rsa-oaep-mgf1p</t:EncryptWith>
241
+ <t:SignatureAlgorithm>http://www.w3.org/2000/09/xmldsig#rsa-sha1</t:SignatureAlgorithm>
242
+ <t:CanonicalizationAlgorithm>http://www.w3.org/2001/10/xml-exc-c14n#</t:CanonicalizationAlgorithm>
243
+ <t:EncryptionAlgorithm>http://www.w3.org/2001/04/xmlenc#aes256-cbc</t:EncryptionAlgorithm>
244
+ </sp:RequestSecurityTokenTemplate>
245
+ <wsp:Policy>
246
+ <sp:RequireInternalReference/>
247
+ </wsp:Policy>
248
+ </sp:IssuedToken>
249
+ <mssp:RsaToken sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Never" wsp:Optional="true" xmlns:mssp="http://schemas.microsoft.com/ws/2005/07/securitypolicy"/>
250
+ <sp:SignedParts>
251
+ <sp:Header Name="To" Namespace="http://www.w3.org/2005/08/addressing"/>
252
+ </sp:SignedParts>
253
+ </wsp:Policy>
254
+ </sp:EndorsingSupportingTokens>
255
+ <sp:Wss11 xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
256
+ <wsp:Policy/>
257
+ </sp:Wss11>
258
+ <sp:Trust10 xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
259
+ <wsp:Policy>
260
+ <sp:MustSupportIssuedTokens/>
261
+ <sp:RequireClientEntropy/>
262
+ <sp:RequireServerEntropy/>
263
+ </wsp:Policy>
264
+ </sp:Trust10>
265
+ <wsaw:UsingAddressing/>
266
+ </wsp:All>
267
+ </wsp:ExactlyOne>
268
+ </wsp:Policy>
269
+ <wsp:Policy wsu:Id="IssuedTokenWSTrustBinding_IWSTrustFeb2005Async1_policy">
270
+ <wsp:ExactlyOne>
271
+ <wsp:All>
272
+ <sp:TransportBinding xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
273
+ <wsp:Policy>
274
+ <sp:TransportToken>
275
+ <wsp:Policy>
276
+ <sp:HttpsToken RequireClientCertificate="false"/>
277
+ </wsp:Policy>
278
+ </sp:TransportToken>
279
+ <sp:AlgorithmSuite>
280
+ <wsp:Policy>
281
+ <sp:Basic256/>
282
+ </wsp:Policy>
283
+ </sp:AlgorithmSuite>
284
+ <sp:Layout>
285
+ <wsp:Policy>
286
+ <sp:Strict/>
287
+ </wsp:Policy>
288
+ </sp:Layout>
289
+ <sp:IncludeTimestamp/>
290
+ </wsp:Policy>
291
+ </sp:TransportBinding>
292
+ <sp:EndorsingSupportingTokens xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
293
+ <wsp:Policy>
294
+ <sp:IssuedToken sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/AlwaysToRecipient">
295
+ <sp:RequestSecurityTokenTemplate>
296
+ <t:KeyType>http://schemas.xmlsoap.org/ws/2005/02/trust/SymmetricKey</t:KeyType>
297
+ <t:KeySize>256</t:KeySize>
298
+ <t:EncryptWith>http://www.w3.org/2001/04/xmlenc#aes256-cbc</t:EncryptWith>
299
+ <t:SignatureAlgorithm>http://www.w3.org/2000/09/xmldsig#hmac-sha1</t:SignatureAlgorithm>
300
+ <t:CanonicalizationAlgorithm>http://www.w3.org/2001/10/xml-exc-c14n#</t:CanonicalizationAlgorithm>
301
+ <t:EncryptionAlgorithm>http://www.w3.org/2001/04/xmlenc#aes256-cbc</t:EncryptionAlgorithm>
302
+ </sp:RequestSecurityTokenTemplate>
303
+ <wsp:Policy>
304
+ <sp:RequireInternalReference/>
305
+ </wsp:Policy>
306
+ </sp:IssuedToken>
307
+ <mssp:RsaToken sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Never" wsp:Optional="true" xmlns:mssp="http://schemas.microsoft.com/ws/2005/07/securitypolicy"/>
308
+ <sp:SignedParts>
309
+ <sp:Header Name="To" Namespace="http://www.w3.org/2005/08/addressing"/>
310
+ </sp:SignedParts>
311
+ </wsp:Policy>
312
+ </sp:EndorsingSupportingTokens>
313
+ <sp:Wss11 xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
314
+ <wsp:Policy/>
315
+ </sp:Wss11>
316
+ <sp:Trust10 xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
317
+ <wsp:Policy>
318
+ <sp:MustSupportIssuedTokens/>
319
+ <sp:RequireClientEntropy/>
320
+ <sp:RequireServerEntropy/>
321
+ </wsp:Policy>
322
+ </sp:Trust10>
323
+ <wsaw:UsingAddressing/>
324
+ </wsp:All>
325
+ </wsp:ExactlyOne>
326
+ </wsp:Policy>
327
+ <wsp:Policy wsu:Id="CustomBinding_IWSTrust13Async_policy">
328
+ <wsp:ExactlyOne>
329
+ <wsp:All>
330
+ <sp:TransportBinding xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
331
+ <wsp:Policy>
332
+ <sp:TransportToken>
333
+ <wsp:Policy>
334
+ <sp:HttpsToken/>
335
+ </wsp:Policy>
336
+ </sp:TransportToken>
337
+ <sp:AlgorithmSuite>
338
+ <wsp:Policy>
339
+ <sp:Basic128/>
340
+ </wsp:Policy>
341
+ </sp:AlgorithmSuite>
342
+ <sp:Layout>
343
+ <wsp:Policy>
344
+ <sp:Strict/>
345
+ </wsp:Policy>
346
+ </sp:Layout>
347
+ <sp:IncludeTimestamp/>
348
+ </wsp:Policy>
349
+ </sp:TransportBinding>
350
+ <sp:EndorsingSupportingTokens xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
351
+ <wsp:Policy>
352
+ <sp:KerberosToken sp:IncludeToken="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702/IncludeToken/Once">
353
+ <wsp:Policy>
354
+ <sp:WssGssKerberosV5ApReqToken11/>
355
+ </wsp:Policy>
356
+ </sp:KerberosToken>
357
+ <sp:KeyValueToken sp:IncludeToken="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702/IncludeToken/Never" wsp:Optional="true"/>
358
+ <sp:SignedParts>
359
+ <sp:Header Name="To" Namespace="http://www.w3.org/2005/08/addressing"/>
360
+ </sp:SignedParts>
361
+ </wsp:Policy>
362
+ </sp:EndorsingSupportingTokens>
363
+ <sp:Wss11 xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
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="CertificateWSTrustBinding_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:EndorsingSupportingTokens xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
401
+ <wsp:Policy>
402
+ <sp:X509Token sp:IncludeToken="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702/IncludeToken/AlwaysToRecipient">
403
+ <wsp:Policy>
404
+ <sp:RequireThumbprintReference/>
405
+ <sp:WssX509V3Token10/>
406
+ </wsp:Policy>
407
+ </sp:X509Token>
408
+ <sp:KeyValueToken sp:IncludeToken="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702/IncludeToken/Never" wsp:Optional="true"/>
409
+ <sp:SignedParts>
410
+ <sp:Header Name="To" Namespace="http://www.w3.org/2005/08/addressing"/>
411
+ </sp:SignedParts>
412
+ </wsp:Policy>
413
+ </sp:EndorsingSupportingTokens>
414
+ <sp:Wss11 xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
415
+ <wsp:Policy>
416
+ <sp:MustSupportRefThumbprint/>
417
+ </wsp:Policy>
418
+ </sp:Wss11>
419
+ <sp:Trust13 xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
420
+ <wsp:Policy>
421
+ <sp:MustSupportIssuedTokens/>
422
+ <sp:RequireClientEntropy/>
423
+ <sp:RequireServerEntropy/>
424
+ </wsp:Policy>
425
+ </sp:Trust13>
426
+ <wsaw:UsingAddressing/>
427
+ </wsp:All>
428
+ </wsp:ExactlyOne>
429
+ </wsp:Policy>
430
+ <wsp:Policy wsu:Id="UserNameWSTrustBinding_IWSTrust13Async_policy">
431
+ <wsp:ExactlyOne>
432
+ <wsp:All>
433
+ <sp:TransportBinding xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
434
+ <wsp:Policy>
435
+ <sp:TransportToken>
436
+ <wsp:Policy>
437
+ <sp:HttpsToken/>
438
+ </wsp:Policy>
439
+ </sp:TransportToken>
440
+ <sp:AlgorithmSuite>
441
+ <wsp:Policy>
442
+ <sp:Basic256/>
443
+ </wsp:Policy>
444
+ </sp:AlgorithmSuite>
445
+ <sp:Layout>
446
+ <wsp:Policy>
447
+ <sp:Strict/>
448
+ </wsp:Policy>
449
+ </sp:Layout>
450
+ <sp:IncludeTimestamp/>
451
+ </wsp:Policy>
452
+ </sp:TransportBinding>
453
+ <sp:SignedEncryptedSopportingTokens xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
454
+ <wsp:Policy>
455
+ <sp:UsernameToken sp:IncludeToken="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702/IncludeToken/AlwaysToRecipient">
456
+ <wsp:Policy>
457
+ <sp:WssUsernameToken10/>
458
+ </wsp:Policy>
459
+ </sp:UsernameToken>
460
+ </wsp:Policy>
461
+ </sp:SignedEncryptedSupportingTokens>
462
+ <sp:EndorsingSupportingTokens xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
463
+ <wsp:Policy>
464
+ <sp:KeyValueToken sp:IncludeToken="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702/IncludeToken/Never" wsp:Optional="true"/>
465
+ <sp:SignedParts>
466
+ <sp:Header Name="To" Namespace="http://www.w3.org/2005/08/addressing"/>
467
+ </sp:SignedParts>
468
+ </wsp:Policy>
469
+ </sp:EndorsingSupportingTokens>
470
+ <sp:Wss11 xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
471
+ <wsp:Policy/>
472
+ </sp:Wss11>
473
+ <sp:Trust13 xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
474
+ <wsp:Policy>
475
+ <sp:MustSupportIssuedTokens/>
476
+ <sp:RequireClientEntropy/>
477
+ <sp:RequireServerEntropy/>
478
+ </wsp:Policy>
479
+ </sp:Trust13>
480
+ <wsaw:UsingAddressing/>
481
+ </wsp:All>
482
+ </wsp:ExactlyOne>
483
+ </wsp:Policy>
484
+ <wsp:Policy wsu:Id="IssuedTokenWSTrustBinding_IWSTrust13Async_policy">
485
+ <wsp:ExactlyOne>
486
+ <wsp:All>
487
+ <sp:TransportBinding xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
488
+ <wsp:Policy>
489
+ <sp:TransportToken>
490
+ <wsp:Policy>
491
+ <sp:HttpsToken/>
492
+ </wsp:Policy>
493
+ </sp:TransportToken>
494
+ <sp:AlgorithmSuite>
495
+ <wsp:Policy>
496
+ <sp:Basic256/>
497
+ </wsp:Policy>
498
+ </sp:AlgorithmSuite>
499
+ <sp:Layout>
500
+ <wsp:Policy>
501
+ <sp:Strict/>
502
+ </wsp:Policy>
503
+ </sp:Layout>
504
+ <sp:IncludeTimestamp/>
505
+ </wsp:Policy>
506
+ </sp:TransportBinding>
507
+ <sp:EndorsingSupportingTokens xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
508
+ <wsp:Policy>
509
+ <sp:IssuedToken sp:IncludeToken="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702/IncludeToken/AlwaysToRecipient">
510
+ <sp:RequestSecurityTokenTemplate>
511
+ <trust:KeyType>http://docs.oasis-open.org/ws-sx/ws-trust/200512/PublicKey</trust:KeyType>
512
+ <trust:KeyWrapAlgorithm>http://www.w3.org/2001/04/xmlenc#rsa-oaep-mgf1p</trust:KeyWrapAlgorithm>
513
+ <trust:EncryptWith>http://www.w3.org/2001/04/xmlenc#rsa-oaep-mgf1p</trust:EncryptWith>
514
+ <trust:SignatureAlgorithm>http://www.w3.org/2000/09/xmldsig#rsa-sha1</trust:SignatureAlgorithm>
515
+ <trust:CanonicalizationAlgorithm>http://www.w3.org/2001/10/xml-exc-c14n#</trust:CanonicalizationAlgorithm>
516
+ <trust:EncryptionAlgorithm>http://www.w3.org/2001/04/xmlenc#aes256-cbc</trust:EncryptionAlgorithm>
517
+ </sp:RequestSecurityTokenTemplate>
518
+ <wsp:Policy>
519
+ <sp:RequireInternalReference/>
520
+ </wsp:Policy>
521
+ </sp:IssuedToken>
522
+ <sp:KeyValueToken sp:IncludeToken="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702/IncludeToken/Never" wsp:Optional="true"/>
523
+ <sp:SignedParts>
524
+ <sp:Header Name="To" Namespace="http://www.w3.org/2005/08/addressing"/>
525
+ </sp:SignedParts>
526
+ </wsp:Policy>
527
+ </sp:EndorsingSupportingTokens>
528
+ <sp:Wss11 xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
529
+ <wsp:Policy/>
530
+ </sp:Wss11>
531
+ <sp:Trust13 xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
532
+ <wsp:Policy>
533
+ <sp:MustSupportIssuedTokens/>
534
+ <sp:RequireClientEntropy/>
535
+ <sp:RequireServerEntropy/>
536
+ </wsp:Policy>
537
+ </sp:Trust13>
538
+ <wsaw:UsingAddressing/>
539
+ </wsp:All>
540
+ </wsp:ExactlyOne>
541
+ </wsp:Policy>
542
+ <wsp:Policy wsu:Id="IssuedTokenWSTrustBinding_IWSTrust13Async1_policy">
543
+ <wsp:ExactlyOne>
544
+ <wsp:All>
545
+ <sp:TransportBinding xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
546
+ <wsp:Policy>
547
+ <sp:TransportToken>
548
+ <wsp:Policy>
549
+ <sp:HttpsToken/>
550
+ </wsp:Policy>
551
+ </sp:TransportToken>
552
+ <sp:AlgorithmSuite>
553
+ <wsp:Policy>
554
+ <sp:Basic256/>
555
+ </wsp:Policy>
556
+ </sp:AlgorithmSuite>
557
+ <sp:Layout>
558
+ <wsp:Policy>
559
+ <sp:Strict/>
560
+ </wsp:Policy>
561
+ </sp:Layout>
562
+ <sp:IncludeTimestamp/>
563
+ </wsp:Policy>
564
+ </sp:TransportBinding>
565
+ <sp:EndorsingSupportingTokens xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
566
+ <wsp:Policy>
567
+ <sp:IssuedToken sp:IncludeToken="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702/IncludeToken/AlwaysToRecipient">
568
+ <sp:RequestSecurityTokenTemplate>
569
+ <trust:KeyType>http://docs.oasis-open.org/ws-sx/ws-trust/200512/SymmetricKey</trust:KeyType>
570
+ <trust:KeySize>256</trust:KeySize>
571
+ <trust:KeyWrapAlgorithm>http://www.w3.org/2001/04/xmlenc#rsa-oaep-mgf1p</trust:KeyWrapAlgorithm>
572
+ <trust:EncryptWith>http://www.w3.org/2001/04/xmlenc#aes256-cbc</trust:EncryptWith>
573
+ <trust:SignatureAlgorithm>http://www.w3.org/2000/09/xmldsig#hmac-sha1</trust:SignatureAlgorithm>
574
+ <trust:CanonicalizationAlgorithm>http://www.w3.org/2001/10/xml-exc-c14n#</trust:CanonicalizationAlgorithm>
575
+ <trust:EncryptionAlgorithm>http://www.w3.org/2001/04/xmlenc#aes256-cbc</trust:EncryptionAlgorithm>
576
+ </sp:RequestSecurityTokenTemplate>
577
+ <wsp:Policy>
578
+ <sp:RequireInternalReference/>
579
+ </wsp:Policy>
580
+ </sp:IssuedToken>
581
+ <sp:KeyValueToken sp:IncludeToken="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702/IncludeToken/Never" wsp:Optional="true"/>
582
+ <sp:SignedParts>
583
+ <sp:Header Name="To" Namespace="http://www.w3.org/2005/08/addressing"/>
584
+ </sp:SignedParts>
585
+ </wsp:Policy>
586
+ </sp:EndorsingSupportingTokens>
587
+ <sp:Wss11 xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
588
+ <wsp:Policy/>
589
+ </sp:Wss11>
590
+ <sp:Trust13 xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702">
591
+ <wsp:Policy>
592
+ <sp:MustSupportIssuedTokens/>
593
+ <sp:RequireClientEntropy/>
594
+ <sp:RequireServerEntropy/>
595
+ </wsp:Policy>
596
+ </sp:Trust13>
597
+ <wsaw:UsingAddressing/>
598
+ </wsp:All>
599
+ </wsp:ExactlyOne>
600
+ </wsp:Policy>
601
+ <wsp:Policy wsu:Id="CustomBinding_IWSTrust13Async1_policy">
602
+ <wsp:ExactlyOne>
603
+ <wsp:All>
604
+ <http:NegotiateAuthentication xmlns:http="http://schemas.microsoft.com/ws/06/2004/policy/http"/>
605
+ <sp:TransportBinding xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
606
+ <wsp:Policy>
607
+ <sp:TransportToken>
608
+ <wsp:Policy>
609
+ <sp:HttpsToken RequireClientCertificate="false"/>
610
+ </wsp:Policy>
611
+ </sp:TransportToken>
612
+ <sp:AlgorithmSuite>
613
+ <wsp:Policy>
614
+ <sp:Basic256/>
615
+ </wsp:Policy>
616
+ </sp:AlgorithmSuite>
617
+ <sp:Layout>
618
+ <wsp:Policy>
619
+ <sp:Strict/>
620
+ </wsp:Policy>
621
+ </sp:Layout>
622
+ </wsp:Policy>
623
+ </sp:TransportBinding>
624
+ <wsaw:UsingAddressing/>
625
+ </wsp:All>
626
+ </wsp:ExactlyOne>
627
+ </wsp:Policy>
628
+ <wsdl:types>
629
+ <xsd:schema targetNamespace="http://schemas.microsoft.com/ws/2008/06/identity/securitytokenservice/Imports">
630
+ <xsd:import schemaLocation="https://arvmserver2012.archan.us/adfs/services/trust/mex?xsd=xsd0" namespace="http://schemas.microsoft.com/Message"/>
631
+ <xsd:import schemaLocation="https://arvmserver2012.archan.us/adfs/services/trust/mex?xsd=xsd1" namespace="http://schemas.xmlsoap.org/ws/2005/02/trust"/>
632
+ <xsd:import schemaLocation="https://arvmserver2012.archan.us/adfs/services/trust/mex?xsd=xsd2" namespace="http://docs.oasis-open.org/ws-sx/ws-trust/200512"/>
633
+ </xsd:schema>
634
+ </wsdl:types>
635
+ <wsdl:message name="IWSTrustFeb2005Async_TrustFeb2005IssueAsync_InputMessage">
636
+ <wsdl:part name="request" element="t:RequestSecurityToken"/>
637
+ </wsdl:message>
638
+ <wsdl:message name="IWSTrustFeb2005Async_TrustFeb2005IssueAsync_OutputMessage">
639
+ <wsdl:part name="TrustFeb2005IssueAsyncResult" element="t:RequestSecurityTokenResponse"/>
640
+ </wsdl:message>
641
+ <wsdl:message name="IWSTrust13Async_Trust13IssueAsync_InputMessage">
642
+ <wsdl:part name="request" element="trust:RequestSecurityToken"/>
643
+ </wsdl:message>
644
+ <wsdl:message name="IWSTrust13Async_Trust13IssueAsync_OutputMessage">
645
+ <wsdl:part name="Trust13IssueAsyncResult" element="trust:RequestSecurityTokenResponseCollection"/>
646
+ </wsdl:message>
647
+ <wsdl:portType name="IWSTrustFeb2005Async">
648
+ <wsdl:operation name="TrustFeb2005IssueAsync">
649
+ <wsdl:input wsaw:Action="http://schemas.xmlsoap.org/ws/2005/02/trust/RST/Issue" message="tns:IWSTrustFeb2005Async_TrustFeb2005IssueAsync_InputMessage"/>
650
+ <wsdl:output wsaw:Action="http://schemas.xmlsoap.org/ws/2005/02/trust/RSTR/Issue" message="tns:IWSTrustFeb2005Async_TrustFeb2005IssueAsync_OutputMessage"/>
651
+ </wsdl:operation>
652
+ </wsdl:portType>
653
+ <wsdl:portType name="IWSTrust13Async">
654
+ <wsdl:operation name="Trust13IssueAsync">
655
+ <wsdl:input wsaw:Action="http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/Issue" message="tns:IWSTrust13Async_Trust13IssueAsync_InputMessage"/>
656
+ <wsdl:output wsaw:Action="http://docs.oasis-open.org/ws-sx/ws-trust/200512/RSTRC/IssueFinal" message="tns:IWSTrust13Async_Trust13IssueAsync_OutputMessage"/>
657
+ </wsdl:operation>
658
+ </wsdl:portType>
659
+ <wsdl:binding name="CustomBinding_IWSTrustFeb2005Async" type="tns:IWSTrustFeb2005Async">
660
+ <wsp:PolicyReference URI="#CustomBinding_IWSTrustFeb2005Async_policy"/>
661
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
662
+ <wsdl:operation name="TrustFeb2005IssueAsync">
663
+ <soap12:operation soapAction="http://schemas.xmlsoap.org/ws/2005/02/trust/RST/Issue" style="document"/>
664
+ <wsdl:input>
665
+ <soap12:body use="literal"/>
666
+ </wsdl:input>
667
+ <wsdl:output>
668
+ <soap12:body use="literal"/>
669
+ </wsdl:output>
670
+ </wsdl:operation>
671
+ </wsdl:binding>
672
+ <wsdl:binding name="CertificateWSTrustBinding_IWSTrustFeb2005Async" type="tns:IWSTrustFeb2005Async">
673
+ <wsp:PolicyReference URI="#CertificateWSTrustBinding_IWSTrustFeb2005Async_policy"/>
674
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
675
+ <wsdl:operation name="TrustFeb2005IssueAsync">
676
+ <soap12:operation soapAction="http://schemas.xmlsoap.org/ws/2005/02/trust/RST/Issue" style="document"/>
677
+ <wsdl:input>
678
+ <soap12:body use="literal"/>
679
+ </wsdl:input>
680
+ <wsdl:output>
681
+ <soap12:body use="literal"/>
682
+ </wsdl:output>
683
+ </wsdl:operation>
684
+ </wsdl:binding>
685
+ <wsdl:binding name="CertificateWSTrustBinding_IWSTrustFeb2005Async1" type="tns:IWSTrustFeb2005Async">
686
+ <wsp:PolicyReference URI="#CertificateWSTrustBinding_IWSTrustFeb2005Async1_policy"/>
687
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
688
+ <wsdl:operation name="TrustFeb2005IssueAsync">
689
+ <soap12:operation soapAction="http://schemas.xmlsoap.org/ws/2005/02/trust/RST/Issue" style="document"/>
690
+ <wsdl:input>
691
+ <soap12:body use="literal"/>
692
+ </wsdl:input>
693
+ <wsdl:output>
694
+ <soap12:body use="literal"/>
695
+ </wsdl:output>
696
+ </wsdl:operation>
697
+ </wsdl:binding>
698
+ <wsdl:binding name="UserNameWSTrustBinding_IWSTrustFeb2005Async" type="tns:IWSTrustFeb2005Async">
699
+ <wsp:PolicyReference URI="#UserNameWSTrustBinding_IWSTrustFeb2005Async_policy"/>
700
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
701
+ <wsdl:operation name="TrustFeb2005IssueAsync">
702
+ <soap12:operation soapAction="http://schemas.xmlsoap.org/ws/2005/02/trust/RST/Issue" style="document"/>
703
+ <wsdl:input>
704
+ <soap12:body use="literal"/>
705
+ </wsdl:input>
706
+ <wsdl:output>
707
+ <soap12:body use="literal"/>
708
+ </wsdl:output>
709
+ </wsdl:operation>
710
+ </wsdl:binding>
711
+ <wsdl:binding name="CustomBinding_IWSTrustFeb2005Async1" type="tns:IWSTrustFeb2005Async">
712
+ <wsp:PolicyReference URI="#CustomBinding_IWSTrustFeb2005Async1_policy"/>
713
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
714
+ <wsdl:operation name="TrustFeb2005IssueAsync">
715
+ <soap12:operation soapAction="http://schemas.xmlsoap.org/ws/2005/02/trust/RST/Issue" style="document"/>
716
+ <wsdl:input>
717
+ <soap12:body use="literal"/>
718
+ </wsdl:input>
719
+ <wsdl:output>
720
+ <soap12:body use="literal"/>
721
+ </wsdl:output>
722
+ </wsdl:operation>
723
+ </wsdl:binding>
724
+ <wsdl:binding name="IssuedTokenWSTrustBinding_IWSTrustFeb2005Async" type="tns:IWSTrustFeb2005Async">
725
+ <wsp:PolicyReference URI="#IssuedTokenWSTrustBinding_IWSTrustFeb2005Async_policy"/>
726
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
727
+ <wsdl:operation name="TrustFeb2005IssueAsync">
728
+ <soap12:operation soapAction="http://schemas.xmlsoap.org/ws/2005/02/trust/RST/Issue" style="document"/>
729
+ <wsdl:input>
730
+ <soap12:body use="literal"/>
731
+ </wsdl:input>
732
+ <wsdl:output>
733
+ <soap12:body use="literal"/>
734
+ </wsdl:output>
735
+ </wsdl:operation>
736
+ </wsdl:binding>
737
+ <wsdl:binding name="IssuedTokenWSTrustBinding_IWSTrustFeb2005Async1" type="tns:IWSTrustFeb2005Async">
738
+ <wsp:PolicyReference URI="#IssuedTokenWSTrustBinding_IWSTrustFeb2005Async1_policy"/>
739
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
740
+ <wsdl:operation name="TrustFeb2005IssueAsync">
741
+ <soap12:operation soapAction="http://schemas.xmlsoap.org/ws/2005/02/trust/RST/Issue" style="document"/>
742
+ <wsdl:input>
743
+ <soap12:body use="literal"/>
744
+ </wsdl:input>
745
+ <wsdl:output>
746
+ <soap12:body use="literal"/>
747
+ </wsdl:output>
748
+ </wsdl:operation>
749
+ </wsdl:binding>
750
+ <wsdl:binding name="CustomBinding_IWSTrust13Async" type="tns:IWSTrust13Async">
751
+ <wsp:PolicyReference URI="#CustomBinding_IWSTrust13Async_policy"/>
752
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
753
+ <wsdl:operation name="Trust13IssueAsync">
754
+ <soap12:operation soapAction="http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/Issue" style="document"/>
755
+ <wsdl:input>
756
+ <soap12:body use="literal"/>
757
+ </wsdl:input>
758
+ <wsdl:output>
759
+ <soap12:body use="literal"/>
760
+ </wsdl:output>
761
+ </wsdl:operation>
762
+ </wsdl:binding>
763
+ <wsdl:binding name="CertificateWSTrustBinding_IWSTrust13Async" type="tns:IWSTrust13Async">
764
+ <wsp:PolicyReference URI="#CertificateWSTrustBinding_IWSTrust13Async_policy"/>
765
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
766
+ <wsdl:operation name="Trust13IssueAsync">
767
+ <soap12:operation soapAction="http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/Issue" style="document"/>
768
+ <wsdl:input>
769
+ <soap12:body use="literal"/>
770
+ </wsdl:input>
771
+ <wsdl:output>
772
+ <soap12:body use="literal"/>
773
+ </wsdl:output>
774
+ </wsdl:operation>
775
+ </wsdl:binding>
776
+ <wsdl:binding name="UserNameWSTrustBinding_IWSTrust13Async" type="tns:IWSTrust13Async">
777
+ <wsp:PolicyReference URI="#UserNameWSTrustBinding_IWSTrust13Async_policy"/>
778
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
779
+ <wsdl:operation name="Trust13IssueAsync">
780
+ <soap12:operation soapAction="http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/Issue" style="document"/>
781
+ <wsdl:input>
782
+ <soap12:body use="literal"/>
783
+ </wsdl:input>
784
+ <wsdl:output>
785
+ <soap12:body use="literal"/>
786
+ </wsdl:output>
787
+ </wsdl:operation>
788
+ </wsdl:binding>
789
+ <wsdl:binding name="IssuedTokenWSTrustBinding_IWSTrust13Async" type="tns:IWSTrust13Async">
790
+ <wsp:PolicyReference URI="#IssuedTokenWSTrustBinding_IWSTrust13Async_policy"/>
791
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
792
+ <wsdl:operation name="Trust13IssueAsync">
793
+ <soap12:operation soapAction="http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/Issue" style="document"/>
794
+ <wsdl:input>
795
+ <soap12:body use="literal"/>
796
+ </wsdl:input>
797
+ <wsdl:output>
798
+ <soap12:body use="literal"/>
799
+ </wsdl:output>
800
+ </wsdl:operation>
801
+ </wsdl:binding>
802
+ <wsdl:binding name="IssuedTokenWSTrustBinding_IWSTrust13Async1" type="tns:IWSTrust13Async">
803
+ <wsp:PolicyReference URI="#IssuedTokenWSTrustBinding_IWSTrust13Async1_policy"/>
804
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
805
+ <wsdl:operation name="Trust13IssueAsync">
806
+ <soap12:operation soapAction="http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/Issue" style="document"/>
807
+ <wsdl:input>
808
+ <soap12:body use="literal"/>
809
+ </wsdl:input>
810
+ <wsdl:output>
811
+ <soap12:body use="literal"/>
812
+ </wsdl:output>
813
+ </wsdl:operation>
814
+ </wsdl:binding>
815
+ <wsdl:binding name="CustomBinding_IWSTrust13Async1" type="tns:IWSTrust13Async">
816
+ <wsp:PolicyReference URI="#CustomBinding_IWSTrust13Async1_policy"/>
817
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
818
+ <wsdl:operation name="Trust13IssueAsync">
819
+ <soap12:operation soapAction="http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/Issue" style="document"/>
820
+ <wsdl:input>
821
+ <soap12:body use="literal"/>
822
+ </wsdl:input>
823
+ <wsdl:output>
824
+ <soap12:body use="literal"/>
825
+ </wsdl:output>
826
+ </wsdl:operation>
827
+ </wsdl:binding>
828
+ <wsdl:service name="SecurityTokenService">
829
+ <wsdl:port name="CustomBinding_IWSTrustFeb2005Async" binding="tns:CustomBinding_IWSTrustFeb2005Async">
830
+ <soap12:address location="https://arvmserver2012.archan.us/adfs/services/trust/2005/windowstransport"/>
831
+ <wsa10:EndpointReference>
832
+ <wsa10:Address>https://arvmserver2012.archan.us/adfs/services/trust/2005/windowstransport</wsa10:Address>
833
+ <Identity xmlns="http://schemas.xmlsoap.org/ws/2006/02/addressingidentity">
834
+ <Spn>host/ARVMServer2012.archan.us</Spn>
835
+ </Identity>
836
+ </wsa10:EndpointReference>
837
+ </wsdl:port>
838
+ <wsdl:port name="CertificateWSTrustBinding_IWSTrustFeb2005Async" binding="tns:CertificateWSTrustBinding_IWSTrustFeb2005Async">
839
+ <soap12:address location="https://arvmserver2012.archan.us/adfs/services/trust/2005/certificatemixed"/>
840
+ <wsa10:EndpointReference>
841
+ <wsa10:Address>https://arvmserver2012.archan.us/adfs/services/trust/2005/certificatemixed</wsa10:Address>
842
+ </wsa10:EndpointReference>
843
+ </wsdl:port>
844
+ <wsdl:port name="CertificateWSTrustBinding_IWSTrustFeb2005Async1" binding="tns:CertificateWSTrustBinding_IWSTrustFeb2005Async1">
845
+ <soap12:address location="https://arvmserver2012.archan.us/adfs/services/trust/2005/certificatetransport"/>
846
+ <wsa10:EndpointReference>
847
+ <wsa10:Address>https://arvmserver2012.archan.us/adfs/services/trust/2005/certificatetransport</wsa10:Address>
848
+ </wsa10:EndpointReference>
849
+ </wsdl:port>
850
+ <wsdl:port name="UserNameWSTrustBinding_IWSTrustFeb2005Async" binding="tns:UserNameWSTrustBinding_IWSTrustFeb2005Async">
851
+ <soap12:address location="https://arvmserver2012.archan.us/adfs/services/trust/2005/usernamemixed"/>
852
+ <wsa10:EndpointReference>
853
+ <wsa10:Address>https://arvmserver2012.archan.us/adfs/services/trust/2005/usernamemixed</wsa10:Address>
854
+ </wsa10:EndpointReference>
855
+ </wsdl:port>
856
+ <wsdl:port name="CustomBinding_IWSTrustFeb2005Async1" binding="tns:CustomBinding_IWSTrustFeb2005Async1">
857
+ <soap12:address location="https://arvmserver2012.archan.us/adfs/services/trust/2005/kerberosmixed"/>
858
+ <wsa10:EndpointReference>
859
+ <wsa10:Address>https://arvmserver2012.archan.us/adfs/services/trust/2005/kerberosmixed</wsa10:Address>
860
+ </wsa10:EndpointReference>
861
+ </wsdl:port>
862
+ <wsdl:port name="IssuedTokenWSTrustBinding_IWSTrustFeb2005Async" binding="tns:IssuedTokenWSTrustBinding_IWSTrustFeb2005Async">
863
+ <soap12:address location="https://arvmserver2012.archan.us/adfs/services/trust/2005/issuedtokenmixedasymmetricbasic256"/>
864
+ <wsa10:EndpointReference>
865
+ <wsa10:Address>https://arvmserver2012.archan.us/adfs/services/trust/2005/issuedtokenmixedasymmetricbasic256</wsa10:Address>
866
+ </wsa10:EndpointReference>
867
+ </wsdl:port>
868
+ <wsdl:port name="IssuedTokenWSTrustBinding_IWSTrustFeb2005Async1" binding="tns:IssuedTokenWSTrustBinding_IWSTrustFeb2005Async1">
869
+ <soap12:address location="https://arvmserver2012.archan.us/adfs/services/trust/2005/issuedtokenmixedsymmetricbasic256"/>
870
+ <wsa10:EndpointReference>
871
+ <wsa10:Address>https://arvmserver2012.archan.us/adfs/services/trust/2005/issuedtokenmixedsymmetricbasic256</wsa10:Address>
872
+ </wsa10:EndpointReference>
873
+ </wsdl:port>
874
+ <wsdl:port name="CustomBinding_IWSTrust13Async" binding="tns:CustomBinding_IWSTrust13Async">
875
+ <soap12:address location="https://arvmserver2012.archan.us/adfs/services/trust/13/kerberosmixed"/>
876
+ <wsa10:EndpointReference>
877
+ <wsa10:Address>https://arvmserver2012.archan.us/adfs/services/trust/13/kerberosmixed</wsa10:Address>
878
+ </wsa10:EndpointReference>
879
+ </wsdl:port>
880
+ <wsdl:port name="CertificateWSTrustBinding_IWSTrust13Async" binding="tns:CertificateWSTrustBinding_IWSTrust13Async">
881
+ <soap12:address location="https://arvmserver2012.archan.us/adfs/services/trust/13/certificatemixed"/>
882
+ <wsa10:EndpointReference>
883
+ <wsa10:Address>https://arvmserver2012.archan.us/adfs/services/trust/13/certificatemixed</wsa10:Address>
884
+ </wsa10:EndpointReference>
885
+ </wsdl:port>
886
+ <wsdl:port name="UserNameWSTrustBinding_IWSTrust13Async" binding="tns:UserNameWSTrustBinding_IWSTrust13Async">
887
+ <soap12:address location="https://arvmserver2012.archan.us/adfs/services/trust/13/usernamemixed"/>
888
+ <wsa10:EndpointReference>
889
+ <wsa10:Address>https://arvmserver2012.archan.us/adfs/services/trust/13/usernamemixed</wsa10:Address>
890
+ </wsa10:EndpointReference>
891
+ </wsdl:port>
892
+ <wsdl:port name="IssuedTokenWSTrustBinding_IWSTrust13Async" binding="tns:IssuedTokenWSTrustBinding_IWSTrust13Async">
893
+ <soap12:address location="https://arvmserver2012.archan.us/adfs/services/trust/13/issuedtokenmixedasymmetricbasic256"/>
894
+ <wsa10:EndpointReference>
895
+ <wsa10:Address>https://arvmserver2012.archan.us/adfs/services/trust/13/issuedtokenmixedasymmetricbasic256</wsa10:Address>
896
+ </wsa10:EndpointReference>
897
+ </wsdl:port>
898
+ <wsdl:port name="IssuedTokenWSTrustBinding_IWSTrust13Async1" binding="tns:IssuedTokenWSTrustBinding_IWSTrust13Async1">
899
+ <soap12:address location="https://arvmserver2012.archan.us/adfs/services/trust/13/issuedtokenmixedsymmetricbasic256"/>
900
+ <wsa10:EndpointReference>
901
+ <wsa10:Address>https://arvmserver2012.archan.us/adfs/services/trust/13/issuedtokenmixedsymmetricbasic256</wsa10:Address>
902
+ </wsa10:EndpointReference>
903
+ </wsdl:port>
904
+ <wsdl:port name="CustomBinding_IWSTrust13Async1" binding="tns:CustomBinding_IWSTrust13Async1">
905
+ <soap12:address location="https://arvmserver2012.archan.us/adfs/services/trust/13/windowstransport"/>
906
+ <wsa10:EndpointReference>
907
+ <wsa10:Address>https://arvmserver2012.archan.us/adfs/services/trust/13/windowstransport</wsa10:Address>
908
+ <Identity xmlns="http://schemas.xmlsoap.org/ws/2006/02/addressingidentity">
909
+ <Spn>host/ARVMServer2012.archan.us</Spn>
910
+ </Identity>
911
+ </wsa10:EndpointReference>
912
+ </wsdl:port>
913
+ </wsdl:service>
914
+ </wsdl:definitions>