File: ChangeLog

package info (click to toggle)
mono 2.10.8.1-8%2Bdeb7u1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 371,440 kB
  • sloc: cs: 2,625,726; xml: 1,867,358; ansic: 394,850; sh: 13,823; makefile: 9,937; perl: 2,231; asm: 716; python: 473; cpp: 376; sql: 95; sed: 16
file content (1741 lines) | stat: -rw-r--r-- 59,262 bytes parent folder | download
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
2011-08-24  Atsushi Eno  <atsushi@ximian.com>

	ReturnValue in MessageDescription was missing when there was
	MessageContract.

2011-08-03  Atsushi Eno  <atsushieno@veritas-vos-liberabit.com>

	Fix build, merge some missing changes to MessagePartDescription.

2011-08-02  Atsushi Eno  <atsushi@ximian.com>

	part of fix bug #41. MessageParameterAttribute is considered for
	return value.

	Conflicts:

	mcs/class/System.ServiceModel/System.ServiceModel.Description/MessagePartDescription.cs

2011-07-27  Atsushi Eno  <atsushi@ximian.com>

	Fix wsdl import wrt element qname (!= type name).

2011-06-14  Atsushi Eno  <atsushi@ximian.com>

	Flush some ongoing changes for XmlSerializer support in svcutil.

2011-05-27  Atsushi Eno  <atsushi@ximian.com>

	Fill type info in MessagePartDescription from XmlSerializer-based
	wsdl importer.

	It still needs some fixes to import message elements.

2011-05-14  Atsushi Eno  <atsushi@ximian.com>

	Implement XmlSerializerMessageContractImporter, round 2.

	This time it is XmlSerializer-based, got it somewhat working.

2011-05-13  Atsushi Eno  <atsushi@ximian.com>

	Implement WsdlContractConversionContext, and ignore message
	importer for now.

2011-05-11  Atsushi Eno  <atsushi@ximian.com>

	Revert previous XmlSerializerMessageContractImporter
	implementation.

	XsdDataContractImporter is not XmlSerializer-based, while this
	class is.

2011-05-10  Atsushi Eno  <atsushi@ximian.com>

	Fix common issue in MetadataSet - call MoveToContent() while
	iterating nodes.

2011-05-10  Atsushi Eno  <atsushi@ximian.com>

	Add new MetadataSetTest and fix couple of minor issues.

2011-05-09  Atsushi Eno  <atsushi@ximian.com>

	ongoing XmlSerializerMessageContractImporter work.

	It is part of bugfix #670945.

2011-04-14  Atsushi Eno  <atsushi@ximian.com>

	ServiceKnownTypeAttribute.MethodName was used way different to
	lookup method.

2011-04-08  Atsushi Eno  <atsushi@ximian.com>

	Add XmlSerializerFormatAttribute support in mobile profiles.

	Unlike moonlight, XmlSerializer is in the framework lib (sys.xml),
	so we don't have to split them out to Sys.Xml.Serialization.dll.

2011-04-07  Atsushi Eno  <atsushi@ximian.com>

	Fix moonlight_raw build in Sys.Xml.Serialization.dll (NIE!)

2011-04-07  Atsushi Eno  <atsushi@ximian.com>

	DataContractSerializerOperationBehavior is done too. Fix
	moonlight_raw build.

2011-04-07  Atsushi Eno  <atsushi@ximian.com>

	Some XmlSerializerFormatAttribute and
	XmlSerializerOperationBehavior refactoring.

2011-04-01  Atsushi Eno  <atsushi@ximian.com>

	Less !NET_2_1/!MOONLIGHT to improve SL4 WCF compatibility.

2011-04-01  Atsushi Eno  <atsushi@ximian.com>

	Implement ConfigurationName support for ChannelFactory.

	It is required for MoonlightDrtViewer bugfixing.

2011-04-01  Peter Gerbrandt  <pg@viadux.de>

	Fix contract description for contracts with deep inheritance
	hierarchy.

2011-03-17  Atsushi Eno  <atsushi@ximian.com>

	Fix build; remove extra !NET_2_1.

2011-03-16  Atsushi Eno  <atsushi@ximian.com>

	Enable more behavior interface member in NET_2_1.

2011-03-16  Atsushi Eno  <atsushi@ximian.com>

	Enable more behaviors use in NET_2_1 land, toward WebHttpBinding.

2011-03-16  Atsushi Eno  <atsushi@ximian.com>

	Add endpoint behavior support in NET_2_1, which involved not a few
	additions.

2011-03-07  Peter Gerbrandt  <pg@viadux.de>

	Support for the same interface as service contract and as callback
	contract.

2011-02-17  Atsushi Eno  <atsushi@ximian.com>

	Only use non-null values in ServiceAuthorizationBehavior.

2011-02-16  Atsushi Eno  <atsushi@ximian.com>

	Operation interface methods also have ServiceKnownType attributes.

2011-02-15  Atsushi Eno  <atsushi@ximian.com>

	Async MessageContract pattern needs more sophisticated contract
	validity check.

	It totally killed discovery.

2011-02-15  Atsushi Eno  <atsushi@ximian.com>

	ServiceDescription.cs does not exist in moonlight, so move
	TypeExtension.

2011-02-15  Atsushi Eno  <atsushi@ximian.com>

	MessageHeaderDescription were not filled in message contract.
	Reject wrong contracts.

2011-02-03  Atsushi Eno  <atsushi@ximian.com>

	Now operations are collected per corresponding
	ContractDescription.

	This fixes naming of MessageDescription Action URI from its type.

2011-02-02  Atsushi Eno  <atsushi@ximian.com>

	Implement GetInheritedContracts(), towards bugfix #668089.

2010-11-10  Marek Habersack  <grendel@twistedcode.net>

	[wcf] .NET allows for service contract methods to be decorated
	only by Web{Get,Invoke}Attribute

	Usually WCF requires that each service method is marked with the
	OperationContract attribute with the exception of methods
	decorated with the Web{Get,Invoke}Attribute attributes which are
	defined in System.ServiceModel.Web. This patch adds a simple way
	to extend the ContractDescriptionGenerator in order to provide
	this functionality without circular dependency of
	System.ServiceModel on System.ServiceModel.Web. Several extenders
	can be registered with the description generator and they will be
	invoked in the registration order until any of them returns
	'true'. Extenders are passed a reference to the OperationContract
	attribute with which the current method is decorated - if the
	reference is null, the extender should create a default instance
	of the attribute so that the description generator considers the
	method as one to be included in the contract description.

2010-10-22  Atsushi Eno  <atsushi@ximian.com>

	It should not have to import all schema elements, but those only
	used by contracts.

2010-10-22  Atsushi Eno  <atsushi@ximian.com>

	Small refactoring on enumerating message schema element contents.

2010-10-21  Atsushi Eno  <atsushi@ximian.com>

	OnEndXxx() methods should not try to let void return to a local
	variable.

2010-10-21  Atsushi Eno  <atsushi@ximian.com>

	Void event should not have Result of type void.

2010-10-21  Atsushi Eno  <atsushi@ximian.com>

	Make generated type names unique.

2010-10-21  Atsushi Eno  <atsushi@ximian.com>

	Add #if NET_2_1 and SupportFaults member for Silverlight SlSvcUtil
	proxy.

2010-10-08  Atsushi Eno  <atsushi@ximian.com>

	Do not reject contract from the same method, could happen by a
	type with multiple service contracts within the typie hierarchy.

	For details, see:
	http://lists.ximian.com/pipermail/mono-devel-list/2010-September/035940.html

2010-09-30  Atsushi Eno  <atsushi@ximian.com>

	Add DataContractResolver stuff (dummy), and fix Id reference from
	inside the referenced object.

2010-09-16  Atsushi Eno  <atsushi@ximian.com>

	Contract is settable in 4.0.

2010-09-13  Atsushi Eno  <atsushi@ximian.com>

	implemented large parts of WCF standard endpoints and
	configuration support.

2010-09-10  Atsushi Eno  <atsushi@ximian.com>

	Remove USE_DATA_CONTRACT_IMPORTER conditional compilation flag.

