Welcome to mirror list, hosted at ThFree Co, Russian Federation.

WSTrustServiceContract.cs « Security « ServiceModel « System « System.ServiceModel « referencesource « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 81df58a3069e5ff171d11fed73dc25d5fab47202 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
//------------------------------------------------------------

namespace System.ServiceModel.Security
{
    using System;
    using System.Collections;
    using System.Collections.Generic;
    using System.Diagnostics;
    using System.IdentityModel;
    using System.IdentityModel.Configuration;
    using System.IdentityModel.Diagnostics;
    using System.IdentityModel.Protocols.WSTrust;
    using System.IdentityModel.Selectors;
    using System.IdentityModel.Tokens;
    using System.IO;
    using System.Security.Claims;
    using System.ServiceModel;
    using System.ServiceModel.Activation;
    using System.ServiceModel.Channels;
    using System.ServiceModel.Description;
    using System.Threading;
    using System.Web.Services.Description;
    using System.Xml;
    using System.Xml.Schema;
    using DiagnosticUtility = System.IdentityModel.DiagnosticUtility;
    using Message = System.ServiceModel.Channels.Message;
    using RequestContext = System.ServiceModel.Channels.RequestContext;
    using RST = System.IdentityModel.Protocols.WSTrust.RequestSecurityToken;
    using RSTR = System.IdentityModel.Protocols.WSTrust.RequestSecurityTokenResponse;
    using SR = System.ServiceModel.SR;
    using STS = System.IdentityModel.SecurityTokenService;
    using Fx = System.Runtime.Fx;

