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
|
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.
|