2010-09-09  Atsushi Eno  <atsushi@ximian.com>

	It should not fail to generate client proxy generation for having
	two "IsRequest=false" messages (it is set only in
	ContractDescriptionGenerator).

2010-09-03  Atsushi Eno  <atsushi@ximian.com>

	Add some argument check. RemoteAddress could be null for callback
	client runtime channel.

2010-08-27  Atsushi Eno  <atsushi@ximian.com>

	Add IsSystemEndpoint property and treat system endpoints as
	non-service.

2010-08-25  Atsushi Eno  <atsushi@ximian.com>

	Avoid NRE when ServiceEndpoint neither have Binding nor Contract.

2010-08-13  Atsushi Eno  <atsushi@ximian.com>

	ChannelDispatcherBase could be non-ChannelDispatcher. In WCF
	Discovery such type actually seems to exist, so it's not
	theoretical anymore.

2010-07-28  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceDebugBehavior.cs, ServiceMetadataExtension.cs :
	  remove invalid comments.

2010-07-28  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceDescription.cs : fill Name and Namespace. Remove extra code.

2010-07-19  Sebastien Pouliot  <sebastien@ximian.com>

	* ClientCredentials.cs: Fix NET_2_1 builds

2010-07-15  Atsushi Enomoto  <atsushi@ximian.com>

	* ClientCredentials.cs : implement Clone() here too.

2010-07-15  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceCredentials.cs : implement Clone().

2010-06-23  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceMetadataExtension.cs : Reduced not a few lines of code,
	  now that we know wsdl and help do not have to be differentiated,
	  this extension support can be a lot simpler.

2010-06-23  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceMetadataExtension.cs : add Instance field for simplification.

2010-06-21  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceThrottlingBehavior.cs : pass channel dispatcher for .ctor.

2010-06-18  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceMetadataExtension.cs : use simple ChannelDispatcher.IsMex field.

2010-06-17  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceMetadataExtension.cs : overwrite MessageVersion to use None.
	  (The only special case I found for ChannelDispatcher.MessageVersion.)

2010-06-04  Atsushi Enomoto  <atsushi@ximian.com>

	* OperationDescription.cs : add contract origin flags to identify
	  which operation should be used for client operations (and dispatch
	  too in the future).
	* MessageDescription.cs : add IsRequest flag to indicate if it is
	  for request or not.
	* ServiceContractGenerator.cs, ContractDescriptionGenerator.cs :
	  make use of above changes.
	* ContractDescription.cs : don't create extraneous ClientOperations
	  in irrelevant message direction.

2010-06-03  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescriptionGenerator.cs : Now callback contract methods are
	  also reflected into OperationDescription as well as those from non-
	  callback contract. Callback methods have reverse MessageDirection,
	  so adjust them.
	* ContractDescription.cs, ServiceEndpoint.cs, TypedMessageConverter.cs :
	  A bit of renaming / reflect method call changes.

2010-05-28  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescription.cs : fill ClientOperation.Formatter here.
	  (It is hacky, see additional comment.)

2010-04-23  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceMetadataExtension.cs : raise an error if it failed to set
	  mex info. (Make it safer.)

2010-04-23  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceMetadataExtension.cs : reflect DispatcherBuilder change.

2010-04-02  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescriptionGenerator.cs : fill FaultDescription action,
	  name and namespace as expected.

2010-04-02  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescription.cs : fill FaultContractInfos in ClientOperation.

2010-04-02  Atsushi Enomoto  <atsushi@ximian.com>

	* FaultDescription.cs : fill Action.
	* ContractDescriptionGenerator.cs : do not fill Faults from service
	  impl. method. Do this from contract method instead.
	* OperationDescription.cs : remove extra TODOs.

2010-03-24  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceMetadataExtension.cs : compare "wsdl" parameter in case-
	  insensitive manner.

2010-03-19  Atsushi Enomoto  <atsushi@ximian.com>

	* HostedBindingBehavior.cs : remove unused class.

2010-03-17  Atsushi Enomoto  <atsushi@ximian.com>

	* WsdlExporter.cs : allow identical contract while exporting a set
	  of endpoints, while reject identical ones when calling
	  ExportEndpoint() individually.

2010-03-17  Atsushi Enomoto  <atsushi@ximian.com>

	* MetadataExchangeBindings.cs : use WSHttpBinding (it works if other
	  parts gets fixed).

2010-03-17  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceMetadataExtension.cs, WsdlExporter.cs :
	  implement ExportEndpoints() and use it.

2010-03-16  Jb Evain  <jbevain@novell.com>

	* ClientCredentials.cs, ContractDescription.cs,
	IEndpointBehavior.cs: use MOONLIGHT symbol to disambiguate
	MonoTouch and Moonlight code.

2010-03-15  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceEndpointCollection.cs : those overrides are rather to check
	  null arguments, not to skip contract duplicates.

2010-03-12  Atsushi Enomoto  <atsushi@ximian.com>

	* MessageDescription.cs : implement MessageName.

2010-03-11  Atsushi Enomoto  <atsushi@ximian.com>

	* BaseMessagesFormatter.cs : add internal OperationFormatter type
	  for moonlight/silverlight-sdk compatibility. It mostly wraps
	  the existing the return value by BaseMessagesFormatter.Create().
	* DispatchOperation.cs, ClientOperation.cs, EndpointDispatcher.cs:
	  use above new type.

2010-03-11  Atsushi Enomoto  <atsushi@ximian.com>

	* OperationDescription.cs, MessagePartDescription.cs,
	  MessageDescription.cs : add internal moonlight compat stuff.

2010-03-11  Atsushi Enomoto  <atsushi@ximian.com>

	* XmlName.cs : new internal type for moonlight/SL SDK compatibility.

2010-02-23  Atsushi Enomoto  <atsushi@ximian.com>

	* MetadataResolver.cs : fix BeginResolve() overloads and use
	  arguments as expected in Resolve().

2010-02-23  Atsushi Enomoto  <atsushi@ximian.com>

	* MetadataExchangeClient.cs : add missing members and implement some.

2010-02-23  Atsushi Enomoto  <atsushi@ximian.com>

	* WsdlImporter.cs : handle soapAction in operation binding too.
	  Now it successfully generates proxy generation for Twitterlight:
	  http://twitterlight.claritycon.com/TwitterWebService.asmx?WSDL

2010-02-23  Atsushi Enomoto  <atsushi@ximian.com>

	* DataContractSerializerMessageContractImporter.cs :
	  consider schemas in wsdl documents.

2010-02-22  Atsushi Enomoto  <atsushi@ximian.com>

	* MetadataExchangeClient.cs, MetadataExchangeBindings.cs:
	  support https.

2010-02-22  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceContractGenerator.cs : fix duplicate output.

2010-02-19  Atsushi Enomoto  <atsushi@ximian.com>

	* DataContractSerializerMessageContractImporter.cs :
	  Pick correct elements to import. Not wrapper elements but each
	  parameter and return value elements.

2010-02-19  Atsushi Enomoto  <atsushi@ximian.com>

	* DataContractSerializerMessageContractImporter.cs :
	  remove extra parameter passing.

2010-02-19  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceContractGenerator.cs : add missing #ifs.

2010-02-19  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceContractGenerator.cs, MessagePartDescription.cs,
	  DataContractSerializerMessageContractImporter.cs :
	  add alternative implementation to use XsdDataContractImporter
	  instead of XmlSchemaImporter hack.

	  It requires -d:USE_DATA_CONTRACT_IMPORTER and not enabled yet, as
	  it breaks some WSDL imports (such as memorabilia.hardrock.com).

2010-02-11  Atsushi Enomoto  <atsushi@ximian.com>

	* DataContractSerializerMessageContractImporter.cs : handle duration
	  and guid which s.w.svc does not handle. Fix part of bug #579011.

2010-02-09  Atsushi Enomoto  <atsushi@ximian.com>

	* DataContractSerializerMessageContractImporter.cs,
	  ServiceContractGenerator.cs: ArrayOfXxx does not exist in the type
	  definition code. Use Xxx[] directly instead.