    /// <summary>
    /// Definition of Trust Contract Implementation. Implements the following ServiceContract interfaces,
    /// 1. IWSTrustFeb2005SyncContract
    /// 2. IWSTrust13SyncContract
    /// 3. IWSTrustFeb2005AsyncContract
    /// 4. IWSTrust13AsyncContract
    /// </summary>
    [ServiceBehavior(Name = WSTrustServiceContractConstants.ServiceBehaviorName, Namespace = WSTrustServiceContractConstants.Namespace, InstanceContextMode = InstanceContextMode.Single, ConcurrencyMode = ConcurrencyMode.Multiple)]
    [AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
    public class WSTrustServiceContract : IWSTrustFeb2005SyncContract, IWSTrust13SyncContract, IWSTrustFeb2005AsyncContract, IWSTrust13AsyncContract, IWsdlExportExtension, IContractBehavior
    {
        const string soap11Namespace = "http://schemas.xmlsoap.org/soap/envelope/";
        const string soap12Namespace = "http://www.w3.org/2003/05/soap-envelope";

        SecurityTokenServiceConfiguration _securityTokenServiceConfiguration;

        event EventHandler<WSTrustRequestProcessingErrorEventArgs> _requestFailed;

        /// <summary>
        /// Initializes an instance of <see cref="WSTrustServiceContract"/>
        /// </summary>
        /// <param name="securityTokenServiceConfiguration">Configuration object that initializes this instance.</param>
        public WSTrustServiceContract(SecurityTokenServiceConfiguration securityTokenServiceConfiguration)
        {
            if (securityTokenServiceConfiguration == null)
            {
                throw System.ServiceModel.DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("securityTokenServiceConfiguration");
            }

            _securityTokenServiceConfiguration = securityTokenServiceConfiguration;
        }

        /// <summary>
        /// Occurs when a Failure happens processing a Trust request from the 
        /// client.
        /// </summary>
        public event EventHandler<WSTrustRequestProcessingErrorEventArgs> RequestFailed
        {
            add { _requestFailed += value; }
            remove { _requestFailed -= value; }
        }

        /// <summary>
        /// Returns the <see cref="SecurityTokenResolver" /> that resolves the following security tokens contained
        /// in the current WCF message request's security header: protection token, endorsing, or signed endorsing
        /// supporting tokens.
        /// </summary>
        /// <remarks>
        /// This <see cref="SecurityTokenResolver" /> is used to resolve any SecurityTokenIdentifiers
        /// when deserializing RST UseKey elements or RST RenewTarget elements.
        /// </remarks>
        /// <exception cref="ArgumentNullException"><param name="requestContext"/> is null.</exception>
        protected virtual SecurityTokenResolver GetSecurityHeaderTokenResolver(RequestContext requestContext)
        {
            if (requestContext == null)
            {
                throw System.ServiceModel.DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("requestContext");
            }

            List<SecurityToken> tokenList = new List<SecurityToken>();
            if (requestContext.RequestMessage != null
                && requestContext.RequestMessage.Properties != null
                && requestContext.RequestMessage.Properties.Security != null)
            {
                // Add tokens in message
                SecurityMessageProperty msgProperty = requestContext.RequestMessage.Properties.Security;
                if (msgProperty.ProtectionToken != null)
                {
                    tokenList.Add(msgProperty.ProtectionToken.SecurityToken);
                }
                if (msgProperty.HasIncomingSupportingTokens)
                {
                    foreach (SupportingTokenSpecification tokenSpec in msgProperty.IncomingSupportingTokens)
                    {
                        if (tokenSpec != null &&
                             (tokenSpec.SecurityTokenAttachmentMode == SecurityTokenAttachmentMode.Endorsing ||
                               tokenSpec.SecurityTokenAttachmentMode == SecurityTokenAttachmentMode.SignedEndorsing))
                        {
                            tokenList.Add(tokenSpec.SecurityToken);
                        }
                    }
                }

                if (msgProperty.InitiatorToken != null)
                {
                    tokenList.Add(msgProperty.InitiatorToken.SecurityToken);
                }
            }

            if (tokenList.Count > 0)
            {
                return SecurityTokenResolver.CreateDefaultSecurityTokenResolver(tokenList.AsReadOnly(), true);
            }
            else
            {
                return EmptySecurityTokenResolver.Instance;
            }
        }

        /// <summary>
        /// Returns the <see cref="SecurityTokenResolver" /> that will be used when resolving tokens and keys in the
        /// Trust message body.
        /// </summary>
        /// <returns>A <see cref="SecurityTokenResolver" /> instance.</returns>
        /// <seealso cref="GetSecurityHeaderTokenResolver"/>
        protected virtual SecurityTokenResolver GetRstSecurityTokenResolver()
        {
            if (_securityTokenServiceConfiguration != null)
            {
                SecurityTokenResolver tokenResolver = _securityTokenServiceConfiguration.SecurityTokenHandlers.Configuration.ServiceTokenResolver;

                if (tokenResolver != null && (!Object.ReferenceEquals(tokenResolver, EmptySecurityTokenResolver.Instance)))
                {
                    return tokenResolver;
                }
            }

            if (OperationContext.Current != null && OperationContext.Current.Host != null &&
                OperationContext.Current.Host.Description != null)
            {
                ServiceCredentials serviceCreds = OperationContext.Current.Host.Description.Behaviors.Find<ServiceCredentials>();
                if (serviceCreds != null && serviceCreds.ServiceCertificate != null && serviceCreds.ServiceCertificate.Certificate != null)
                {
                    List<SecurityToken> serviceTokens = new List<SecurityToken>(1);
                    serviceTokens.Add(new X509SecurityToken(serviceCreds.ServiceCertificate.Certificate));
                    return SecurityTokenResolver.CreateDefaultSecurityTokenResolver(serviceTokens.AsReadOnly(), false);
                }
            }

            return EmptySecurityTokenResolver.Instance;
        }

        /// <summary>
        /// Creates a WSTrustSerializationContext using the local resolver information 
        /// of the WSTrustServiceClient.
        /// </summary>
        /// <returns>A WSTrustSerializationContext initialized with the current resolver information.</returns>
        protected virtual WSTrustSerializationContext CreateSerializationContext()
        {
            return new WSTrustSerializationContext(_securityTokenServiceConfiguration.SecurityTokenHandlerCollectionManager,
                                                   this.GetRstSecurityTokenResolver(),
                                                   this.GetSecurityHeaderTokenResolver(OperationContext.Current.RequestContext)
                                                   );

        }

        /// <summary>
        /// Begins an asynchronous call to <see cref="DispatchRequest"/>.
        /// </summary>
        /// <param name="dispatchContext">Defines the request parameters to process and exposes properties
        /// that determine the response message and action.</param>
        /// <param name="asyncCallback">An optional asynchronous callback, to be called when the 
        /// dispatch is complete.</param>
        /// <param name="asyncState">A user-provided object that distinguishes this particular asynchronous 
        /// dispatch request from other requests.</param>
        /// <returns><see cref="IAsyncResult"/> that represents the asynchronous operation. Used as the input
        /// to <see cref="EndDispatchRequest"/>.</returns>
        protected virtual IAsyncResult BeginDispatchRequest(DispatchContext dispatchContext, AsyncCallback asyncCallback, object asyncState)
        {
            return new DispatchRequestAsyncResult(dispatchContext, asyncCallback, asyncState);
        }

        /// <summary>
        /// Completes an asynchronous call to <see cref="DispatchRequest"/>.
        /// </summary>
        /// <param name="ar"><see cref="IAsyncResult"/> that was returned by the 
        /// call to <see cref="BeginDispatchRequest"/>.</param>
        /// <returns>The <see cref="DispatchContext"/> that exposes properties which determine the response
        /// message and action.</returns>
        protected virtual DispatchContext EndDispatchRequest(IAsyncResult ar)
        {
            return DispatchRequestAsyncResult.End(ar);
        }

        /// <summary>
        /// Processes a WS-Trust request message, and optionally determines the appropriate
        /// response message and the WS-Addressing action for the response message.
        /// </summary>
        /// <param name="dispatchContext">Defines the request parameters to process and exposes properties
        /// that determine the response message and action.</param>
        protected virtual void DispatchRequest(DispatchContext dispatchContext)
        {
            RST rst = dispatchContext.RequestMessage as RST;
            STS sts = dispatchContext.SecurityTokenService;
            ClaimsPrincipal icp = dispatchContext.Principal;

            if (rst != null)
            {
                switch (rst.RequestType)
                {
                    case RequestTypes.Cancel:
                        dispatchContext.ResponseMessage = sts.Cancel(icp, rst);
                        break;
                    case RequestTypes.Issue:
                        dispatchContext.ResponseMessage = sts.Issue(icp, rst);
                        break;
                    case RequestTypes.Renew:
                        dispatchContext.ResponseMessage = sts.Renew(icp, rst);
                        break;
                    case RequestTypes.Validate:
                        dispatchContext.ResponseMessage = sts.Validate(icp, rst);
                        break;
                    default:
                        throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.ID3112, rst.RequestType)));
                }
            }
            else
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidRequestException(SR.GetString(SR.ID3022)));
            }
        }

        /// <summary>
        /// Handles Synchronous calls to the STS.
        /// </summary>
        /// <param name="requestMessage">Incoming Request message.</param>
        /// <param name="requestSerializer">Trust Request Serializer.</param>
        /// <param name="responseSerializer">Trust Response Serializer.</param>
        /// <param name="requestAction">Request SOAP action.</param>
        /// <param name="responseAction">Response SOAP action.</param>
        /// <param name="trustNamespace">Namespace URI of the trust version of the incoming request.</param>
        /// <returns>Response message that contains the serialized RSTR.</returns>
        /// <exception cref="ArgumentNullException">One of the argument is null.</exception>
        protected virtual Message ProcessCore(Message requestMessage, WSTrustRequestSerializer requestSerializer, WSTrustResponseSerializer responseSerializer, string requestAction, string responseAction, string trustNamespace)
        {
            if (requestMessage == null)
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("requestMessage");
            }

            if (requestSerializer == null)
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("requestSerializer");
            }

            if (responseSerializer == null)
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("responseSerializer");
            }

            if (String.IsNullOrEmpty(requestAction))
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("requestAction");
            }

            if (String.IsNullOrEmpty(responseAction))
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("responseAction");
            }

            if (String.IsNullOrEmpty(trustNamespace))
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("trustNamespace");
            }

            Message response = null;
            try
            {
                Fx.Assert(OperationContext.Current != null, "");
                Fx.Assert(OperationContext.Current.RequestContext != null, "");

                //
                // Create the Serialization and Dispatch context objects.
                //
                WSTrustSerializationContext serializationContext = CreateSerializationContext();

                DispatchContext dispatchContext = CreateDispatchContext(requestMessage,
                                                                         requestAction,
                                                                         responseAction,
                                                                         trustNamespace,
                                                                         requestSerializer,
                                                                         responseSerializer,
                                                                         serializationContext);

                //
                // Validate the dispatch context.
                //
                ValidateDispatchContext(dispatchContext);

                //
                // Dispatch the STS message.
                //
                DispatchRequest(dispatchContext);

                //
                // Create the response Message object with the appropriate action.
                //
                response = Message.CreateMessage(OperationContext.Current.RequestContext.RequestMessage.Version,
                                                  dispatchContext.ResponseAction,
                                                  new WSTrustResponseBodyWriter(dispatchContext.ResponseMessage, responseSerializer, serializationContext));
            }
            catch (Exception ex)
            {
                if (!HandleException(ex, trustNamespace, requestAction, requestMessage.Version.Envelope))
                {
                    throw;
                }
            }

            return response;
        }

        /// <summary>
        /// Creates a <see cref="DispatchContext"/> object for use by the <see cref="DispatchRequest"/> method.
        /// </summary>
        /// <param name="requestMessage">The incoming request message.</param>
        /// <param name="requestAction">The SOAP action of the request.</param>
        /// <param name="responseAction">The default SOAP action of the response.</param>
        /// <param name="trustNamespace">Namespace URI of the trust version of the incoming request.</param>
        /// <param name="requestSerializer">The <see cref="WSTrustRequestSerializer"/> used to deserialize 
        /// incoming RST messages.</param>
        /// <param name="responseSerializer">The <see cref="WSTrustResponseSerializer"/> used to deserialize 
        /// incoming RSTR messages.</param>
        /// <param name="serializationContext">The <see cref="WSTrustSerializationContext"/> to use 
        /// when deserializing incoming messages.</param>
        /// <returns>A <see cref="DispatchContext"/> object.</returns>
        protected virtual DispatchContext CreateDispatchContext(Message requestMessage,
                                                                 string requestAction,
                                                                 string responseAction,
                                                                 string trustNamespace,
                                                                 WSTrustRequestSerializer requestSerializer,
                                                                 WSTrustResponseSerializer responseSerializer,
                                                                 WSTrustSerializationContext serializationContext)
        {
            DispatchContext dispatchContext = new DispatchContext()
            {
                Principal = OperationContext.Current.ClaimsPrincipal as ClaimsPrincipal,
                RequestAction = requestAction,
                ResponseAction = responseAction,
                TrustNamespace = trustNamespace
            };

            XmlReader requestBodyReader = requestMessage.GetReaderAtBodyContents();
            //
            // Take a peek at the request with the serializers to figure out if this is a standard incoming
            // RST or if this is an instance of a challenge-response style message pattern where an RSTR comes in.
            //
            if (requestSerializer.CanRead(requestBodyReader))
            {
                dispatchContext.RequestMessage = requestSerializer.ReadXml(requestBodyReader, serializationContext);
            }
            else if (responseSerializer.CanRead(requestBodyReader))
            {
                dispatchContext.RequestMessage = responseSerializer.ReadXml(requestBodyReader, serializationContext);
            }
            else
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
                    new InvalidRequestException(SR.GetString(SR.ID3114)));
            }

            //
            // CAUTION: Don't create the STS until after the RST or RSTR is deserialized or the test team
            //          has major infrastructure problems.
            //          
            dispatchContext.SecurityTokenService = CreateSTS();
            return dispatchContext;
        }

        /// <summary>
        /// Validates the DispatchContext.
        /// </summary>
        /// <param name="dispatchContext">The <see cref="DispatchContext"/> to validate.</param>
        /// <remarks>
        /// This routine ensures that the <see cref="DispatchContext"/> represents a legal request
        /// prior to being passed into <see cref="DispatchRequest"/>. This routine's default implementation
        /// is to reject incoming RST messages with RSTR actions and vice versa.
        /// </remarks>
        protected virtual void ValidateDispatchContext(DispatchContext dispatchContext)
        {
            if (dispatchContext.RequestMessage is RST
                 && !IsValidRSTAction(dispatchContext))
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
                    new InvalidRequestException(
                        SR.GetString(SR.ID3113, "RequestSecurityToken", dispatchContext.RequestAction)));
            }

            if (dispatchContext.RequestMessage is RSTR
                 && !IsValidRSTRAction(dispatchContext))
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
                    new InvalidRequestException(
                        SR.GetString(SR.ID3113, "RequestSecurityTokenResponse", dispatchContext.RequestAction)));
            }
        }

        /// <summary>
        /// Determines if the DispatchContext contains a valid request action for incoming RST messages.
        /// </summary>
        private static bool IsValidRSTAction(DispatchContext dispatchContext)
        {
            bool valid = false;
            string action = dispatchContext.RequestAction;

            if (dispatchContext.TrustNamespace == WSTrust13Constants.NamespaceURI)
            {
                switch (action)
                {
                    case WSTrust13Constants.Actions.Cancel:
                    case WSTrust13Constants.Actions.Issue:
                    case WSTrust13Constants.Actions.Renew:
                    case WSTrust13Constants.Actions.Validate:
                        valid = true;
                        break;
                }
            }
            if (dispatchContext.TrustNamespace == WSTrustFeb2005Constants.NamespaceURI)
            {
                switch (action)
                {
                    case WSTrustFeb2005Constants.Actions.Cancel:
                    case WSTrustFeb2005Constants.Actions.Issue:
                    case WSTrustFeb2005Constants.Actions.Renew:
                    case WSTrustFeb2005Constants.Actions.Validate:
                        valid = true;
                        break;
                }
            }

            return valid;
        }

        /// <summary>
        /// Determines if the DispatchContext contains a valid request action for incoming RSTR messages.
        /// </summary>
        private static bool IsValidRSTRAction(DispatchContext dispatchContext)
        {
            bool valid = false;
            string action = dispatchContext.RequestAction;

            if (dispatchContext.TrustNamespace == WSTrust13Constants.NamespaceURI)
            {
                switch (action)
                {
                    case WSTrust13Constants.Actions.CancelFinalResponse:
                    case WSTrust13Constants.Actions.CancelResponse:
                    case WSTrust13Constants.Actions.IssueFinalResponse:
                    case WSTrust13Constants.Actions.IssueResponse:
                    case WSTrust13Constants.Actions.RenewFinalResponse:
                    case WSTrust13Constants.Actions.RenewResponse:
                    case WSTrust13Constants.Actions.ValidateFinalResponse:
                    case WSTrust13Constants.Actions.ValidateResponse:
                        valid = true;
                        break;
                }
            }
            if (dispatchContext.TrustNamespace == WSTrustFeb2005Constants.NamespaceURI)
            {
                switch (action)
                {
                    case WSTrustFeb2005Constants.Actions.CancelResponse:
                    case WSTrustFeb2005Constants.Actions.IssueResponse:
                    case WSTrustFeb2005Constants.Actions.RenewResponse:
                    case WSTrustFeb2005Constants.Actions.ValidateResponse:
                        valid = true;
                        break;
                }
            }

            return valid;
        }

        private STS CreateSTS()
        {
            STS sts = _securityTokenServiceConfiguration.CreateSecurityTokenService();

            if (sts == null)
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.ID3002)));
            }

            return sts;
        }

        /// <summary>
        /// Handles Asynchronous call to the STS.
        /// </summary>
        /// <param name="requestMessage">Incoming Request message.</param>
        /// <param name="requestSerializer">Trust Request Serializer.</param>
        /// <param name="responseSerializer">Trust Response Serializer.</param>
        /// <param name="requestAction">Request SOAP action.</param>
        /// <param name="responseAction">Response SOAP action.</param>
        /// <param name="trustNamespace">Namespace URI of the trust version of the incoming request.</param>
        /// <param name="callback">Callback that gets invoked when the Asynchronous call ends.</param>
        /// <param name="state">state information of the Asynchronous call.</param>
        /// <returns>IAsyncResult that should be passed back to the End method to complete the Asynchronous call.</returns>
        /// <exception cref="ArgumentNullException">One of the argument is null.</exception>
        protected virtual IAsyncResult BeginProcessCore(Message requestMessage, WSTrustRequestSerializer requestSerializer, WSTrustResponseSerializer responseSerializer, string requestAction, string responseAction, string trustNamespace, AsyncCallback callback, object state)
        {
            if (requestMessage == null)
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("request");
            }

            if (requestSerializer == null)
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("requestSerializer");
            }

            if (responseSerializer == null)
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("responseSerializer");
            }

            if (String.IsNullOrEmpty(requestAction))
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("requestAction");
            }

            if (String.IsNullOrEmpty(responseAction))
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("responseAction");
            }

            if (String.IsNullOrEmpty(trustNamespace))
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("trustNamespace");
            }

            IAsyncResult result = null;
            try
            {
                Fx.Assert(OperationContext.Current != null, "");
                Fx.Assert(OperationContext.Current.RequestContext != null, "");

                //
                // Create the Serialization and Dispatch context objects.
                //
                WSTrustSerializationContext serializationContext = CreateSerializationContext();

                DispatchContext dispatchContext = CreateDispatchContext(requestMessage,
                                                                         requestAction,
                                                                         responseAction,
                                                                         trustNamespace,
                                                                         requestSerializer,
                                                                         responseSerializer,
                                                                         serializationContext);

                //
                // Validate the dispatch context.
                //
                ValidateDispatchContext(dispatchContext);

                //
                // Dispatch the message asynchronously.
                //
                result = new ProcessCoreAsyncResult(this,
                                                     dispatchContext,
                                                     OperationContext.Current.RequestContext.RequestMessage.Version,
                                                     responseSerializer,
                                                     serializationContext,
                                                     callback,
                                                     state);
            }
            catch (Exception ex)
            {
                if (!HandleException(ex, trustNamespace, requestAction, requestMessage.Version.Envelope))
                {
                    throw;
                }
            }

            return result;
        }

        /// <summary>
        /// Completes an Asynchronous call to the STS.
        /// </summary>
        /// <param name="ar">IAsyncResult that was returned by the call to the Asynchronous Begin method.</param>
        /// <param name="requestAction">Request SOAP Action.</param>
        /// <param name="responseAction">Response SOAP Action.</param>
        /// <param name="trustNamespace">Namespace URI of the current trust version.</param>
        /// <returns>Message that contains the serialized RST message.</returns>
        /// <exception cref="ArgumentNullException">One of the argument is null.</exception>
        protected virtual Message EndProcessCore(IAsyncResult ar, string requestAction, string responseAction, string trustNamespace)
        {
            if (ar == null)
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("ar");
            }

            ProcessCoreAsyncResult asyncResult = ar as ProcessCoreAsyncResult;
            if (asyncResult == null)
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentException(SR.GetString(SR.ID2004, typeof(ProcessCoreAsyncResult), ar.GetType()), "ar"));
            }

            Message message = null;
            try
            {
                message = ProcessCoreAsyncResult.End(ar);
            }
            catch (Exception ex)
            {
                if (!HandleException(ex, trustNamespace, requestAction, asyncResult.MessageVersion.Envelope))
                {
                    throw;
                }
            }

            return message;
        }

        /// <summary>
        /// Raises the Error Event and converts the given exception to a FaultException if required. If the original
        /// exception was a FaultException or PreserveOriginalException flag is set to true then the conversion to 
        /// FaultException is not done.
        /// </summary>
        /// <param name="ex">The original exception.</param>
        /// <param name="trustNamespace">Trust Namespace of the current trust version.</param>
        /// <param name="action">The Trust action that caused the exception.</param>
        /// <param name="requestEnvelopeVersion">Version of the request envolope.</param>
        protected virtual bool HandleException(Exception ex, string trustNamespace, string action, EnvelopeVersion requestEnvelopeVersion)
        {
            if (System.Runtime.Fx.IsFatal(ex))
            {
                return false;
            }

            if (DiagnosticUtility.ShouldTrace(TraceEventType.Warning))
            {
                TraceUtility.TraceString(
                    TraceEventType.Warning,
                    "RequestFailed: TrustNamespace={0}, Action={1}, Exception={2}",
                    trustNamespace,
                    action,
                    ex);
            }

            // raise the exception events.
            if (_requestFailed != null)
            {
                _requestFailed(this, new WSTrustRequestProcessingErrorEventArgs(action, ex));
            }

            bool preserveOriginalException = false;
            ServiceDebugBehavior debugBehavior = OperationContext.Current.Host.Description.Behaviors.Find<ServiceDebugBehavior>();
            if (debugBehavior != null)
            {
                preserveOriginalException = debugBehavior.IncludeExceptionDetailInFaults;
            }

            if (String.IsNullOrEmpty(trustNamespace) || String.IsNullOrEmpty(action) || preserveOriginalException || ex is FaultException)
            {
                // Just throw the original exception.
                return false;
            }
            else
            {
                FaultException faultException = OperationContext.Current.Host.Credentials.ExceptionMapper.FromException(ex, (requestEnvelopeVersion == EnvelopeVersion.Soap11) ? soap11Namespace : soap12Namespace, trustNamespace);
                if (faultException != null)
                {
                    throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(faultException);
                }

                // The exception is not one of the recognized exceptions. Just throw the original exception.
                return false;
            }
        }

        #region IWSTrustFeb2005SyncContract and IWSTrust13SyncContract Methods

        /// <summary>
        /// Processes a Trust 1.3 Cancel message synchronously.
        /// </summary>
        /// <param name="message">Incoming Request message.</param>
        /// <returns>Message with the serialized response.</returns>
        public Message ProcessTrust13Cancel(Message message)
        {
            return ProcessCore(message, _securityTokenServiceConfiguration.WSTrust13RequestSerializer, _securityTokenServiceConfiguration.WSTrust13ResponseSerializer, WSTrust13Constants.Actions.Cancel, WSTrust13Constants.Actions.CancelFinalResponse, WSTrust13Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes a Trust 1.3 Issue message synchronously.
        /// </summary>
        /// <param name="message">Incoming Request message.</param>
        /// <returns>Message with the serialized response.</returns>
        public Message ProcessTrust13Issue(Message message)
        {
            return ProcessCore(message, _securityTokenServiceConfiguration.WSTrust13RequestSerializer, _securityTokenServiceConfiguration.WSTrust13ResponseSerializer, WSTrust13Constants.Actions.Issue, WSTrust13Constants.Actions.IssueFinalResponse, WSTrust13Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes a Trust 1.3 Renew message synchronously.
        /// </summary>
        /// <param name="message">Incoming Request message.</param>
        /// <returns>Message with the serialized response.</returns>
        public Message ProcessTrust13Renew(Message message)
        {
            return ProcessCore(message, _securityTokenServiceConfiguration.WSTrust13RequestSerializer, _securityTokenServiceConfiguration.WSTrust13ResponseSerializer, WSTrust13Constants.Actions.Renew, WSTrust13Constants.Actions.RenewFinalResponse, WSTrust13Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes a Trust 1.3 Validate message synchronously.
        /// </summary>
        /// <param name="message">Incoming Request message.</param>
        /// <returns>Message with the serialized response.</returns>
        public Message ProcessTrust13Validate(Message message)
        {
            return ProcessCore(message, _securityTokenServiceConfiguration.WSTrust13RequestSerializer, _securityTokenServiceConfiguration.WSTrust13ResponseSerializer, WSTrust13Constants.Actions.Validate, WSTrust13Constants.Actions.ValidateFinalResponse, WSTrust13Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes a Trust 1.3 RSTR/Cancel message synchronously.
        /// </summary>
        /// <param name="message">Incoming Request message.</param>
        /// <returns>Message with the serialized response.</returns>
        public Message ProcessTrust13CancelResponse(Message message)
        {
            return ProcessCore(message,
                                _securityTokenServiceConfiguration.WSTrust13RequestSerializer,
                                _securityTokenServiceConfiguration.WSTrust13ResponseSerializer,
                                WSTrust13Constants.Actions.CancelResponse,
                                WSTrust13Constants.Actions.CancelFinalResponse,
                                WSTrust13Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes a Trust 1.3 RSTR/Issue message synchronously.
        /// </summary>
        /// <param name="message">Incoming Request message.</param>
        /// <returns>Message with the serialized response.</returns>
        public Message ProcessTrust13IssueResponse(Message message)
        {
            return ProcessCore(message,
                                _securityTokenServiceConfiguration.WSTrust13RequestSerializer,
                                _securityTokenServiceConfiguration.WSTrust13ResponseSerializer,
                                WSTrust13Constants.Actions.IssueResponse,
                                WSTrust13Constants.Actions.IssueFinalResponse,
                                WSTrust13Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes a Trust 1.3 RSTR/Renew message synchronously.
        /// </summary>
        /// <param name="message">Incoming Request message.</param>
        /// <returns>Message with the serialized response.</returns>
        public Message ProcessTrust13RenewResponse(Message message)
        {
            return ProcessCore(message,
                                _securityTokenServiceConfiguration.WSTrust13RequestSerializer,
                                _securityTokenServiceConfiguration.WSTrust13ResponseSerializer,
                                WSTrust13Constants.Actions.RenewResponse,
                                WSTrust13Constants.Actions.RenewFinalResponse,
                                WSTrust13Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes a Trust 1.3 RSTR/Validate message synchronously.
        /// </summary>
        /// <param name="message">Incoming Request message.</param>
        /// <returns>Message with the serialized response.</returns>
        public Message ProcessTrust13ValidateResponse(Message message)
        {
            return ProcessCore(message,
                                _securityTokenServiceConfiguration.WSTrust13RequestSerializer,
                                _securityTokenServiceConfiguration.WSTrust13ResponseSerializer,
                                WSTrust13Constants.Actions.ValidateResponse,
                                WSTrust13Constants.Actions.ValidateFinalResponse,
                                WSTrust13Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes a Trust Feb 2005 Cancel message synchronously.
        /// </summary>
        /// <param name="message">Incoming Request message.</param>
        /// <returns>Message with the serialized response.</returns>
        public Message ProcessTrustFeb2005Cancel(Message message)
        {
            return ProcessCore(message, _securityTokenServiceConfiguration.WSTrustFeb2005RequestSerializer, _securityTokenServiceConfiguration.WSTrustFeb2005ResponseSerializer, WSTrustFeb2005Constants.Actions.Cancel, WSTrustFeb2005Constants.Actions.CancelResponse, WSTrustFeb2005Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes a Trust Feb 2005 Issue message synchronously.
        /// </summary>
        /// <param name="message">Incoming Request message.</param>
        /// <returns>Message with the serialized response.</returns>
        public Message ProcessTrustFeb2005Issue(Message message)
        {
            return ProcessCore(message, _securityTokenServiceConfiguration.WSTrustFeb2005RequestSerializer, _securityTokenServiceConfiguration.WSTrustFeb2005ResponseSerializer, WSTrustFeb2005Constants.Actions.Issue, WSTrustFeb2005Constants.Actions.IssueResponse, WSTrustFeb2005Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes a Trust Feb 2005 Renew message synchronously.
        /// </summary>
        /// <param name="message">Incoming Request message.</param>
        /// <returns>Message with the serialized response.</returns>
        public Message ProcessTrustFeb2005Renew(Message message)
        {
            return ProcessCore(message, _securityTokenServiceConfiguration.WSTrustFeb2005RequestSerializer, _securityTokenServiceConfiguration.WSTrustFeb2005ResponseSerializer, WSTrustFeb2005Constants.Actions.Renew, WSTrustFeb2005Constants.Actions.RenewResponse, WSTrustFeb2005Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes a Trust Feb 2005 Validate message synchronously.
        /// </summary>
        /// <param name="message">Incoming Request message.</param>
        /// <returns>Message with the serialized response.</returns>
        public Message ProcessTrustFeb2005Validate(Message message)
        {
            return ProcessCore(message, _securityTokenServiceConfiguration.WSTrustFeb2005RequestSerializer, _securityTokenServiceConfiguration.WSTrustFeb2005ResponseSerializer, WSTrustFeb2005Constants.Actions.Validate, WSTrustFeb2005Constants.Actions.ValidateResponse, WSTrustFeb2005Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes a Trust Feb 2005 RSTR/Cancel message synchronously.
        /// </summary>
        /// <param name="message">Incoming Request message.</param>
        /// <returns>Message with the serialized response.</returns>
        public Message ProcessTrustFeb2005CancelResponse(Message message)
        {
            return ProcessCore(message,
                                _securityTokenServiceConfiguration.WSTrustFeb2005RequestSerializer,
                                _securityTokenServiceConfiguration.WSTrustFeb2005ResponseSerializer,
                                WSTrustFeb2005Constants.Actions.CancelResponse,
                                WSTrustFeb2005Constants.Actions.CancelResponse,
                                WSTrustFeb2005Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes a Trust Feb 2005 RSTR/Issue message synchronously.
        /// </summary>
        /// <param name="message">Incoming Request message.</param>
        /// <returns>Message with the serialized response.</returns>
        public Message ProcessTrustFeb2005IssueResponse(Message message)
        {
            return ProcessCore(message,
                                _securityTokenServiceConfiguration.WSTrustFeb2005RequestSerializer,
                                _securityTokenServiceConfiguration.WSTrustFeb2005ResponseSerializer,
                                WSTrustFeb2005Constants.Actions.IssueResponse,
                                WSTrustFeb2005Constants.Actions.IssueResponse,
                                WSTrustFeb2005Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes a Trust Feb 2005 RSTR/Renew message synchronously.
        /// </summary>
        /// <param name="message">Incoming Request message.</param>
        /// <returns>Message with the serialized response.</returns>
        public Message ProcessTrustFeb2005RenewResponse(Message message)
        {
            return ProcessCore(message,
                                _securityTokenServiceConfiguration.WSTrustFeb2005RequestSerializer,
                                _securityTokenServiceConfiguration.WSTrustFeb2005ResponseSerializer,
                                WSTrustFeb2005Constants.Actions.RenewResponse,
                                WSTrustFeb2005Constants.Actions.RenewResponse,
                                WSTrustFeb2005Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes a Trust Feb 2005 RSTR/Validate message synchronously.
        /// </summary>
        /// <param name="message">Incoming Request message.</param>
        /// <returns>Message with the serialized response.</returns>
        public Message ProcessTrustFeb2005ValidateResponse(Message message)
        {
            return ProcessCore(message,
                                _securityTokenServiceConfiguration.WSTrustFeb2005RequestSerializer,
                                _securityTokenServiceConfiguration.WSTrustFeb2005ResponseSerializer,
                                WSTrustFeb2005Constants.Actions.ValidateResponse,
                                WSTrustFeb2005Constants.Actions.ValidateResponse,
                                WSTrustFeb2005Constants.NamespaceURI);
        }

        /// <summary>
        /// Gets the SecurityTokenServiceConfiguration
        /// </summary>
        public SecurityTokenServiceConfiguration SecurityTokenServiceConfiguration
        {
            get
            {
                return _securityTokenServiceConfiguration;
            }
        }

        #endregion

        #region IWSTrustFeb2005AsyncContract and IWSTrust13AsyncContract  Methods

        /// <summary>
        /// Processes an Asynchronous call to Trust Feb 1.3 Cancel message.
        /// </summary>
        /// <param name="request">Incoming Request message.</param>
        /// <param name="callback">Callback to be invoked when the Asynchronous operation ends.</param>
        /// <param name="state">Asynchronous state.</param>
        /// <returns>IAsyncResult that should be passed back to the End method to complete the Asynchronous call.</returns>
        public IAsyncResult BeginTrust13Cancel(Message request, AsyncCallback callback, object state)
        {
            return BeginProcessCore(request, _securityTokenServiceConfiguration.WSTrust13RequestSerializer, _securityTokenServiceConfiguration.WSTrust13ResponseSerializer, WSTrust13Constants.Actions.Cancel, WSTrust13Constants.Actions.CancelFinalResponse, WSTrust13Constants.NamespaceURI, callback, state);
        }

        /// <summary>
        /// Completes an Asynchronous call to Trust 1.3 Cancel message.
        /// </summary>
        /// <param name="ar">IAsyncResult object returned by the Begin method that started the Asynchronous call.</param>
        /// <returns>Message containing the Serialized RSTR.</returns>
        public Message EndTrust13Cancel(IAsyncResult ar)
        {
            return EndProcessCore(ar, WSTrust13Constants.Actions.Cancel, WSTrust13Constants.Actions.CancelFinalResponse, WSTrust13Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes an Asynchronous call to Trust 1.3 Issue message.
        /// </summary>
        /// <param name="request">Incoming Request message.</param>
        /// <param name="callback">Callback to be invoked when the Asynchronous operation ends.</param>
        /// <param name="state">Asynchronous state.</param>
        /// <returns>IAsyncResult that should be passed back to the End method to complete the Asynchronous call.</returns>
        public IAsyncResult BeginTrust13Issue(Message request, AsyncCallback callback, object state)
        {
            return BeginProcessCore(request, _securityTokenServiceConfiguration.WSTrust13RequestSerializer, _securityTokenServiceConfiguration.WSTrust13ResponseSerializer, WSTrust13Constants.Actions.Issue, WSTrust13Constants.Actions.IssueFinalResponse, WSTrust13Constants.NamespaceURI, callback, state);
        }

        /// <summary>
        /// Completes an Asynchronous call to Trust 1.3 Issue message.
        /// </summary>
        /// <param name="ar">IAsyncResult object returned by the Begin method that started the Asynchronous call.</param>
        /// <returns>Message containing the Serialized RSTR.</returns>
        public Message EndTrust13Issue(IAsyncResult ar)
        {
            return EndProcessCore(ar, WSTrust13Constants.Actions.Issue, WSTrust13Constants.Actions.IssueFinalResponse, WSTrust13Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes an Asynchronous call to Trust 1.3 Renew message.
        /// </summary>
        /// <param name="request">Incoming Request message.</param>
        /// <param name="callback">Callback to be invoked when the Asynchronous operation ends.</param>
        /// <param name="state">Asynchronous state.</param>
        /// <returns>IAsyncResult that should be passed back to the End method to complete the Asynchronous call.</returns>
        public IAsyncResult BeginTrust13Renew(Message request, AsyncCallback callback, object state)
        {
            return BeginProcessCore(request, _securityTokenServiceConfiguration.WSTrust13RequestSerializer, _securityTokenServiceConfiguration.WSTrust13ResponseSerializer, WSTrust13Constants.Actions.Renew, WSTrust13Constants.Actions.RenewFinalResponse, WSTrust13Constants.NamespaceURI, callback, state);
        }

        /// <summary>
        /// Completes an Asynchronous call to Trust 1.3 Renew message.
        /// </summary>
        /// <param name="ar">IAsyncResult object returned by the Begin method that started the Asynchronous call.</param>
        /// <returns>Message containing the Serialized RSTR.</returns>
        public Message EndTrust13Renew(IAsyncResult ar)
        {
            return EndProcessCore(ar, WSTrust13Constants.Actions.Renew, WSTrust13Constants.Actions.RenewFinalResponse, WSTrust13Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes an Asynchronous call to Trust 1.3 Validate message.
        /// </summary>
        /// <param name="request">Incoming Request message.</param>
        /// <param name="callback">Callback to be invoked when the Asynchronous operation ends.</param>
        /// <param name="state">Asynchronous state.</param>
        /// <returns>IAsyncResult that should be passed back to the End method to complete the Asynchronous call.</returns>
        public IAsyncResult BeginTrust13Validate(Message request, AsyncCallback callback, object state)
        {
            return BeginProcessCore(request, _securityTokenServiceConfiguration.WSTrust13RequestSerializer, _securityTokenServiceConfiguration.WSTrust13ResponseSerializer, WSTrust13Constants.Actions.Validate, WSTrust13Constants.Actions.ValidateFinalResponse, WSTrust13Constants.NamespaceURI, callback, state);
        }

        /// <summary>
        /// Completes an Asynchronous call to Trust 1.3 Validate message.
        /// </summary>
        /// <param name="ar">IAsyncResult object returned by the Begin method that started the Asynchronous call.</param>
        /// <returns>Message containing the Serialized RSTR.</returns>
        public Message EndTrust13Validate(IAsyncResult ar)
        {
            return EndProcessCore(ar, WSTrust13Constants.Actions.Validate, WSTrust13Constants.Actions.ValidateFinalResponse, WSTrust13Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes an Asynchronous call to Trust 1.3 RSTR/Cancel message.
        /// </summary>
        /// <param name="request">Incoming Request message.</param>
        /// <param name="callback">Callback to be invoked when the Asynchronous operation ends.</param>
        /// <param name="state">Asynchronous state.</param>
        /// <returns>IAsyncResult that should be passed back to the End method to complete the Asynchronous call.</returns>
        public IAsyncResult BeginTrust13CancelResponse(Message request, AsyncCallback callback, object state)
        {
            return BeginProcessCore(request,
                                     _securityTokenServiceConfiguration.WSTrust13RequestSerializer,
                                     _securityTokenServiceConfiguration.WSTrust13ResponseSerializer,
                                     WSTrust13Constants.Actions.CancelResponse,
                                     WSTrust13Constants.Actions.CancelFinalResponse,
                                     WSTrust13Constants.NamespaceURI,
                                     callback,
                                     state);
        }

        /// <summary>
        /// Completes an Asynchronous call to Trust 1.3 RSTR/Cancel message.
        /// </summary>
        /// <param name="ar">IAsyncResult object returned by the Begin method that started the Asynchronous call.</param>
        /// <returns>Message containing the Serialized RSTR.</returns>
        public Message EndTrust13CancelResponse(IAsyncResult ar)
        {
            return EndProcessCore(ar,
                                   WSTrust13Constants.Actions.CancelResponse,
                                   WSTrust13Constants.Actions.CancelFinalResponse,
                                   WSTrust13Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes an Asynchronous call to Trust 1.3 RSTR/Issue message.
        /// </summary>
        /// <param name="request">Incoming Request message.</param>
        /// <param name="callback">Callback to be invoked when the Asynchronous operation ends.</param>
        /// <param name="state">Asynchronous state.</param>
        /// <returns>IAsyncResult that should be passed back to the End method to complete the Asynchronous call.</returns>
        public IAsyncResult BeginTrust13IssueResponse(Message request, AsyncCallback callback, object state)
        {
            return BeginProcessCore(request,
                                     _securityTokenServiceConfiguration.WSTrust13RequestSerializer,
                                     _securityTokenServiceConfiguration.WSTrust13ResponseSerializer,
                                     WSTrust13Constants.Actions.IssueResponse,
                                     WSTrust13Constants.Actions.IssueFinalResponse,
                                     WSTrust13Constants.NamespaceURI,
                                     callback,
                                     state);
        }

        /// <summary>
        /// Completes an Asynchronous call to Trust 1.3 RSTR/Issue message.
        /// </summary>
        /// <param name="ar">IAsyncResult object returned by the Begin method that started the Asynchronous call.</param>
        /// <returns>Message containing the Serialized RSTR.</returns>
        public Message EndTrust13IssueResponse(IAsyncResult ar)
        {
            return EndProcessCore(ar,
                                   WSTrust13Constants.Actions.IssueResponse,
                                   WSTrust13Constants.Actions.IssueFinalResponse,
                                   WSTrust13Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes an Asynchronous call to Trust 1.3 RSTR/Renew message.
        /// </summary>
        /// <param name="request">Incoming Request message.</param>
        /// <param name="callback">Callback to be invoked when the Asynchronous operation ends.</param>
        /// <param name="state">Asynchronous state.</param>
        /// <returns>IAsyncResult that should be passed back to the End method to complete the Asynchronous call.</returns>
        public IAsyncResult BeginTrust13RenewResponse(Message request, AsyncCallback callback, object state)
        {
            return BeginProcessCore(request,
                                     _securityTokenServiceConfiguration.WSTrust13RequestSerializer,
                                     _securityTokenServiceConfiguration.WSTrust13ResponseSerializer,
                                     WSTrust13Constants.Actions.RenewResponse,
                                     WSTrust13Constants.Actions.RenewFinalResponse,
                                     WSTrust13Constants.NamespaceURI,
                                     callback,
                                     state);
        }

        /// <summary>
        /// Completes an Asynchronous call to Trust 1.3 RSTR/Renew message.
        /// </summary>
        /// <param name="ar">IAsyncResult object returned by the Begin method that started the Asynchronous call.</param>
        /// <returns>Message containing the Serialized RSTR.</returns>
        public Message EndTrust13RenewResponse(IAsyncResult ar)
        {
            return EndProcessCore(ar,
                                   WSTrust13Constants.Actions.RenewResponse,
                                   WSTrust13Constants.Actions.RenewFinalResponse,
                                   WSTrust13Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes an Asynchronous call to Trust 1.3 RSTR/Validate message.
        /// </summary>
        /// <param name="request">Incoming Request message.</param>
        /// <param name="callback">Callback to be invoked when the Asynchronous operation ends.</param>
        /// <param name="state">Asynchronous state.</param>
        /// <returns>IAsyncResult that should be passed back to the End method to complete the Asynchronous call.</returns>
        public IAsyncResult BeginTrust13ValidateResponse(Message request, AsyncCallback callback, object state)
        {
            return BeginProcessCore(request,
                                     _securityTokenServiceConfiguration.WSTrust13RequestSerializer,
                                     _securityTokenServiceConfiguration.WSTrust13ResponseSerializer,
                                     WSTrust13Constants.Actions.ValidateResponse,
                                     WSTrust13Constants.Actions.ValidateFinalResponse,
                                     WSTrust13Constants.NamespaceURI,
                                     callback,
                                     state);
        }

        /// <summary>
        /// Completes an Asynchronous call to Trust 1.3 RSTR/Validate message.
        /// </summary>
        /// <param name="ar">IAsyncResult object returned by the Begin method that started the Asynchronous call.</param>
        /// <returns>Message containing the Serialized RSTR.</returns>
        public Message EndTrust13ValidateResponse(IAsyncResult ar)
        {
            return EndProcessCore(ar,
                                   WSTrust13Constants.Actions.ValidateResponse,
                                   WSTrust13Constants.Actions.ValidateFinalResponse,
                                   WSTrust13Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes an Asynchronous call to Trust 2005 Cancel message.
        /// </summary>
        /// <param name="request">Incoming Request message.</param>
        /// <param name="callback">Callback to be invoked when the Asynchronous operation ends.</param>
        /// <param name="state">Asynchronous state.</param>
        /// <returns>IAsyncResult that should be passed back to the End method to complete the Asynchronous call.</returns>
        public IAsyncResult BeginTrustFeb2005Cancel(Message request, AsyncCallback callback, object state)
        {
            return BeginProcessCore(request, _securityTokenServiceConfiguration.WSTrustFeb2005RequestSerializer, _securityTokenServiceConfiguration.WSTrustFeb2005ResponseSerializer, WSTrustFeb2005Constants.Actions.Cancel, WSTrustFeb2005Constants.Actions.CancelResponse, WSTrustFeb2005Constants.NamespaceURI, callback, state);
        }

        /// <summary>
        /// Completes an Asynchronous call to Trust Feb 2005 Cancel message.
        /// </summary>
        /// <param name="ar">IAsyncResult object returned by the Begin method that started the Asynchronous call.</param>
        /// <returns>Message containing the Serialized RSTR.</returns>
        public Message EndTrustFeb2005Cancel(IAsyncResult ar)
        {
            return EndProcessCore(ar, WSTrustFeb2005Constants.Actions.Cancel, WSTrustFeb2005Constants.Actions.CancelResponse, WSTrustFeb2005Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes an Asynchronous call to Trust Feb 2005 Issue message.
        /// </summary>
        /// <param name="request">Incoming Request message.</param>
        /// <param name="callback">Callback to be invoked when the Asynchronous operation ends.</param>
        /// <param name="state">Asynchronous state.</param>
        /// <returns>IAsyncResult that should be passed back to the End method to complete the Asynchronous call.</returns>
        public IAsyncResult BeginTrustFeb2005Issue(Message request, AsyncCallback callback, object state)
        {
            return BeginProcessCore(request, _securityTokenServiceConfiguration.WSTrustFeb2005RequestSerializer, _securityTokenServiceConfiguration.WSTrustFeb2005ResponseSerializer, WSTrustFeb2005Constants.Actions.Issue, WSTrustFeb2005Constants.Actions.IssueResponse, WSTrustFeb2005Constants.NamespaceURI, callback, state);
        }

        /// <summary>
        /// Completes an Asynchronous call to Trust Feb 2005 Issue message.
        /// </summary>
        /// <param name="ar">IAsyncResult object returned by the Begin method that started the Asynchronous call.</param>
        /// <returns>Message containing the Serialized RSTR.</returns>
        public Message EndTrustFeb2005Issue(IAsyncResult ar)
        {
            return EndProcessCore(ar, WSTrustFeb2005Constants.Actions.Issue, WSTrustFeb2005Constants.Actions.IssueResponse, WSTrustFeb2005Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes an Asynchronous call to Trust Feb 2005 Renew message.
        /// </summary>
        /// <param name="request">Incoming Request message.</param>
        /// <param name="callback">Callback to be invoked when the Asynchronous operation ends.</param>
        /// <param name="state">Asynchronous state.</param>
        /// <returns>IAsyncResult that should be passed back to the End method to complete the Asynchronous call.</returns>
        public IAsyncResult BeginTrustFeb2005Renew(Message request, AsyncCallback callback, object state)
        {
            return BeginProcessCore(request, _securityTokenServiceConfiguration.WSTrustFeb2005RequestSerializer, _securityTokenServiceConfiguration.WSTrustFeb2005ResponseSerializer, WSTrustFeb2005Constants.Actions.Renew, WSTrustFeb2005Constants.Actions.RenewResponse, WSTrustFeb2005Constants.NamespaceURI, callback, state);
        }

        /// <summary>
        /// Completes an Asynchronous call to Trust Feb 2005 Renew message.
        /// </summary>
        /// <param name="ar">IAsyncResult object returned by the Begin method that started the Asynchronous call.</param>
        /// <returns>Message containing the Serialized RSTR.</returns>
        public Message EndTrustFeb2005Renew(IAsyncResult ar)
        {
            return EndProcessCore(ar, WSTrustFeb2005Constants.Actions.Renew, WSTrustFeb2005Constants.Actions.RenewResponse, WSTrustFeb2005Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes an Asynchronous call to Trust Feb 2005 Validate message.
        /// </summary>
        /// <param name="request">Incoming Request message.</param>
        /// <param name="callback">Callback to be invoked when the Asynchronous operation ends.</param>
        /// <param name="state">Asynchronous state.</param>
        /// <returns>IAsyncResult that should be passed back to the End method to complete the Asynchronous call.</returns>
        public IAsyncResult BeginTrustFeb2005Validate(Message request, AsyncCallback callback, object state)
        {
            return BeginProcessCore(request, _securityTokenServiceConfiguration.WSTrustFeb2005RequestSerializer, _securityTokenServiceConfiguration.WSTrustFeb2005ResponseSerializer, WSTrustFeb2005Constants.Actions.Validate, WSTrustFeb2005Constants.Actions.ValidateResponse, WSTrustFeb2005Constants.NamespaceURI, callback, state);
        }

        /// <summary>
        /// Completes an Asynchronous call to Trust Feb 2005 Validate message.
        /// </summary>
        /// <param name="ar">IAsyncResult object returned by the Begin method that started the Asynchronous call.</param>
        /// <returns>Message containing the Serialized RSTR.</returns>
        public Message EndTrustFeb2005Validate(IAsyncResult ar)
        {
            return EndProcessCore(ar, WSTrustFeb2005Constants.Actions.Validate, WSTrustFeb2005Constants.Actions.ValidateResponse, WSTrustFeb2005Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes an Asynchronous call to Trust Feb 2005 RSTR/Cancel message.
        /// </summary>
        /// <param name="request">Incoming Request message.</param>
        /// <param name="callback">Callback to be invoked when the Asynchronous operation ends.</param>
        /// <param name="state">Asynchronous state.</param>
        /// <returns>IAsyncResult that should be passed back to the End method to complete the Asynchronous call.</returns>
        public IAsyncResult BeginTrustFeb2005CancelResponse(Message request, AsyncCallback callback, object state)
        {
            return BeginProcessCore(request,
                                     _securityTokenServiceConfiguration.WSTrustFeb2005RequestSerializer,
                                     _securityTokenServiceConfiguration.WSTrustFeb2005ResponseSerializer,
                                     WSTrustFeb2005Constants.Actions.CancelResponse,
                                     WSTrustFeb2005Constants.Actions.CancelResponse,
                                     WSTrustFeb2005Constants.NamespaceURI,
                                     callback,
                                     state);
        }

        /// <summary>
        /// Completes an Asynchronous call to Trust Feb 2005 RSTR/Cancel message.
        /// </summary>
        /// <param name="ar">IAsyncResult object returned by the Begin method that started the Asynchronous call.</param>
        /// <returns>Message containing the Serialized RSTR.</returns>
        public Message EndTrustFeb2005CancelResponse(IAsyncResult ar)
        {
            return EndProcessCore(ar,
                                   WSTrustFeb2005Constants.Actions.CancelResponse,
                                   WSTrustFeb2005Constants.Actions.CancelResponse,
                                   WSTrustFeb2005Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes an Asynchronous call to Trust Feb 2005 RSTR/Issue message.
        /// </summary>
        /// <param name="request">Incoming Request message.</param>
        /// <param name="callback">Callback to be invoked when the Asynchronous operation ends.</param>
        /// <param name="state">Asynchronous state.</param>
        /// <returns>IAsyncResult that should be passed back to the End method to complete the Asynchronous call.</returns>
        public IAsyncResult BeginTrustFeb2005IssueResponse(Message request, AsyncCallback callback, object state)
        {
            return BeginProcessCore(request,
                                     _securityTokenServiceConfiguration.WSTrustFeb2005RequestSerializer,
                                     _securityTokenServiceConfiguration.WSTrustFeb2005ResponseSerializer,
                                     WSTrustFeb2005Constants.Actions.IssueResponse,
                                     WSTrustFeb2005Constants.Actions.IssueResponse,
                                     WSTrustFeb2005Constants.NamespaceURI,
                                     callback,
                                     state);
        }

        /// <summary>
        /// Completes an Asynchronous call to Trust Feb 2005 RSTR/Issue message.
        /// </summary>
        /// <param name="ar">IAsyncResult object returned by the Begin method that started the Asynchronous call.</param>
        /// <returns>Message containing the Serialized RSTR.</returns>
        public Message EndTrustFeb2005IssueResponse(IAsyncResult ar)
        {
            return EndProcessCore(ar,
                                   WSTrustFeb2005Constants.Actions.IssueResponse,
                                   WSTrustFeb2005Constants.Actions.IssueResponse,
                                   WSTrustFeb2005Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes an Asynchronous call to Trust Feb 2005 RSTR/Renew message.
        /// </summary>
        /// <param name="request">Incoming Request message.</param>
        /// <param name="callback">Callback to be invoked when the Asynchronous operation ends.</param>
        /// <param name="state">Asynchronous state.</param>
        /// <returns>IAsyncResult that should be passed back to the End method to complete the Asynchronous call.</returns>
        public IAsyncResult BeginTrustFeb2005RenewResponse(Message request, AsyncCallback callback, object state)
        {
            return BeginProcessCore(request,
                                     _securityTokenServiceConfiguration.WSTrustFeb2005RequestSerializer,
                                     _securityTokenServiceConfiguration.WSTrustFeb2005ResponseSerializer,
                                     WSTrustFeb2005Constants.Actions.RenewResponse,
                                     WSTrustFeb2005Constants.Actions.RenewResponse,
                                     WSTrustFeb2005Constants.NamespaceURI,
                                     callback,
                                     state);
        }

        /// <summary>
        /// Completes an Asynchronous call to Trust Feb 2005 RSTR/Renew message.
        /// </summary>
        /// <param name="ar">IAsyncResult object returned by the Begin method that started the Asynchronous call.</param>
        /// <returns>Message containing the Serialized RSTR.</returns>
        public Message EndTrustFeb2005RenewResponse(IAsyncResult ar)
        {
            return EndProcessCore(ar,
                                   WSTrustFeb2005Constants.Actions.RenewResponse,
                                   WSTrustFeb2005Constants.Actions.RenewResponse,
                                   WSTrustFeb2005Constants.NamespaceURI);
        }

        /// <summary>
        /// Processes an Asynchronous call to Trust Feb 2005 RSTR/Validate message.
        /// </summary>
        /// <param name="request">Incoming Request message.</param>
        /// <param name="callback">Callback to be invoked when the Asynchronous operation ends.</param>
        /// <param name="state">Asynchronous state.</param>
        /// <returns>IAsyncResult that should be passed back to the End method to complete the Asynchronous call.</returns>
        public IAsyncResult BeginTrustFeb2005ValidateResponse(Message request, AsyncCallback callback, object state)
        {
            return BeginProcessCore(request,
                                     _securityTokenServiceConfiguration.WSTrustFeb2005RequestSerializer,
                                     _securityTokenServiceConfiguration.WSTrustFeb2005ResponseSerializer,
                                     WSTrustFeb2005Constants.Actions.ValidateResponse,
                                     WSTrustFeb2005Constants.Actions.ValidateResponse,
                                     WSTrustFeb2005Constants.NamespaceURI,
                                     callback,
                                     state);
        }

        /// <summary>
        /// Completes an Asynchronous call to Trust Feb 2005 RSTR/Validate message.
        /// </summary>
        /// <param name="ar">IAsyncResult object returned by the Begin method that started the Asynchronous call.</param>
        /// <returns>Message containing the Serialized RSTR.</returns>
        public Message EndTrustFeb2005ValidateResponse(IAsyncResult ar)
        {
            return EndProcessCore(ar,
                                   WSTrustFeb2005Constants.Actions.ValidateResponse,
                                   WSTrustFeb2005Constants.Actions.ValidateResponse,
                                   WSTrustFeb2005Constants.NamespaceURI);
        }

        #endregion

        //
        // An async result class that represents the async version of the ProcessCore method.
        //
        internal class ProcessCoreAsyncResult : AsyncResult
        {
            //
            // Encapsulate the local variables in the [....] version of ProcessCore as fields.
            //
            WSTrustServiceContract _trustServiceContract;
            DispatchContext _dispatchContext;
            MessageVersion _messageVersion;
            WSTrustResponseSerializer _responseSerializer;
            WSTrustSerializationContext _serializationContext;

            public ProcessCoreAsyncResult(WSTrustServiceContract contract,
                                           DispatchContext dispatchContext,
                                           MessageVersion messageVersion,
                                           WSTrustResponseSerializer responseSerializer,
                                           WSTrustSerializationContext serializationContext,
                                           AsyncCallback asyncCallback,
                                           object asyncState)
                : base(asyncCallback, asyncState)
            {
                if (contract == null)
                {
                    throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("contract");
                }

                if (dispatchContext == null)
                {
                    throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("dispatchContext");
                }

                if (responseSerializer == null)
                {
                    throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("responseSerializer");
                }

                if (serializationContext == null)
                {
                    throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("serializationContext");
                }

                _trustServiceContract = contract;
                _dispatchContext = dispatchContext;
                _messageVersion = messageVersion;
                _responseSerializer = responseSerializer;
                _serializationContext = serializationContext;

                contract.BeginDispatchRequest(dispatchContext, OnDispatchRequestCompleted, null);
            }

            public WSTrustServiceContract TrustServiceContract
            {
                get { return _trustServiceContract; }
            }

            public DispatchContext DispatchContext
            {
                get { return _dispatchContext; }
            }

            public MessageVersion MessageVersion
            {
                get { return _messageVersion; }
            }

            public WSTrustResponseSerializer ResponseSerializer
            {
                get { return _responseSerializer; }
            }

            public WSTrustSerializationContext SerializationContext
            {
                get { return _serializationContext; }
            }

            public new static Message End(IAsyncResult ar)
            {
                AsyncResult.End(ar);

                ProcessCoreAsyncResult pcar = ar as ProcessCoreAsyncResult;
                if (pcar == null)
                {
                    throw DiagnosticUtility.ThrowHelperInvalidOperation(SR.GetString(SR.ID2004, typeof(ProcessCoreAsyncResult), ar.GetType()));
                }

                //
                // Create the response Message object with the appropriate action.
                //
                return Message.CreateMessage(OperationContext.Current.RequestContext.RequestMessage.Version,
                                              pcar.DispatchContext.ResponseAction,
                                              new WSTrustResponseBodyWriter(pcar.DispatchContext.ResponseMessage,
                                                                             pcar.ResponseSerializer,
                                                                             pcar.SerializationContext));
            }

            //
            // Asynchronously invoked when WSTrustServiceContract.BeginDispatchRequest completes.
            //
            private void OnDispatchRequestCompleted(IAsyncResult ar)
            {
                try
                {
                    _dispatchContext = _trustServiceContract.EndDispatchRequest(ar);
                    this.Complete(false);
                }
                catch (Exception ex)
                {
                    if (System.Runtime.Fx.IsFatal(ex))
                    {
                        throw;
                    }
                    this.Complete(false, ex);
                }
            }
        }

        //
        // AsyncResult to encapsulate the default async implementation of DispatchRequest
        //
        internal class DispatchRequestAsyncResult : AsyncResult
        {
            DispatchContext _dispatchContext;

            public DispatchContext DispatchContext
            {
                get { return _dispatchContext; }
            }

            public DispatchRequestAsyncResult(DispatchContext dispatchContext, AsyncCallback asyncCallback, object asyncState)
                : base(asyncCallback, asyncState)
            {
                _dispatchContext = dispatchContext;

                ClaimsPrincipal icp = dispatchContext.Principal;
                RST rst = dispatchContext.RequestMessage as RST;
                STS sts = dispatchContext.SecurityTokenService;

                if (rst == null)
                {
                    this.Complete(true, DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidRequestException(SR.GetString(SR.ID3023))));
                    return;
                }

                switch (rst.RequestType)
                {
                    case RequestTypes.Cancel:
                        sts.BeginCancel(icp, rst, OnCancelComplete, null);
                        break;
                    case RequestTypes.Issue:
                        sts.BeginIssue(icp, rst, OnIssueComplete, null);
                        break;
                    case RequestTypes.Renew:
                        sts.BeginRenew(icp, rst, OnRenewComplete, null);
                        break;
                    case RequestTypes.Validate:
                        sts.BeginValidate(icp, rst, OnValidateComplete, null);
                        break;
                    default:
                        this.Complete(true, DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.ID3112, rst.RequestType))));
                        break;
                }
            }

            public new static DispatchContext End(IAsyncResult ar)
            {
                AsyncResult.End(ar);

                DispatchRequestAsyncResult dcar = ar as DispatchRequestAsyncResult;
                if (dcar == null)
                {
                    throw DiagnosticUtility.ThrowHelperInvalidOperation(SR.GetString(SR.ID2004, typeof(DispatchRequestAsyncResult), ar.GetType()));
                }
                return dcar.DispatchContext;
            }

            void OnCancelComplete(IAsyncResult ar)
            {
                try
                {
                    _dispatchContext.ResponseMessage = _dispatchContext.SecurityTokenService.EndCancel(ar);
                    Complete(false);
                }
                catch (Exception e)
                {
                    System.ServiceModel.DiagnosticUtility.TraceHandledException(e, TraceEventType.Error);

                    if (Fx.IsFatal(e)) throw;
                    Complete(false, e);
                }
            }

            void OnIssueComplete(IAsyncResult ar)
            {
                try
                {
                    _dispatchContext.ResponseMessage = _dispatchContext.SecurityTokenService.EndIssue(ar);
                    Complete(false);
                }
                catch (Exception e)
                {
                    System.ServiceModel.DiagnosticUtility.TraceHandledException(e, TraceEventType.Error);

                    if (Fx.IsFatal(e)) throw;
                    Complete(false, e);
                }
            }

            void OnRenewComplete(IAsyncResult ar)
            {
                try
                {
                    _dispatchContext.ResponseMessage = _dispatchContext.SecurityTokenService.EndRenew(ar);
                    Complete(false);
                }
                catch (Exception e)
                {
                    System.ServiceModel.DiagnosticUtility.TraceHandledException(e, TraceEventType.Error);

                    if (Fx.IsFatal(e)) throw;
                    Complete(false, e);
                }
            }

            void OnValidateComplete(IAsyncResult ar)
            {
                try
                {
                    _dispatchContext.ResponseMessage = _dispatchContext.SecurityTokenService.EndValidate(ar);
                    Complete(false);
                }
                catch (Exception e)
                {
                    System.ServiceModel.DiagnosticUtility.TraceHandledException(e, TraceEventType.Error);

                    if (Fx.IsFatal(e)) throw;
                    Complete(false, e);
                }
            }

        }

        #region IContractBehavior Members

        /// <summary>
        /// Configures any binding elements to support the contract behavior.
        /// </summary>
        /// <remarks>
        /// Inherited from IContractBehavior
        /// </remarks>
        public void AddBindingParameters(ContractDescription contractDescription, ServiceEndpoint endpoint, BindingParameterCollection bindingParameters)
        {
            return;
        }

        /// <summary>
        /// Implements a modification or extension of the client across a contract.
        /// </summary>
        /// <remarks>
        /// Inherited from IContractBehavior
        /// </remarks>
        public void ApplyClientBehavior(ContractDescription contractDescription, ServiceEndpoint endpoint, System.ServiceModel.Dispatcher.ClientRuntime clientRuntime)
        {
            return;
        }

        /// <summary>
        /// Implements a modification or extension of the client across a contract.
        /// </summary>
        /// <remarks>
        /// Inherited from IContractBehavior
        /// </remarks>
        public void ApplyDispatchBehavior(ContractDescription contractDescription, ServiceEndpoint endpoint, System.ServiceModel.Dispatcher.DispatchRuntime dispatchRuntime)
        {
            return;
        }

        /// <summary>
        /// Implement to confirm that the contract and endpoint can support the contract
        /// behavior.
        /// </summary>
        /// <remarks>
        /// Inherited from IContractBehavior
        /// </remarks>
        public void Validate(ContractDescription contractDescription, ServiceEndpoint endpoint)
        {
            return;
        }

        #endregion

        #region IWsdlExportExtension Members

        /// <summary>
        /// Implementation for IWsdlExportExtension.ExportContract. The default implementation 
        /// does nothing. Can be overriden in the derived class for specific behavior.
        /// </summary>
        /// <param name="exporter">The WsdlExporter that exports the contract information.</param>
        /// <param name="context">Provides mappings from exported WSDL elements to the contract description.</param>
        public virtual void ExportContract(WsdlExporter exporter, WsdlContractConversionContext context)
        {
            return;
        }

        /// <summary>
        /// Implements IWsdlExportExtensions.ExportEndpoint. The default implementation does the following,
        /// For every Trust contract found,
        /// 1. It includes the appropriate trust namespace in the WSDL.
        /// 2. Imports the appropriate Trust schema and all dependent schemas.
        /// 3. Fixes the Messages of each operation to it appropriate WS-Trust equivalent.
        ///     Trust Contract exposed by the Framework takes a System.ServiceModel.Channels.Message in and 
        ///     returns a System.ServiceModel.Channels.Message out. But Trust messages expects and RST and 
        ///     returns an RSTR/RSTRC. This method fixes the message names with the appropriate WS-Trust
        ///     messages.
        /// </summary>
        /// <param name="exporter">The WsdlExporter that exports the contract information.</param>
        /// <param name="context">Provides mappings from exported WSDL elements to the endpoint description.</param>
        /// <exception cref="ArgumentNullException">The input argument 'exporter' or 'context' is null.</exception>
        public virtual void ExportEndpoint(WsdlExporter exporter, WsdlEndpointConversionContext context)
        {
            if (exporter == null)
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("exporter");
            }

            if (context == null)
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("context");
            }

            if (context.WsdlPort == null)
            {
                throw DiagnosticUtility.ThrowHelperInvalidOperation(SR.GetString(SR.ID3146));
            }

            if (context.WsdlPort.Service == null)
            {
                throw DiagnosticUtility.ThrowHelperInvalidOperation(SR.GetString(SR.ID3147));
            }

            if (context.WsdlPort.Service.ServiceDescription == null)
            {
                throw DiagnosticUtility.ThrowHelperInvalidOperation(SR.GetString(SR.ID3148));
            }

            System.Web.Services.Description.ServiceDescription serviceDescription = context.WsdlPort.Service.ServiceDescription;

            // Iterate throught the Ports and for each of our contracts fix the input and output messages 
            // of the contract and import the required schemas.
            foreach (PortType portType in serviceDescription.PortTypes)
            {
                if (StringComparer.Ordinal.Equals(portType.Name, WSTrustServiceContractConstants.Contracts.IWSTrustFeb2005Sync))
                {
                    IncludeNamespace(context, WSTrustFeb2005Constants.Prefix, WSTrustFeb2005Constants.NamespaceURI);
                    ImportSchema(exporter, context, WSTrustFeb2005Constants.NamespaceURI);

                    FixMessageElement(
                        serviceDescription,
                        portType,
                        context,
                        WSTrustServiceContractConstants.Operations.TrustFeb2005Cancel,
                        new XmlQualifiedName(
                            WSTrustFeb2005Constants.ElementNames.RequestSecurityToken,
                            WSTrustFeb2005Constants.NamespaceURI),
                        new XmlQualifiedName(WSTrustFeb2005Constants.ElementNames.RequestSecurityTokenResponse,
                            WSTrustFeb2005Constants.NamespaceURI));

                    FixMessageElement(
                        serviceDescription,
                        portType,
                        context,
                        WSTrustServiceContractConstants.Operations.TrustFeb2005Issue,
                        new XmlQualifiedName(
                            WSTrustFeb2005Constants.ElementNames.RequestSecurityToken,
                            WSTrustFeb2005Constants.NamespaceURI),
                        new XmlQualifiedName(
                            WSTrustFeb2005Constants.ElementNames.RequestSecurityTokenResponse,
                            WSTrustFeb2005Constants.NamespaceURI));

                    FixMessageElement(
                        serviceDescription,
                        portType,
                        context,
                        WSTrustServiceContractConstants.Operations.TrustFeb2005Renew,
                        new XmlQualifiedName(
                            WSTrustFeb2005Constants.ElementNames.RequestSecurityToken,
                            WSTrustFeb2005Constants.NamespaceURI),
                        new XmlQualifiedName(
                            WSTrustFeb2005Constants.ElementNames.RequestSecurityTokenResponse,
                            WSTrustFeb2005Constants.NamespaceURI));

                    FixMessageElement(
                        serviceDescription,
                        portType,
                        context,
                        WSTrustServiceContractConstants.Operations.TrustFeb2005Validate,
                        new XmlQualifiedName(
                            WSTrustFeb2005Constants.ElementNames.RequestSecurityToken,
                            WSTrustFeb2005Constants.NamespaceURI),
                        new XmlQualifiedName(
                            WSTrustFeb2005Constants.ElementNames.RequestSecurityTokenResponse,
                            WSTrustFeb2005Constants.NamespaceURI));
                }
                else if (StringComparer.OrdinalIgnoreCase.Equals(portType.Name, WSTrustServiceContractConstants.Contracts.IWSTrust13Sync))
                {
                    IncludeNamespace(context, WSTrust13Constants.Prefix, WSTrust13Constants.NamespaceURI);
                    ImportSchema(exporter, context, WSTrust13Constants.NamespaceURI);

                    FixMessageElement(
                        serviceDescription,
                        portType,
                        context,
                        WSTrustServiceContractConstants.Operations.Trust13Cancel,
                        new XmlQualifiedName(
                            WSTrust13Constants.ElementNames.RequestSecurityToken,
                            WSTrust13Constants.NamespaceURI),
                        new XmlQualifiedName(
                            WSTrust13Constants.ElementNames.RequestSecurityTokenResponseCollection,
                            WSTrust13Constants.NamespaceURI));

                    FixMessageElement(
                        serviceDescription,
                        portType,
                        context,
                        WSTrustServiceContractConstants.Operations.Trust13Issue,
                        new XmlQualifiedName(
                            WSTrust13Constants.ElementNames.RequestSecurityToken,
                            WSTrust13Constants.NamespaceURI),
                        new XmlQualifiedName(
                            WSTrust13Constants.ElementNames.RequestSecurityTokenResponseCollection,
                            WSTrust13Constants.NamespaceURI));

                    FixMessageElement(
                        serviceDescription,
                        portType,
                        context,
                        WSTrustServiceContractConstants.Operations.Trust13Renew,
                        new XmlQualifiedName(
                            WSTrust13Constants.ElementNames.RequestSecurityToken,
                            WSTrust13Constants.NamespaceURI),
                        new XmlQualifiedName(
                            WSTrust13Constants.ElementNames.RequestSecurityTokenResponseCollection,
                            WSTrust13Constants.NamespaceURI));

                    FixMessageElement(
                        serviceDescription,
                        portType,
                        context,
                        WSTrustServiceContractConstants.Operations.Trust13Validate,
                        new XmlQualifiedName(
                            WSTrust13Constants.ElementNames.RequestSecurityToken,
                            WSTrust13Constants.NamespaceURI),
                        new XmlQualifiedName(
                            WSTrust13Constants.ElementNames.RequestSecurityTokenResponseCollection,
                            WSTrust13Constants.NamespaceURI));
                }
                else if (StringComparer.OrdinalIgnoreCase.Equals(portType.Name, WSTrustServiceContractConstants.Contracts.IWSTrustFeb2005Async))
                {
                    IncludeNamespace(context, WSTrustFeb2005Constants.Prefix, WSTrustFeb2005Constants.NamespaceURI);
                    ImportSchema(exporter, context, WSTrustFeb2005Constants.NamespaceURI);

                    FixMessageElement(
                        serviceDescription,
                        portType,
                        context,
                        WSTrustServiceContractConstants.Operations.TrustFeb2005CancelAsync,
                        new XmlQualifiedName(
                            WSTrustFeb2005Constants.ElementNames.RequestSecurityToken,
                            WSTrustFeb2005Constants.NamespaceURI),
                        new XmlQualifiedName(
                            WSTrustFeb2005Constants.ElementNames.RequestSecurityTokenResponse,
                            WSTrustFeb2005Constants.NamespaceURI));

                    FixMessageElement(
                        serviceDescription,
                        portType,
                        context,
                        WSTrustServiceContractConstants.Operations.TrustFeb2005IssueAsync,
                        new XmlQualifiedName(
                            WSTrustFeb2005Constants.ElementNames.RequestSecurityToken,
                            WSTrustFeb2005Constants.NamespaceURI),
                        new XmlQualifiedName(
                            WSTrustFeb2005Constants.ElementNames.RequestSecurityTokenResponse,
                            WSTrustFeb2005Constants.NamespaceURI));

                    FixMessageElement(
                        serviceDescription,
                        portType,
                        context,
                        WSTrustServiceContractConstants.Operations.TrustFeb2005RenewAsync,
                        new XmlQualifiedName(
                            WSTrustFeb2005Constants.ElementNames.RequestSecurityToken,
                            WSTrustFeb2005Constants.NamespaceURI),
                        new XmlQualifiedName(
                            WSTrustFeb2005Constants.ElementNames.RequestSecurityTokenResponse,
                            WSTrustFeb2005Constants.NamespaceURI));

                    FixMessageElement(
                        serviceDescription,
                        portType,
                        context,
                        WSTrustServiceContractConstants.Operations.TrustFeb2005ValidateAsync,
                        new XmlQualifiedName(
                            WSTrustFeb2005Constants.ElementNames.RequestSecurityToken,
                            WSTrustFeb2005Constants.NamespaceURI),
                        new XmlQualifiedName(
                            WSTrustFeb2005Constants.ElementNames.RequestSecurityTokenResponse,
                            WSTrustFeb2005Constants.NamespaceURI));
                }
                else if (StringComparer.OrdinalIgnoreCase.Equals(portType.Name, WSTrustServiceContractConstants.Contracts.IWSTrust13Async))
                {
                    IncludeNamespace(context, WSTrust13Constants.Prefix, WSTrust13Constants.NamespaceURI);
                    ImportSchema(exporter, context, WSTrust13Constants.NamespaceURI);

                    FixMessageElement(
                        serviceDescription,
                        portType,
                        context,
                        WSTrustServiceContractConstants.Operations.Trust13CancelAsync,
                        new XmlQualifiedName(
                            WSTrust13Constants.ElementNames.RequestSecurityToken,
                            WSTrust13Constants.NamespaceURI),
                        new XmlQualifiedName(
                            WSTrust13Constants.ElementNames.RequestSecurityTokenResponseCollection,
                            WSTrust13Constants.NamespaceURI));

                    FixMessageElement(
                        serviceDescription,
                        portType,
                        context,
                        WSTrustServiceContractConstants.Operations.Trust13IssueAsync,
                        new XmlQualifiedName(
                            WSTrust13Constants.ElementNames.RequestSecurityToken,
                            WSTrust13Constants.NamespaceURI),
                        new XmlQualifiedName(
                            WSTrust13Constants.ElementNames.RequestSecurityTokenResponseCollection,
                            WSTrust13Constants.NamespaceURI));

                    FixMessageElement(
                        serviceDescription,
                        portType,
                        context,
                        WSTrustServiceContractConstants.Operations.Trust13RenewAsync,
                        new XmlQualifiedName(
                            WSTrust13Constants.ElementNames.RequestSecurityToken,
                            WSTrust13Constants.NamespaceURI),
                        new XmlQualifiedName(
                            WSTrust13Constants.ElementNames.RequestSecurityTokenResponseCollection,
                            WSTrust13Constants.NamespaceURI));

                    FixMessageElement(
                        serviceDescription,
                        portType,
                        context,
                        WSTrustServiceContractConstants.Operations.Trust13ValidateAsync,
                        new XmlQualifiedName(
                            WSTrust13Constants.ElementNames.RequestSecurityToken,
                            WSTrust13Constants.NamespaceURI),
                        new XmlQualifiedName(
                            WSTrust13Constants.ElementNames.RequestSecurityTokenResponseCollection,
                            WSTrust13Constants.NamespaceURI));
                }
            }
        }

        #endregion

        /// <summary>
        /// Adds the required WS-Trust namespaces to the WSDL if not already present.
        /// </summary>
        /// <param name="context">Provides mappings from exported WSDL elements to the endpoint description.</param>
        /// <param name="prefix">The prefix of the namespace to be included.</param>
        /// <param name="ns">Namespace to be included.</param>
        /// <exception cref="ArgumentException">Either 'prefix' or 'ns' is null or empty string.</exception>
        /// <exception cref="ArgumentNullException">The 'context' parameter is null.</exception>
        protected virtual void IncludeNamespace(WsdlEndpointConversionContext context, string prefix, string ns)
        {
            if (context == null)
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("context");
            }

            if (String.IsNullOrEmpty(prefix))
            {
                throw DiagnosticUtility.ThrowHelperArgumentNullOrEmptyString("prefix");
            }

            if (String.IsNullOrEmpty(ns))
            {
                throw DiagnosticUtility.ThrowHelperArgumentNullOrEmptyString("ns");
            }

            bool alreadyPresent = false;
            XmlQualifiedName[] namespaces = context.WsdlBinding.ServiceDescription.Namespaces.ToArray();
            for (int i = 0; i < namespaces.Length; ++i)
            {
                if (StringComparer.Ordinal.Equals(namespaces[i].Namespace, ns))
                {
                    alreadyPresent = true;
                    break;
                }
            }

            if (!alreadyPresent)
            {
                context.WsdlBinding.ServiceDescription.Namespaces.Add(prefix, ns);
            }
        }

        /// <summary>
        /// Imports all the required schema if not already present in the WSDL.
        /// The default implementation will import the following schemas,
        ///     (a) WS-Trust Feb 2005.
        ///     (b) WS-Trust 1.3
        /// Derived classes can override this method to import other schemas.
        /// </summary>
        /// <param name="exporter">The WsdlExporter that exports the contract information.</param>
        /// <param name="context">Provides mappings from exported WSDL elements to the endpoint description.</param>
        /// <param name="ns">The current WS-Trust namespace for which the schemas are imported.</param>
        /// <exception cref="ArgumentNullException">The parameter 'exporter' or 'context' is null.</exception>
        /// <exception cref="ArgumentException">The parameter 'ns' is either null or String.Empty.</exception>
        /// <exception cref="InvalidOperationException">The namespace 'ns' is not a recognized WS-Trust namespace.</exception>
        protected virtual void ImportSchema(WsdlExporter exporter, WsdlEndpointConversionContext context, string ns)
        {
            if (exporter == null)
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("exporter");
            }

            if (context == null)
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("context");
            }

            if (String.IsNullOrEmpty(ns))
            {
                throw DiagnosticUtility.ThrowHelperArgumentNullOrEmptyString("ns");
            }

            foreach (XmlSchema xmlSchema in context.WsdlPort.Service.ServiceDescription.Types.Schemas)
            {
                foreach (XmlSchemaObject include in xmlSchema.Includes)
                {
                    XmlSchemaImport schemaImport = include as XmlSchemaImport;
                    if ((schemaImport != null) && StringComparer.Ordinal.Equals(schemaImport.Namespace, ns))
                    {
                        // The schema is already imported. Just return.
                        return;
                    }
                }
            }

            XmlSchema schema = GetXmlSchema(exporter, ns);
            if (schema == null)
            {
                throw DiagnosticUtility.ThrowHelperInvalidOperation(SR.GetString(SR.ID3004, ns));
            }
            XmlSchema importedSchema = null;
            if (context.WsdlPort.Service.ServiceDescription.Types.Schemas.Count == 0)
            {
                importedSchema = new XmlSchema();
                context.WsdlPort.Service.ServiceDescription.Types.Schemas.Add(importedSchema);
            }
            else
            {
                importedSchema = context.WsdlPort.Service.ServiceDescription.Types.Schemas[0];
            }

            XmlSchemaImport import = new XmlSchemaImport();
            import.Namespace = ns;
            exporter.GeneratedXmlSchemas.Add(schema);
            importedSchema.Includes.Add(import);
        }


        /// <summary>
        /// For a given namespace this method looks up the WsdlExporter to see if an XmlSchema has been cached and returns that. 
        /// Else it loads the schema for that given namespace and returns the loaded XmlSchema.
        /// </summary>
        /// <param name="exporter">The WsdlExporter that exports the contract information.</param>
        /// <param name="ns">The namespace for which the schema is to be obtained.</param>
        /// <exception cref="ArgumentNullException">The parameter 'exporter' is null.</exception>
        /// <exception cref="ArgumentException">The parameter 'ns' is either null or String.Empty.</exception>
        /// <exception cref="InvalidOperationException">The namespace 'ns' is not a recognized WS-Trust namespace.</exception>
        static XmlSchema GetXmlSchema(WsdlExporter exporter, string ns)
        {
            if (exporter == null)
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("exporter");
            }

            if (String.IsNullOrEmpty(ns))
            {
                throw DiagnosticUtility.ThrowHelperArgumentNullOrEmptyString("ns");
            }

            ICollection schemas = exporter.GeneratedXmlSchemas.Schemas(ns);
            if ((schemas != null) && (schemas.Count > 0))
            {
                foreach (XmlSchema s in schemas)
                {
                    return s;
                }
            }

            string xmlSchema = null;
            switch (ns)
            {
                case WSTrustFeb2005Constants.NamespaceURI:
                    xmlSchema = WSTrustFeb2005Constants.Schema;
                    break;
                case WSTrust13Constants.NamespaceURI:
                    xmlSchema = WSTrust13Constants.Schema;
                    break;
                default:
                    throw DiagnosticUtility.ThrowHelperInvalidOperation(SR.GetString(SR.ID5004, ns));
            }

            return XmlSchema.Read(new StringReader(xmlSchema), null);
        }

        /// <summary>
        /// During WSDL generation, the method fixes a given operation message element to refer to the 
        /// RST and RSTR elements of the appropriate WS-Trust version. 
        /// </summary>
        /// <param name="serviceDescription">The ServiceDescription that has the current state of the exported 
        /// WSDL.</param>
        /// <param name="portType">The WSDL PortType whose messages are to be fixed.</param>
        /// <param name="context">Provides mappings from exported WSDL elements to the endpoint description.</param>
        /// <param name="operationName">The operation name inside the PortType.</param>
        /// <param name="inputMessageElement">The XmlQualifiedName of the input message element.</param>
        /// <param name="outputMessageElement">The XmlQualifiedName of the output message element.</param>
        /// <exception cref="ArgumentNullException">The parameter 'serviceDescription', 'portType', 'inputMessageType'
        /// or 'outputMessageType' is null.</exception>
        /// <exception cref="ArgumentException">The parameter 'operationName' is null or Empty.</exception>
        /// <remarks>
        /// Trust Contract exposed by the Framework takes a System.ServiceModel.Channels.Message in and 
        /// returns a System.ServiceModel.Channels.Message out. But Trust messages expects and RST and 
        /// returns an RSTR/RSTRC. This method fixes the message elements with the appropriate WS-Trust
        /// messages specified by the XmlQualified names 'inputMessageElement' and 'outputMessageElement'.
        /// </remarks>
        protected virtual void FixMessageElement(
                                System.Web.Services.Description.ServiceDescription serviceDescription,
                                PortType portType,
                                WsdlEndpointConversionContext context,
                                string operationName,
                                XmlQualifiedName inputMessageElement,
                                XmlQualifiedName outputMessageElement)
        {
            if (serviceDescription == null)
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("serviceDescription");
            }

            if (portType == null)
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("portType");
            }

            if (context == null)
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("context");
            }

            if (String.IsNullOrEmpty(operationName))
            {
                throw DiagnosticUtility.ThrowHelperArgumentNullOrEmptyString("operationName");
            }

            if (inputMessageElement == null)
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("inputMessageElement");
            }

            if (outputMessageElement == null)
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("outputMessageElement");
            }

            Operation operation = null;
            System.Web.Services.Description.Message inputMessage = null;
            System.Web.Services.Description.Message outputMessage = null;

            foreach (Operation op in portType.Operations)
            {
                if (StringComparer.Ordinal.Equals(op.Name, operationName))
                {
                    operation = op;

                    // Find the correspinding message in the messages collection.
                    foreach (System.Web.Services.Description.Message message in serviceDescription.Messages)
                    {
                        if (StringComparer.Ordinal.Equals(message.Name, op.Messages.Input.Message.Name))
                        {
                            if (message.Parts.Count != 1)
                            {
                                throw DiagnosticUtility.ThrowHelperInvalidOperation(
                                    SR.GetString(SR.ID3144, portType.Name, op.Name, message.Name, message.Parts.Count));
                            }
                            inputMessage = message;
                        }
                        else if (StringComparer.Ordinal.Equals(message.Name, op.Messages.Output.Message.Name))
                        {
                            if (message.Parts.Count != 1)
                            {
                                throw DiagnosticUtility.ThrowHelperInvalidOperation(
                                    SR.GetString(SR.ID3144, portType.Name, op.Name, message.Name, message.Parts.Count));
                            }
                            outputMessage = message;
                        }

                        if ((inputMessage != null) && (outputMessage != null))
                        {
                            break;
                        }
                    }
                }

                if (operation != null)
                {
                    break;
                }
            }

            if (operation == null)
            {
                // This operation is missing. This might be due to another Behavior that has modified the WSDL as
                // well. Ignore this and return.
                return;
            }

            if (inputMessage == null)
            {
                throw DiagnosticUtility.ThrowHelperInvalidOperation(
                    SR.GetString(SR.ID3149, portType.Name, portType.Namespaces, operationName));
            }
            if (outputMessage == null)
            {
                throw DiagnosticUtility.ThrowHelperInvalidOperation(
                    SR.GetString(SR.ID3150, portType.Name, portType.Namespaces, operationName));
            }

            inputMessage.Parts[0].Element = inputMessageElement;
            outputMessage.Parts[0].Element = outputMessageElement;
            inputMessage.Parts[0].Type = null;
            outputMessage.Parts[0].Type = null;
        }
    }
}