2010-02-08  Atsushi Enomoto  <atsushi@ximian.com>

	* MetadataBundle.cs, MetadataSet.cs : rename former to latter.

2010-02-04  Atsushi Enomoto  <atsushi@ximian.com>

	*  ClientCredentials.cs, ContractDescription.cs,
	  IEndpointBehavior.cs, IOperationBehavior.cs : add monotouch support
	  for client behavior.

2010-01-28  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceContractGenerator.cs : when Options.AsynchronousMethods is
	  specified, generate async methods *as well as* sync methods (i.e.
	  not exclusively).

	  In moonlight proxy generator (svcutil -moonlight) mode, sync
	  methods will be removed at svcutil itself.
	  This fix brings sync proxy methods back to monotouch.

2010-01-19  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceAuthorizationBehavior.cs : implement (it does almost
	  nothing though).

2010-01-13  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescriptionGenerator.cs : fill Operation.Faults.

2010-01-08  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescriptionGenerator.cs : fix GetCallbackContract() to
	  correctly retrieve ServiceContractAttribute from the service type,
	  not the callback type. This ended up to get the bug #567672 sample
	  working (but it will break at some stage as it involves some
	  non-implemented classes).

2009-12-18  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceContractGenerator.cs :
	  EventArgs are not nested classes.
	  Result property of EventArgs is not IAsyncResult. It should be
	  pulled from EndXxx() method, not from BeginXxx().

2009-12-18  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceContractGenerator.cs :
	  add support for EventBasedAsynchronousMethods (3.5 SP1 / 2.1).

2009-12-18  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceMetadataExtension.cs : added a couple of FIXME comments.

2009-12-01  Atsushi Enomoto  <atsushi@ximian.com>

	* ClientCredentials.cs : more SL3 changes.

2009-11-25  Atsushi Enomoto  <atsushi@ximian.com>

	* ClientCredentials.cs : it is part of SL3 API, so adjusted for it.

2009-10-22  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceMetadataExtension.cs : channelDispatchers is keyed by URL,
	  so it might have been skipped when the URLs are the same for wsdl
	  and help. So, differentiate flags for mex and help, not to be
	  exclusive. This fixes random-ish EndpointNotFound for WSDLs.

2009-10-22  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceMetadataExtension.cs : A few fixes for no-wsdl case: fix
	  wrong html template, and do not throw NRE for the lack of WsdlUrl.

2009-10-20  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceMetadataExtension.cs : restructure internal channel property
	  so that http channels can cope with it.

2009-10-16  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceMetadataExtension.cs : Handle all predefined mex bindings.
	  Use DispatcherBuilder directly. Add mex listener property to
	  distinguish the listener from http channel listeners later.

2009-10-15  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceMetadataExtension.cs : when serviceDebug and serviceMetadata
	  shares the same URL, both of them must be set, not being skipped.

2009-10-15  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceDebugBehavior.cs, ServiceMetadataBehavior.cs,
	  ServiceMetadataExtension.cs : Now HelpPage is differentiated from
	  wsdl page. The help page now outputs correct URL (for WSDL).

2009-10-15  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceDebugBehavior.cs, ServiceMetadataBehavior.cs,
	  ServiceMetadataExtension.cs : reduce extra args, static isn't
	  required here. Add FIXME comments.

2009-10-15  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceMetadataExtension.cs : before fixing lots of wrong code,
	  add primitive help page support to make sure base_uri is bogus.

2009-10-01  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceContractGenerator.cs : fixed sync client generator that
	  incorrectly exited in the middle of proxy generator.

2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceMetadataExtension.cs : when its url is requested without
	  any parameters, it simply returns the WSDL, not the help page.

2009-09-15  Atsushi Enomoto  <atsushi@ximian.com>

	* WebServiceHelper.cs : remove old code.

2009-09-11  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceMetadataExtension.cs : reflect ServiceHostBase change.

2009-09-11  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceDebugBehavior.cs : help page enabling properties are true
	  by default (fix regressions).

2009-09-06  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescriptionGenerator.cs : default action name is prepended
	  "urn:", and on the other hand do not add extra '/' in such case.

2009-09-06  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescriptionGenerator.cs : end method lookup should be
	  done against the type that defines begin method.

2009-09-01  Atsushi Enomoto  <atsushi@ximian.com>

	* MustUnderstandBehavior.cs : fix build.

2009-09-01  Atsushi Enomoto  <atsushi@ximian.com>

	* ClientCredentials.cs, ClientViaBehavior.cs,
	  MustUnderstandBehavior.cs : implement most of the methods.

2009-08-21  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceMetadataExtension.cs:
	  some dependent changes to ServiceHostBase.

2009-08-11  Atsushi Enomoto  <atsushi@ximian.com>

	* DataContractSerializerOperationBehavior.cs : add missing members.

2009-08-11  Atsushi Enomoto  <atsushi@ximian.com>

	* MetadataExchangeClient.cs : add missing async methods.

2009-08-11  Atsushi Enomoto  <atsushi@ximian.com>

	* MetadataResolver.cs : added remaining methods.
	* MetadataExchangeClient.cs : a bit of required changes for above.

2009-08-11  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceDebugBehavior.cs, ServiceMetadataBehavior.cs :
	  add Binding properties. Properties are now auto.
	* ServiceMetadataExtension.cs : take Binding too to build dispatcher.

2009-08-10  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceContractGenerator.cs : removed ChannelBase proxy stuff,
	  which will be moved to svcutil source.
	  The targets for extension should be the interface, not the client
	  class.

2009-08-10  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceContractGenerator.cs,
	  OperationContractGenerationContext.cs : support extensions i.e.
	  IServiceContractGenerationExtension and IOperation...(ditto) .

2009-08-10  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceContractGenerator.cs : first step to add moonlight-based
	  client proxy generator (it is not supported in 3.5. needs to be
	  enabled by some hook, such as reflection-based hack).

2009-08-07  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescription.cs : wcf & 2.1 is specially annoying land :(

2009-08-07  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescriptionGenerator.cs : add new contract getter to
	  create callback contract type (which does not demand
	  ServiceContractAttribute).

2009-08-07  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceEndpoint.cs, ContractDescription.cs : moved client runtime
	  creator from former to latter.

2009-08-06  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceEndpoint.cs : follow ClientRuntime change.

2009-07-31  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceEndpoint.cs : ListenUri defaults to Address.Uri.

2009-07-02  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescriptionGenerator.cs : actually it had to fill all of
	  the interface methods (and implementation methods).

2009-07-02  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescriptionGenerator.cs : do not reject derived service
	  contract from another service contract type.

2009-06-10  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceThrottlingBehavior.cs : implement Validate() (nothing to do
	  here).

2009-06-09  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceThrottlingBehavior.cs : implement.

2009-05-28  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescriptionGenerator.cs : fill ProtectionLevel by
	  OperationContractAttribute.

2009-05-13  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceCredentials.cs : IServiceBehavior.Validate() should not
	  throw NIE. No check so far.

2009-03-06  Atsushi Enomoto  <atsushi@ximian.com>

	* MessageBodyDescription.cs, MessagePartDescription.cs,
	  OperationDescription.cs, MessageDescriptionCollection.cs:
	  clean up extra todos.

2009-03-05  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescriptionGenerator.cs : fill service known types.

2009-02-26  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceContractGenerator.cs : ClientBase<> argument type must be
	  class (the class itself is to be fixed soon as well).

2009-02-20  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceEndpoint.cs : moved CreateRuntime() from ChannelFactory<T>.

2009-02-12  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescriptionGenerator.cs : do not write body wrapper element
	  when IsWrapped = false.

2009-02-04  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceContractGenerator.cs : add async operation support (might
	  be hacky under some condition).

2009-01-23  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescriptionGenerator.cs : async begin method with
	  [MessageContract] has 3 parameters, not 1.

2009-01-22  Atsushi Enomoto  <atsushi@ximian.com>

	* DataContractSerializerMessageContractImporter.cs :
	  for such an element that does not contain schema type but has a
	  type reference, use ImportSchemaType().

2009-01-21  Atsushi Enomoto  <atsushi@ximian.com>

	* DataContractSerializerMessageContractImporter.cs :
	  some refactoring. Process all schemas, including those in WSDLs.

2009-01-07  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescription.cs : fix by corcompare.

2008-05-28  Noam Lampert <noaml@mainsoft.com>
	* ContractDescriptionGenerator.cs: Allow services to implement more than one contract.
	  
2008-05-22  Noam Lampert <noaml@mainsoft.com>
	* ServiceDebugBehavior.cs: Correctly propagate IncludeExceptionDetailsInFaults. Previous code
	  overwrote values set in ServiceBehaviorAttribute.
	  
2008-05-22  Roei Erez  <roeie@mainsoft.com>
	* fix ContractDescription.GetContract implementation
	* Refactor Request processing
	* Add support for message inspectors
	* Add support for InstanceContextProvider & InstanceProvider, including lifecycles events
	like: ReleaseServiceInstance, Open, Close...
	* Add relevant test cases.

2008-05-01  Eyal Alaluf <eyala@mainsoft.com>

	* ContractDescriptionGenerator.cs: Support specifying custom names of
	  operations, actions, parameters and return value via attributes.

2008-04-21  Igor Zelmanovich <igorz@mainsoft.com>

	* ServiceDebugBehavior.cs: implement ApplyDispatchBehavior.
	* ServiceMetadataBehavior.cs: fix ApplyDispatchBehavior.
	* ServiceMetadataExtension.cs: refactoring, serves both 
	ServiceDebugBehavior and ServiceMetadataBehavior by providing suitable 
	functionality.		

2008-04-21  Igor Zelmanovich <igorz@mainsoft.com>

	* WsdlExporter.cs: fix ExportEndpoint: SoapBinding.Style is initialized 
	with SoapBindingStyle.Document value. 

2008-04-17  Vladimir Krasnov  <vladimirk@mainsoft.com>

	* ServiceEndpoint.cs: fixed Name property

2008-04-10  Eyal Alaluf <eyala@mainsoft.com>

	* TypedMessageConverter.cs: Simplified to use XmlMessagesFormatter and
	  DataContractMessagesFormatter that handle the actual message
	  serialization/deserialization.
	  Added support for XmlSerializaerFormat serialization.
	* ContractDescriptionGenerator.cs: Refactored to expose utilities for
	  creating MessageDescription from types for TypedMessageConverter use.
	* ServiceModelInternalConverter.cs: Removed.

2008-04-08  Roei Erez <roeie@mainsoft.com>

	* ServiceAuthorizationBehavior.cs:
	  -- remove throwing NotImplementedException and add MonoTODO
	* ServiceDebugBehavior.cs
	  -- remove throwing NotImplementedException and add MonoTODO
	* ServiceEndpoint.cs
	  -- Add validate method.
	* ServiceMetadataBehavior.cs
	  -- remove throwing NotImplementedException and add MonoTODO
	
2008-03-24  Igor Zelmanovich <igorz@mainsoft.com>

	* PolicyVersion.cs: imפlement ToString method, fix Namespace property.
	* ServiceTimeoutsBehavior.cs: add internal class behavior corresponds
	ServiceTimeoutsElement.

2008-03-23  Vladimir Krasnov  <vladimirk@mainsoft.com>

	* ContractDescriptionGenerator.cs: fixed GetMessage, fixed namespace
	while creating message part

2008-03-04  Eyal Alaluf <eyala@mainsoft.com>

	* ContractDescriptionGenerator.cs: Init ConfigurationName from attribute.

2008-02-27  Eyal Alaluf <eyala@mainsoft.com>

	* MetadataSectionSerializerBase.cs WSTrustMessageConverters.cs:
	  Fix compilation warnings.

2008-02-16  Atsushi Enomoto  <atsushi@ximian.com>

	* CallbackDebugBehavior.cs : new class.

2008-02-15  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescriptionGenerator.cs : When reflecting a method,
	  iterate attributes and added such attribute that implements
	  IOperationBehavior to operation's Behaviors.

2007-08-17  Atsushi Enomoto  <atsushi@ximian.com>

	* TypedMessageConverter.cs, ServiceModelInternalConverter.cs,
	  ContractDescriptionGenerator.cs : significant rewrite for
	  message serialization and deserialization. Proxy types are not
	  created anymore. Instead, serializers are created for every
	  message member. (Deserialization had been broken due to missing
	  default constructor of the proxy type.)

2007-08-16  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceModelInternalConverter.cs : use MessagePartDescription.Name
	  instead of MemberInfo.Name.

2007-08-16  Atsushi Enomoto  <atsushi@ximian.com>

	* TypedMessageConverter.cs ServiceModelInternalConverter.cs
	  ContractDescriptionGenerator.cs :
	  support MessageContractAttribute wrapper name specification and
	  non-wrapping outputs.

2007-07-26  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescriptionGenerator.cs : reverted previous change. It is
	  conceptually wrong. RegisterInfo serialization is still possible
	  because it could contain private DataContract member which works
	  as a proxy to get or set properties on the RegisterInfo itself.

2007-07-26  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescriptionGenerator.cs : added hack to support
	  [MessageContract] type which has no [MessageBody] member.

2007-03-30  Atsushi Enomoto  <atsushi@ximian.com>

	* WSTrustSTSContract.cs : write prefixes.

2007-03-27  Atsushi Enomoto  <atsushi@ximian.com>

	* WSTrustMessageConverters.cs, WSTrustSTSContract.cs:
	  now they could be used for both TLS and SPNego.

2007-03-20  Atsushi Enomoto  <atsushi@ximian.com>

	* WSTrustMessageConverters.cs : fixed incorrect empty element check.
	* WSTrustSTSContract.cs :
	  Fixed Lifetime content namespace. Write KeySize.

2007-03-20  Atsushi Enomoto  <atsushi@ximian.com>

	* WSTrustSTSContract.cs, WSTrustMessageConverters.cs :
	  process RequestedProofToken as raw TLS 1.0 application data, which
	  is likely a shared key.

2007-03-19  Atsushi Enomoto  <atsushi@ximian.com>

	* WSTrustSTSContract.cs : support t:Authenticator output in RSTR.

2007-03-13  Atsushi Enomoto  <atsushi@ximian.com>

	* WSTrustSTSContract.cs, WSTrustMessageConverters.cs :
	  (This inidividual commit breaks the build.)
	  Support all xml contents required for Sslnego RSTR collection.

2007-03-08  Atsushi Enomoto  <atsushi@ximian.com>

	* WSTrustSTSContract.cs, WSTrustMessageConverters.cs :
	  Added IssueReply() operation to support RSTR from client.
	  Several fixes to read and write RSTR correctly.

2007-03-07  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceMetadataExtension.cs :
	  DispatchRuntime.InternalEndpointDispatcher was eliminated.

2007-03-05  Atsushi Enomoto  <atsushi@ximian.com>

	* WSTrustSTSContract.cs, WSTrustMessageConverters.cs :
	  added missing support for token negotiation (WS-Trust section 10.3).

2007-01-11  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceCredentials.cs : oops.

2007-01-11  Atsushi Enomoto  <atsushi@ximian.com>

	* ClientCredentials.cs, ServiceCredentials.cs : Clone() throws
	  NotImplementedException when it returns an instance of different
	  type.

2006-12-14  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceMetadataExtension.cs : raising an NIE than returning null
	  is better (at least it avoids extra debugging).

2006-12-04  Atsushi Emomoto  <atsushi@ximian.com>

	* WsdlExporter.cs : Binding.MessageVersion could be null.

2006-12-04  Atsushi Emomoto  <atsushi@ximian.com>

	* DataContractSerializerMessageContractImporter.cs :
	  The latest XmlSchemaImporter.ImportTypeMapping() correctly reports
	  an error for xs:* primitive type argument. So it should not do
	  that as well.

2006-12-04  Atsushi Emomoto  <atsushi@ximian.com>

	* MetadataSectionSerializerBase.cs : Build fix.
	  It was based on old 2.0 beta API

2006-10-18  Ankit Jain  <jankit@novell.com>

	* ServiceMetadataBehavior.cs (AddBindingParameters): Add endpoint for
	HTTP GET requests.
	(ApplyDispatchBehavior): Move code to add *InstanceContextProviders to ..
	* ServiceMetadataExtension.cs (ServiceMetadataExtension.Attach): .. here.
	(HttpGetWsdl): Service HTTP GET requests like ?wsdl.

2006-10-17  Ankit Jain  <jankit@novell.com>

	* WsdlExporter.cs (ExportEndpoint): Don't emit Soap* if
	MessageVersion.None
	(ExportService): Likewise.

2006-10-13  Ankit Jain  <jankit@novell.com>

	* WsdlExporter.cs (ExportContract): Move code to .. 
	(ExportContractInternal): .. this. Add support for IWsdlExportExtension.
	(ExportEndpoint): Add support for IWsdlExportExtension.
	(ExportService): Return Port.
	* DataContractSerializerOperationBehavior.cs : Add IWsdlExportExtension
	interface.

2006-10-12  Atsushi Emomoto  <atsushi@ximian.com>

	* ServiceDebugBehavior.cs : added Http[s]Help properties.

2006-10-04  Atsushi Emomoto  <atsushi@ximian.com>

	* ServiceCredentials.cs : do nothing in ApplyDispatchBehavior().

2006-10-04  Atsushi Emomoto  <atsushi@ximian.com>

	* ContractDescriptionGenerator.cs : reject async begin method whose
	  name does not begin with "Begin". (It even applies to operations
	  which has OperationContractAttribute with an explicit name(!).)

2006-10-04  Ankit Jain  <jankit@novell.com>

	* ServiceAuthorizationBehavior.cs (ApplyDispatchBehavior): Remove NYI
	exception.
	* ServiceMetadataBehavior.cs (ApplyDispatchBehavior): Instantiate and add a
	ServiceMetadataExtension to service host's extensions. Also, set the
	InstanceContextProvider for endpoints with IMetadataExchange contract
	to MexInstanceContextProvider.
	* ServiceMetadataExtension.cs (Metadata): Add internal 'set'.

2006-10-04  Atsushi Emomoto  <atsushi@ximian.com>

	* OperationDescriptionCollection.cs,
	  ContractDescriptionGenerator.cs : operation names must not conflict
	  each other.

2006-10-04  Ankit Jain  <jankit@novell.com>

	* ServiceContractGenerator.cs (GenerateProxyClass): Make .ctors public.

2006-10-03  Atsushi Emomoto  <atsushi@ximian.com>

	* ContractDescriptionGenerator.cs : EndBlah() must not be assigned an
	  OperationContractAttribute.

2006-09-22  Atsushi Emomoto  <atsushi@ximian.com>

	* LocalServiceSecuritySettings.cs : fix Clone().

2006-09-22  Atsushi Emomoto  <atsushi@ximian.com>

	* ContractDescriptionGenerator.cs : copy ProtectionLevel from attributes
	  to descriptions if required.

2006-09-22  Atsushi Emomoto  <atsushi@ximian.com>

	* FaultDescription.cs, MessageDescription.cs, ContractDescription.cs,
	  MessagePartDescription.cs, OperationDescription.cs :
	  Fixed HasProtectionLevel. It is always true when ProtectionLevel is set.

2006-09-18  Ankit Jain  <jankit@novell.com>

	* WsdlExporter.cs (ExportEndpoint): Throw if endpoint.Binding is null.
	(ExportParameters):
	(ExportTypeMessage): Reprocess the schema.	

2006-09-08  Ankit Jain  <jankit@novell.com>

	* WsdlExporter.cs (ExportParameters): Split into this and ..
	(ExportMessageBodyDescription): .. this.
	Check for duplicate message elements.
	(IsTypeMessage): Checks is a MessageBodyDescription has a single part of
	type System.ServiceModel.Channels.Message
	(ExportTypeMessage): Exports a complex type for type 
	System.ServiceModel.Channels.Message

2006-09-07  Ankit Jain  <jankit@novell.com>

	* WsdlExporter.cs (ExportedContracts): New hashtable to keep track of
	the exported contracts.
	(ExportContract): Throw exception if contract has already been exported.

2006-09-07  Ankit Jain  <jankit@novell.com>

	* MetadataBundle.cs (MetadataSet.WriteTo): Remove WriteStartDocument
	as suggested by Atsushi.

2006-09-07  Ankit Jain  <jankit@novell.com>

	* MetadataBundle.cs (MetadataSet.WriteTo): Add WriteStartDocument.

2006-09-07  Ankit Jain  <jankit@novell.com>

	* WsdlExporter.cs (ExportService): Export <service> and <port>.
	(GetService): New.
	(XsdExporter): New. Update code to use this instead of the 
	field, xsd_exporter.
	(schema_set): Remove.
	(GeneratedXmlSchemas): Use XsdExporter.Schemas directly.

2006-09-07  Ankit Jain  <jankit@novell.com>

	* WsdlExporter.cs (ExportContract): Add 'imports'.

2006-09-07  Atsushi Emomoto  <atsushi@ximian.com>

	* ServiceCredentials.cs : added missing members.

2006-09-06  Ankit Jain  <jankit@novell.com>

	* WsdlExporter.cs (ExportContract): Use String.Concat
	* ContractDescriptionGenerator.cs
	(ContractDescriptionGenerator.GetOperation): Set IsOneWay.
	* OperationDescription.cs (OperationDescription.IsOneWay): Add an
	internal setter.

2006-09-06  Ankit Jain  <jankit@novell.com>

	* WsdlExporter.cs (WsdlExporter.ExportEndpoint): Initial implementation.

2006-09-06  Atsushi Emomoto  <atsushi@ximian.com>

	* ServiceMetadataBehavior.cs : updated API to RC1.

2006-09-05  Ankit Jain  <jankit@novell.com>

	* WsdlExporter.cs (WsdlExporter.ExportContract): Add Namespaces.

2006-09-05  Atsushi Emomoto  <atsushi@ximian.com>

	* ServiceModelInternalConverter.cs : when a message part type is null
	  (such as void return value), supply dummy type (object).

2006-09-05  Ankit Jain  <jankit@novell.com>

	* MetadataBundle.cs (MetadataSet.WriteTo): Implement.
	* MetadataSectionSerializerBase.cs (WriteObject_ServiceDescription): Use
	ServiceDescription.Serializer to serialize.

2006-09-05  Ankit Jain  <jankit@novell.com>

	* WsdlExporter.cs (WsdlExporter.AddImport): New.
	(WsdlExporter.GetSchemaElementForPart): Add 'schema' param.
	(WsdlExporter.ExportContract): Update to changes.

2006-09-05  Ankit Jain  <jankit@novell.com>

	* MetadataSection.cs (MetadataSection.CreateFromSchema): Implement.
	(MetadataSection.CreateFromServiceDescription): Implement.
	* WsdlExporter.cs (WsdlExporter.GetGeneratedMetadata): Update to use
	new methods above.

2006-09-04  Ankit Jain  <jankit@novell.com>

	* WsdlExporter.cs: Initial implementation for ExportContract.
	* MetadataExporter.cs (GetGeneratedMetadata): Fix signature.
	* ContractDescriptionGenerator.cs (GetMessage): Seperate Namespace and
	Name with "/" if its not there in Namespace.

2006-08-30  Atsushi Emomoto  <atsushi@ximian.com>

	* ServiceMetadataBehavior.cs : for now avoid NotImplementedException.
	* ServiceDebugBehavior.cs : implemented AddBindingParameters() and
	  ApplyDispatchBehavior().
	* ServiceCredentials.cs : implemented AddBindingParameters().

2006-08-28  Atsushi Emomoto  <atsushi@ximian.com>

	* WSTrustMessageConverters.cs : added response reader class.

2006-08-23  Atsushi Emomoto  <atsushi@ximian.com>

	* WSTrustSTSContract.cs : rewritten to not use DataContract.
	* WSTrustMessageConverters.cs : new file.

2006-08-22  Atsushi Emomoto  <atsushi@ximian.com>

	* ClientCredentials.cs :
	  CloneCore() is virtual. CreateSecurityTokenManager() is public.
	* ServiceCredentials.cs :
	  Added secure conversation credential.
	  CreateSecurityTokenManager() is public.

2006-08-16  Atsushi Emomoto  <atsushi@ximian.com>

	* WSTrustSTSContract.cs : added some more members in request type.
	  WST request and response types are renamed.

2006-08-14  Atsushi Emomoto  <atsushi@ximian.com>

	* WSTrustSTSContract.cs : added internal interface for security token
	  service (STS).

2006-08-11  Atsushi Emomoto  <atsushi@ximian.com>

	* ClientCredentials.cs : implement CreateSecurityTokenManager() and
	  partly AddBindingParameters().
	* ServiceCredentials.cs : CreateSecurityTokenManager() as well.

2006-08-10  Atsushi Emomoto  <atsushi@ximian.com>

	* ClientCredentials.cs : temporarily comment out NIE in 
	  ApplyClientBehavior().

2006-08-02  Atsushi Emomoto  <atsushi@ximian.com>

	* MetadataSectionSerializerBase.cs : made internal, namespace fix.

2006-07-31  Ankit Jain  <jankit@novell.com>

	* MetadataExchangeClient.cs (GetMetadataInternal): Use
	MessageHeaders.MessageId instead of manually adding the header.
	(SoapEnvelopeNamespace): Remove.
	(AddressingNamespace): Remove.

2006-07-28  Atsushi Emomoto  <atsushi@ximian.com>

	* ServiceCredentials.cs :
	  added missing IssuedTokenAuthentication property.

2006-07-27  Ankit Jain  <jankit@novell.com>

	* DataContractSerializerMessageContractImporter.cs (resolveElement): Use
	XmlSchemaSet.Compile ()

2006-07-28  Atsushi Emomoto  <atsushi@ximian.com>

	* ClientCredentials.cs : initialize SupportInteractive as true.

2006-07-28  Atsushi Emomoto  <atsushi@ximian.com>

	* LocalClientSecuritySettings.cs : moved to S.SM.Channels.

2006-07-27  Ankit Jain  <jankit@novell.com>

	* MessagePartDescription.cs (TypeName):
	(XmlTypeMapping): New, internal properties, used by
	ServiceContractGenerator.
	* DataContractSerializerMessageContractImporter.cs (ImportContract):
	Handle a void return type.
	(resolveElement):
	(resolveParticle): Use XmlSchemaImporter to fill in
	MessagePartDescription.XmlTypeMapping .
	(GetCLRTypeName): New.
	* ServiceContractGenerator.cs (.ctor): Set default options.
	(GenerateServiceContractType): Support ChannelInterface.	
	(GenerateProxyClass): Emit more .ctors
	(GenerateChannelInterface): New.
	(ExportInterface): Emit ServiceContractAttribute.Namespace property.
	(ExportParameters): New. Extract code for emitting methods params from
	AddOperationMethods & AddImplementationMethods.
	(ExportMessages): New. Emits method params using MessageDescriptionCollection.
	(ExportDataContract): New. Emits code for a DataContract from a XmlTypeMapping.
	(GetXmlNamespace): New. Gets the Namespace param of XmlTypeAttribute or
	XmlRootAttribute.

2006-07-27  Ankit Jain  <jankit@novell.com>

	* MetadataResolver.cs (ResolveContracts): Move the exception handling
	code for MetadataProxy.Get to .. 
	* MetadataExchangeClient.cs (GetMetadataInternal): .. here.

2006-07-21  Atsushi Enomoto  <atsushi@ximian.com>

	* ClientCredentials.cs : July CTP API updates.

2006-07-18  Atsushi Enomoto  <atsushi@ximian.com>

	* PolicyConversionContext.cs : GetFaultBindingAssertions() argument:
	  MessageFault -> FaultDescription.

2006-07-14  Atsushi Enomoto  <atsushi@ximian.com>

	* TypedMessageConverter.cs : implemented FromMessage() for
	  DataContract converter. Though it won't work right now.

2006-07-14  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceModelInternalConverter.cs : It was bug #78855, and is fixed.
	* TypedMessageConverter.cs :
	  June CTP changed to write wrapper element.
	  Default URI is http://tempuri.org/, trailing '/' was missing.

2006-07-14  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceModelInternalConverter.cs :
	  The runtime errors are still there...

2006-07-14  Atsushi Enomoto  <atsushi@ximian.com>

	* IContractBehavior.cs : The API became sane in June CTP.
	* MatchAllEndpointBehavior.cs : vanished.

2006-07-14  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceModelInternalConverter.cs : assembly.Save() does not seem
	  to be required anymore. Maybe it was a runtime bug.

2006-07-13  Ankit Jain  <jankit@novell.com>

	* MetadataImporter.cs:
	* WsdlImporter.cs: 
	* DataContractSerializerMessageContractImporter.cs:
	* MetadataResolver.cs: Update to June CTP changes.

2006-07-13  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescriptionGenerator.cs : fix async method handling. Since
	  begin methods return IAsyncResult, not the return value type, it
	  should not be used to generate MessagePartDescription.
	  OperationContractAttribute.ReplyAction should not be ignored.

2006-07-12  Atsushi Enomoto  <atsushi@ximian.com>

	* WebServiceHelper.cs : comment out the entire source (unused now).

2006-07-12  Atsushi Enomoto  <atsushi@ximian.com>

	* IMetadataExchange.cs : another unexpected change ;-)

2006-07-12  Atsushi Enomoto  <atsushi@ximian.com>

	* IMetadataExchange.cs : take back async methods.

2006-07-12  Ankit Jain  <jankit@novell.com>

	* MetadataTransferClient.cs: Renamed to .. 
	* MetadataExchangeClient.cs: .. this. Update to June CTP changes.
	(MetadataExchangeClient.MetadataProxy): Proxy for IMetadataExchange
	service contract.
	(MetadataExchangeClient.GetMetadataInternal): Move GetMetadata() code
	here. Updated to use MetadataProxy instead of doing everything manually.
	* MetadataSectionSerializerBase.cs: Regenerated for the updated API.
	* MetadataReference.cs: June CTP updates. Now implements
	IXmlSerializable.
	* MetadataResolver.cs: Update for related changes in other classes. June
	CTP updates pending.
	* MetadataExchangeBindings.cs
	(MetadataExchangeBindings.CreateMexHttpBinding): Implement.

2006-07-11  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceDebugBehavior.cs : new file.

2006-07-10  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescriptionGenerator.cs : support AsyncPattern methods.

2006-07-07  Atsushi Enomoto  <atsushi@ximian.com>

	* MessageContractConverter.cs, ServiceModelInternalConverter.cs :
	  renamed file from former to latter.

2006-07-06  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceContractGenerator.cs : in ClientBase, InnerProxy -> Channel.

2006-07-06  Atsushi Enomoto  <atsushi@ximian.com>

	* MessageContractConverter.cs : exception type changed.

2006-07-05  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescriptionGenerator.cs :
	  MessageBodyAttribute -> MessageBodyMemberAttribute.

2006-07-05  Atsushi Enomoto  <atsushi@ximian.com>

	* ReflectedContractCollection.cs : removed unused file.

2006-07-05  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescription.cs, ContractDescriptionGenerator.cs :
	  some June CTP updates (SessionMode).

2006-07-04  Atsushi Enomoto  <atsushi@ximian.com>

	* TypedMessageConverter.cs : June CTP update.

2006-07-04  Atsushi Enomoto  <atsushi@ximian.com>

	* ViaUriBehavior.cs : renamed to ClientViaBehavior.
	  File name is also being changed.

2006-07-03  Ankit Jain  <jankit@novell.com>

	* WsdlImporter.cs:
	* MetadataImporter.cs: Update for changes in other files. (June CTP)

2006-07-03  Ankit Jain  <jankit@novell.com>

	* XmlSerializerMessageContractConverter.cs: Renaming type to ..
	* XmlSerializerMessageContractImporter.cs: .. this.
	* DataContractSerializerMessageContractConverter.cs: Renaming type to ..
	* DataContractSerializerMessageContractImporter.cs: .. this.
	* IOperationContractGenerator.cs: Renaming to ..
	* IOperationContractGenerationExtension.cs: .. this.
	* IServiceContractGenerator.cs: Renaming to ..
	* IServiceContractGenerationExtension.cs: .. this.

	* DataContractSerializerOperationBehavior.cs:
	* MetadataResolver.cs:
	* MetadataSection.cs: Update to June CTP changes.

	* WsdlImporter.cs:
	* ServiceContractGenerator.cs: Update for changes in other files.

	* IMetadataExchange.cs: New.
	* MetadataExchangeBindings.cs: New.

2006-06-22  Atsushi Enomoto  <atsushi@ximian.com>

	* MessageContractConverter.cs : in MessageBodyToDataContractType(),
	  support ReturnValue part as well.

2006-06-22  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescriptionGenerator.cs : extracted public method
	  GetOperationContractAttribute() from existing code.

2006-06-20  Atsushi Enomoto  <atsushi@ximian.com>

	* MessageContractConverter.cs : renaming type to 
	  ServiceModelInternalConverter as well as methods. Now it holds
	  conversion from MessageBodyDescription to DataContract Type.
	* TypedMessageConverter.cs : dependent changes from above.
	* ContractDescriptionGenerator.cs :
	  Temporarily commented out lines that rejects service contract
	  that does not contain any operation contracts.
	  Some refactoring.

2006-06-16  Ankit Jain  <jankit@novell.com>

	* MetadataSectionSerializerBase.cs: Remove debug Console.WriteLine-s.
	* WsdlImporter.cs: Streamline .ctors
	* MetadataImporter.cs: Likewise.
	* MetadataResolver.cs (MetadataResolver.Resolve): Update to use
	WSTransferGet instead of WsTransferGet.

2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>

	* MessageContractConverter.cs, TypedMessageConverter.cs :
	  Now it generates correct code, still emitting extra assemblies...

2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>

	* MessageContractConverter.cs :
	  Now it generates code (which is incorrect), spitting dummy.dll
	  everywhere you run code that uses TypedMessageConverter...

2006-06-12 Ankit Jain  <jankit@novell.com>

	* MetadataSectionSerializerBase.cs: New.
	* MetadataBundle.cs (MetadataSet.ReadFrom): Use XmlSerializer for
	deserializing.
	(MetadataSet.ReadXml): Use MetadataSectionSerializer to deserialize
	MetadataSection-s.

	* MetadataImporter.cs (MetadataImporter..ctor): Use a predefined list of
	IPolicyImportExtensions if none is specified.
	* WsdlImporter.cs (WsdlImporter.ImportAllContracts): Cache the imported contracts.
	(WsdlImporter.ImportAllEndpoints): Implement.
	(WsdlImporter.ImportEndpoint): Likewise.
	(WsdlImporter..ctor): Use a predefined list of IWsdlImportExtentions if
	none is specified.
	* IWsdlImporter.cs (ImportContract):
	(ImportEndpoint): Fix param names.
	* WsdlEndpointConversionContext.cs: Update .ctor, and implement
	properties.

	* ServiceContractGenerator.cs: Update to not depend on
	contractDescription.ContractType as it can be null.
	* DataContractSerializerMessageContractConverter.cs (.resolveParticle):
	Add 'depth' param.

2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
	* TypedMessageConverter.cs, MessageContractConverter.cs :
	  ongoing implementation using Mono.CodeGeneration.

2006-05-29  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceCredentials.cs, ClientCredentials.cs,
	  ServiceMetadataBehavior.cs : moved from Sys.SvcModel.

2006-05-29  Atsushi Enomoto  <atsushi@ximian.com>

	* TypedMessageConverter.cs : some ToMessage() code.
	* MessageContractConverter.cs,
	* ContractDescriptionGenerator.cs : some code to generate contract 
	  type from an arbitrary Type.

2006-04-27  Ankit Jain  <jankit@novell.com>

	* WsdlImporter.cs:
	* DataContractSerializerMessageContractConverter.cs:
	* MetadataImporter.cs:
	* WsdlContractConversionContext.cs: Change member field names from
	camelCase to underscore_names.

2006-04-26  Ankit Jain  <jankit@novell.com>

	* MetadataBundle.cs (MetadataSet.ReadFrom): Initial implementation.
	(MetadataSet.Attributes): Add missing property.
	* MetadataReference.cs: Fix to match Feb CTP.
	* MetadataResolver.cs: Likewise.
	* MetadataSection.cs: Likewise.

	* MetadataImporter.cs (PolicyExtensions): Implement property.
	* MetadataTransferClient.cs (GetMetadata): Initial implementation.
	* WsdlImporter.cs: Initial implementation.

	* OperationDescription.cs (.ctor): Set is_initiating = true.
	* MessageDescription.cs (.ctor): 'action' parameter can be null or
	zero-length.
	* MessageBodyDescription.cs (Parts): Add internal set method.

	* WsdlContractConversionContext.cs (Contract): Implement property.
	(WsdlPortType): Likewise.
	* DataContractSerializerMessageContractConverter.cs (ImportContract):
	Initial implementation.

	* WebServiceHelper.cs: Copied from
	mcs/class/System.Web.Services/System.Web.Services.Protocols
	
2006-04-14  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescriptionGenerator.cs : it is internal.
	* ServiceContractGenerator.cs : minimum implementation for
	  GenerateServiceContractType() for "client-proxy-gen" tool.

2006-04-05  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescriptionGenerator.cs : reject operation-less contract.

2006-04-05  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescriptionGenerator.cs : The target contract type should be
	  the interface, not the implementation type.

2006-03-17  Atsushi Enomoto  <atsushi@ximian.com>

	* ContractDescription.cs : extracted GetContract() implementation
	  part into ContractDescriptionGenerator.cs.
	* ContractDescriptionGenerator.cs : new file.

2006-03-14  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceEndpointCollection.cs WsdlImporter.cs
	  PolicyConversionContext.cs OperationDescriptionCollection.cs
	  PolicyAssertionCollection.cs MessageDescriptionCollection.cs :
	  couple of API fixes.

2006-02-23  Atsushi Enomoto  <atsushi@ximian.com>

	* PeerSecurityBehavior.cs ServiceCredentials.cs
	  ServiceAuthorizationBehavior.cs :
	  Dependent fixes for System.IdentityModel reorgainzation.

2006-02-23  Atsushi Enomoto  <atsushi@ximian.com>

	* EndpointBehaviorCollection.cs ChannelDescription.cs
	  MessageHeaderDescriptionCollection.cs ServiceCredentials.cs
	  FaultDescription.cs TypedMessageConverter.cs
	  AspNetIntegrationRequirementsAttribute.cs
	  MessageDescription.cs MessagePartDescriptionCollection.cs
	  OperationBehaviorCollection.cs ListenUriBehavior.cs
	  ServiceAuthorizationBehavior.cs ChannelBehaviorCollection.cs
	  MessageBodyDescription.cs IContractBehavior.cs
	  MessagePropertyDescriptionCollection.cs
	  ContractBehaviorCollection.cs BehaviorCollection.cs
	  ServiceEndpointCollection.cs ContractDescription.cs
	  XmlFormatterOperationBehavior.cs FaultDescriptionCollection.cs
	  ServiceSecurityAuditBehavior.cs IChannelBehavior.cs
	  ServiceDescription.cs OperationBehaviorAttribute.cs
	  MatchAllEndpointBehavior.cs IEndpointBehavior.cs
	  ServiceMetadataBehavior.cs XmlSerializerOperationBehavior.cs
	  ServiceBehaviorCollection.cs HostedBindingBehavior.cs
	  MessageHeaderDescription.cs ViaUriBehavior.cs
	  MessagePartDescription.cs OperationDescriptionCollection.cs
	  IServiceBehavior.cs IOperationBehavior.cs
	  MessagePropertyDescription.cs MustUnderstandBehavior.cs
	  ServiceEndpoint.cs PeerSecurityBehavior.cs
	  OperationDescription.cs MessageDescriptionCollection.cs
	  ReflectedContractCollection.cs :
	  moved from System.ServiceModel due to the API changes.

2006-02-23  Atsushi Enomoto  <atsushi@ximian.com>

	* ChannelBuildContext.cs ContractExportBehavior.cs
	  IMessageEncodingBindingElement.cs IOperationContractGenerator.cs
	  IPolicyImporter.cs IServiceContractGenerator.cs
	  IStreamUpgradeBindingElement.cs ITransportTokenAssertionProvider.cs
	  IWsdlExporter.cs IWsdlImporter.cs InvalidChannelBindingException.cs
	  IpolicyExporter.cs MessageEncodingBindingElementConverter.cs
	  MetadataConversionError.cs MetadataExporter.cs MetadataImporter.cs
	  MetadataResolver.cs OperationContractGenerationContext.cs
	  PolicyConversionContext.cs ReliableSessionBindingElementConverter.cs
	  SecurityBindingElementConverter.cs
	  ServiceContractGenerationContext.cs ServiceContractGenerator.cs
	  ServiceThrottlingBehavior.cs
	  TransactionFlowBindingElementConverter.cs
	  TransportBindingElementConverter.cs WsdlContractConversionContext.cs
	  WsdlEndpointConversionContext.cs WsdlExporter.cs WsdlImporter.cs
	  XmlFormatterMessageContractConverter.cs
	  XmlSerializerMessageContractConverter.cs :
	  Feb. CTP API changes - chapter 1.

2006-02-14  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceThrottlingBehavior.cs : ServiceThrottle was moved.

2006-01-26  Atsushi Enomoto  <atsushi@ximian.com>

	* ChannelBuildContext.cs :
	  All builder methods now "reset" UnhandledBindingElements after
	  the outermost processing.

2006-01-26  Atsushi Enomoto  <atsushi@ximian.com>

	* ChannelBuildContext.cs :
	  Use BindingElement's BuildBlahFactory directly. Implemented Clone().
	* ChannelLoader.cs : removed obsolete type.

2005-11-21  Atsushi Enomoto  <atsushi@ximian.com>

	* XmlSerializerMessageContractConverter.cs,
	  MessageEncodingBindingElementConverter.cs,
	  XmlFormatterMessageContractConverter.cs : new files in Nov. CTP.

2005-11-21  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceLoader.cs, TypeLoader.cs : removed.

2005-11-21  Atsushi Enomoto  <atsushi@ximian.com>

	* ChannelBuildContext.cs : IListener/-Factory vanished in Nov. CTP.

2005-11-20  Atsushi Enomoto  <atsushi@ximian.com>

	* IWsdlExporter.cs, InvalidChannelBindingException.cs,
	  MetadataImporter.cs, IWsdlImporter.cs, IPolicyImporter.cs,
	  MetadataConversionError.cs, IpolicyExporter.cs,
	  MetadataExporter.cs, PolicyConversionContext.cs :
	  New files in beta2
	* ITypeResolver.cs, WsdlBindingConversionContext.cs, 
	  IWsdlBindingElementConverter.cs,
	  WsdlOperationBindingCoversionContext.cs, 
	  WsdlMessageBindingConversionContext.cs,
	  WsdlMessageConversionContext.cs, IWsdlBindingConverter.cs,
	  IWsdlContractConverter.cs, IWsdlEndpointConverter.cs,
	  WsdlConversionContext.cs, WsdlConverters.cs,
	  InvalidSettingsException.cs, WsdlBindingConverterBase.cs,
	  WsdlConversionError.cs, CustomBindingConverter.cs, 
	  WsdlOperationConversionContext.cs :
	  Removed in beta2
	* ReliableSessionBindingElementConverter.cs, ServiceLoader.cs,
	  TransportBindingElementConverter.cs, ContractExportBehavior.cs,
	  ChannelLoader.cs, WsdlExporter.cs, MetadataResolver.cs,
	  SecurityBindingElementConverter.cs,
	  WsdlContractConversionContext.cs,
	  WsdlEndpointConversionContext.cs, WsdlImporter.cs,
	  ServiceThrottlingBehavior.cs, ServiceContractGenerator.cs,
	  TypeLoader.cs, TransactionFlowBindingElementConverter.cs :
	  Updated signatures to beta2.

2005-11-20  Atsushi Enomoto  <atsushi@ximian.com>

	* ChannelBuildContext.cs : was seeing
	  http://savas.parastatidis.name/2005/04/08/4b0b99b1-92c6-4442-ab2e-4c4951009ef4.aspx
	  and modified channel build logic a bit.

2005-10-31  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceThrottlingBehavior.cs : implemented ApplyBehavior().

2005-10-26  Atsushi Enomoto  <atsushi@ximian.com>

	* ChannelBuildContext.cs : added DequeueBindingElement() for
	  BindingElements' internal use. It becomes UnhandledBindingElements.

2005-10-26  Atsushi Enomoto  <atsushi@ximian.com>

	* ChannelBuildContext.cs : implemented BuildListenerFactory().

2005-10-26  Atsushi Enomoto  <atsushi@ximian.com>

	* ChannelBuildContext.cs :
	  several API fixes detected by improved corcompare.

2005-10-25  Atsushi Enomoto  <atsushi@ximian.com>

	* ChannelBuildContext.cs : added missing generic class constraint.

2005-10-20  Atsushi Enomoto  <atsushi@ximian.com>

	* ReliableSessionBindingElementConverter.cs,
	  TransportBindingElementConverter.cs, ContractExportBehavior.cs,
	  SecurityBindingElementConverter.cs,
	  OperationContractGenerationContext.cs,
	  ServiceContractGenerationContext.cs, InvalidSettingsException.cs
	  WsdlBindingConverterBase.cs, WsdlConversionError.cs,
	  CustomBindingConverter.cs, ServiceContractGenerator.cs,
	  TransactionFlowBindingElementConverter.cs :
	  added all missing bits.
	* Dummy.cs : finally removed.
	* ServiceThrottlingBehavior.cs, WsdlBindingConversionContext.cs :
	  tiny API fix.

2005-10-13  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceLoader.cs : serviceType is moved to ServiceDescription.

2005-10-12  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceLoader.cs, TypeLoader.cs : implemented some.

2005-10-12  Atsushi Enomoto  <atsushi@ximian.com>

	* IWsdlEndpointConverter.cs, IOperationContractGenerator.cs,
	  IServiceContractGenerator.cs, WsdlBindingConversionContext.cs,
	  IWsdlBindingElementConverter.cs, IStreamUpgradeBindingElement.cs,
	  WsdlContractConversionContext.cs,
	  WsdlOperationBindingCoversionContext.cs,
	  WsdlMessageBindingConversionContext.cs,
	  WsdlEndpointConversionContext.cs, WsdlMessageConversionContext.cs,
	  IWsdlBindingConverter.cs, WsdlOperationConversionContext.cs,
	  IWsdlContractConverter.cs, ITransportTokenAssertionProvider.cs:
	  new files for wsdl importer.
	* Dummy.cs : removed above.
	* WsdlConversionContext.cs, IMessageEncodingBindingElement.cs :
	  tiny API fixes.

2005-10-11  Atsushi Enomoto  <atsushi@ximian.com>

	* IMessageEncodingBindingElement.cs : new file.
	* Dummy.cs : removed above.

2005-10-09  Atsushi Enomoto  <atsushi@ximian.com>

	* ChannelBuilderContext.cs : new file.
	* Dummy.cs : removed above.

2005-09-28  Atsushi Enomoto  <atsushi@ximian.com>

	* ServiceThrottlingBehavior.cs : moved from sys.ServiceModel dir.

2005-09-28  Atsushi Enomoto  <atsushi@ximian.com>

	* ITypeResolver.cs, ChannelLoader.cs, ServiceLoader.cs,
	  TypeLoader.cs : new files.
	* Dummy.cs : removed those classes added above.