ChangeLog 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. 2008-09-12 Astushi Enomoto <[email protected]>
  2. Jb Evain <[email protected]>
  3. * Makefile: support net_2_1_raw compilation profile.
  4. * net_2_1_raw_System.ServiceModel.dll.sources
  5. * *.cs: SL2 compilation support.
  6. 2008-05-22 Roei Erez <[email protected]>
  7. * fix ContractDescription.GetContract implementation
  8. * Refactor Request processing
  9. * Add support for message inspectors
  10. * Add support for InstanceContextProvider & InstanceProvider, including lifecycles events
  11. like: ReleaseServiceInstance, Open, Close...
  12. * Add relevant test cases.
  13. 2008-04-21 Igor Zelmanovich <[email protected]>
  14. * System.ServiceModel_test.dll.sources: Add ServiceDebugBehaviorTest.cs and
  15. ServiceMetadataBehaviorTest.cs.
  16. 2008-04-17 Vladimir Krasnov <[email protected]>
  17. * System.ServiceModel.dll.sources: added HttpChannelManager.cs
  18. 2008-04-14 Igor Zelmanovich <[email protected]>
  19. * System.ServiceModel_test.dll.sources: Add ExtensionCollectionTest.cs.
  20. 2008-04-13 Vladimir Krasnov <[email protected]>
  21. * added: System.ServiceModel_Test.csproj, visual studio tests project
  22. 2008-04-10 Eyal Alaluf <[email protected]>
  23. * System.ServiceModel.dll.sources, System.ServiceModel.csproj:
  24. Moved System.ServiceModel.Dispatcher/DefaultMessageOperationFormatter.cs
  25. to System.ServiceModel.Dispatcher/BaseMessagesFormatter.cs.
  26. Removed System.ServiceModel.Description/ServiceModelInternalConverter.cs.
  27. 2008-04-01 Roei Erez <[email protected]>
  28. * System.ServiceModel_test_net_3_0.dll.config: Added configurations for new tests.
  29. 2008-04-01 Igor Zelmanovich <[email protected]>
  30. * System.ServiceModel_test.dll.sources: Add ServiceHostBaseTest.cs.
  31. 2008-03-27 Atsushi Enomoto <[email protected]>
  32. * Makefile : add System.ServiceModel_test_net_3_0.dll.config to
  33. EXTRA_DISTFILES too.
  34. 2008-03-27 Atsushi Enomoto <[email protected]>
  35. * Makefile : include Test/config/* in EXTRA_DISTFILES to fix
  36. nunit test failures.
  37. 2008-03-21 Atsushi Enomoto <[email protected]>
  38. * Makefile : more EXTRA_DISTFILES.
  39. 2008-03-11 Atsushi Enomoto <[email protected]>
  40. * Makefile : oops, wrong EXTRA_DISTFILES.
  41. 2008-03-11 Atsushi Enomoto <[email protected]>
  42. * Makefile : add EXTRA_DISTFILES.
  43. 2008-02-28 Eyal Alaluf <[email protected]>
  44. * System.ServiceModel_test_net_3_0.dll.config: Add configurations for
  45. testing ClientBase<T> ctors.
  46. 2008-02-27 Eyal Alaluf <[email protected]>
  47. * Makefile: Ignore common warnings including use of obsolete API (since
  48. Mono.Security.* has several such warnings).
  49. 2007-12-05 Atsushi Enomoto <[email protected]>
  50. * Makefile : added net_3_5 profile as a valid target.
  51. 2007-08-18 Marcos Cobena ([email protected])
  52. * System.ServiceModel_test.dll.sources: Updated with new tests for System.ServiceModel.PeerResolvers.
  53. * Test/System.ServiceModel.PeerResolvers/CustomPeerResolverServiceTest.cs: New bunch of tests.
  54. 2007-08-16 Marcos Cobena ([email protected])
  55. * System.ServiceModel.dll.sources: Updated with System.ServiceModel.PeerResolvers/PeerReferralPolicy.cs.
  56. * PeerReferralPolicy.cs: Moved and updated here from AllEnums.cs.
  57. * PeerResolverMode.cs: Updated API.
  58. * RefreshResult.cs: Updated API.
  59. * RegisterInfo.cs: Almost finished, minus HasBody().
  60. * AllEnums.cs: PeerReferralPolicy lives now inside System.ServiceModel.PeerResolvers.
  61. 2007-07-19 Marcos Cobena ([email protected])
  62. * PeerCustomResolverSettings.cs, PeerResolverMode.cs, PeerResolverSettings.cs,
  63. PeerSecuritySettings.cs: New implementations.
  64. * System.ServiceModel.dll.sources, AllEnums.cs, Dummy.cs: Updated to added sources.
  65. * NetPeerTcpBinding.cs: Added support to new above implementations.
  66. 2007-07-18 Marcos Cobena ([email protected])
  67. * TcpChannelListener.cs, TcpDuplexSessionChannel.cs: Text messaging now works
  68. (both Send() and Receive()), even mixing .NET version with Mono one.
  69. * TcpChannelListener.cs: By default, it uses BinaryMessageEncoder.
  70. 2007-07-17 Marcos Cobena ([email protected])
  71. * DuplexSessionChannelBase.cs, TcpChannelListener.cs, TcpDuplexSessionChannel.cs,
  72. TcpTransportBindingElement.cs: Thanks to Atsushi Eno, it starts messaging.
  73. 2007-07-12 Marcos Cobena ([email protected])
  74. * DuplexSessionChannelBase.cs, TcpChannelFactory.cs, TcpChannelListener.cs,
  75. TcpDuplexSessionChannel.cs: Added new implementations.
  76. * NetTcpBinding.cs, TcpTransportBindingElement.cs: Modified to match new TCP implementations.
  77. * System.ServiceModel.dll.sources: Updated to last classes set.
  78. 2007-07-05 Atsushi Enomoto <[email protected]>
  79. Makefile : added -r:System.Messaging.dll
  80. 2007-06-28 Marcos Cobena ([email protected])
  81. * System.ServiceModel.dll.sources, System.ServiceModel\Dummy.cs :
  82. Modified to match new files under System.ServiceModel.PeerResolvers.
  83. 2007-04-20 Atsushi Enomoto <[email protected]>
  84. Makefile : added ws-addr.xsd as a resource.
  85. 2007-04-17 Atsushi Enomoto <[email protected]>
  86. * fixup-config.xml : updated config section types.
  87. 2007-03-05 Atsushi Enomoto <[email protected]>
  88. Makefile : added -r:Mono.Security.dll and some nowarns.
  89. 2007-02-27 Wade Berrier <[email protected]>
  90. * Makefile: include resource files in EXTRA_DISTFILES
  91. 2006-10-13 Atsushi Enomoto <[email protected]>
  92. * fixup-config2.cs, fixup-config2.xml :
  93. It is used to add svc. -> SvcHttpHandler mapping in web.config.
  94. 2006-10-04 Ankit Jain <[email protected]>
  95. * System.ServiceModel.dll.sources: Update.
  96. 2006-09-29 Ankit Jain <[email protected]>
  97. * System.ServiceModel.dll.sources: Update.
  98. 2006-09-26 Ankit Jain <[email protected]>
  99. * System.ServiceModel.dll.sources: Update.
  100. 2006-09-07 Ankit Jain <[email protected]>
  101. * System.ServiceModel_test.dll.sources: Add WsdlExporterTest.cs
  102. 2006-07-21 Atsushi Enomoto <[email protected]>
  103. * Makefile : it used to be referenced by S.IM.Selectors.dll.
  104. Nowadays it references S.IM.Selectors.dll.
  105. 2006-07-13 Ankit Jain <[email protected]>
  106. * System.ServiceModel_test.dll.sources: Add MetadataResolverTest.cs
  107. 2006-07-12 Ankit Jain <[email protected]>
  108. * System.ServiceModel.dll.sources: Update for June CTP changes. Add
  109. EndpointAddress10.cs
  110. 2006-07-04 Atsushi Enomoto <[email protected]>
  111. * Makefile : add path to referenced assemblies as gmcs always loads
  112. them from the GAC.
  113. 2006-07-03 Ankit Jain <[email protected]>
  114. * System.ServiceModel.dll.sources: Update for June CTP changes.
  115. 2006-07-03 Ankit Jain <[email protected]>
  116. * System.ServiceModel.dll.sources: Add IMetadataExchange.cs and
  117. MetadataExchangeBinding.cs . Update to match changes in June CTP.
  118. 2006-06-30 Atsushi Enomoto <[email protected]>
  119. * fixup-config.xml : updated to match June CTP config types.
  120. 2006-06-27 Atsushi Enomoto <[email protected]>
  121. * fixup-config.xml : bindings section has binding sub sections.
  122. 2006-06-27 Atsushi Enomoto <[email protected]>
  123. * fixup-config.cs : now it supports updating.
  124. * fixup-config.xml : "bindings" is in fact just a section.
  125. MS bad naming on class.
  126. 2006-06-26 Atsushi Enomoto <[email protected]>
  127. * fixup-config.cs, fixup-config.xml : when you try configuration
  128. support, you can run fixup-config.exe and then supplemental
  129. config sections are added.
  130. 2006-06-12 Atsushi Enomoto <[email protected]>
  131. * Makefile : remove extra option.
  132. 2006-06-12 Ankit Jain <[email protected]>
  133. * System.ServiceModel.dll.sources: Add
  134. System.ServiceModel.Description/MetadataSectionSerializerBase.cs
  135. * System.ServiceModel_test.dll.sources: Add
  136. System.ServiceModel.Description/WsdlImporterTest.cs
  137. 2006-06-12 Atsushi Enomoto <[email protected]>
  138. * Makefile : use Mono.CodeGeneration.
  139. 2006-04-26 Ankit Jain <[email protected]>
  140. * System.ServiceModel_test.dll.sources : Add
  141. System.ServiceModel.Description/WebServiceHelper.cs .
  142. 2006-02-11 Ankit Jain <[email protected]>
  143. * System.ServiceModel_test.dll.sources : Add
  144. ServiceHostTest.cs and UriSchemeKeyedCollectionTest.cs
  145. 2005-10-19 Atsushi Enomoto <[email protected]>
  146. * winfx.pub : new set of assembly, thus new public key.
  147. 2005-10-09 Atsushi Enomoto <[email protected]>
  148. * Makefile : eliminated some warning noises.
  149. 2005-10-08 Atsushi Enomoto <[email protected]>
  150. * Makefile : addded /r:System.Transactions.
  151. 2005-09-29 Duncan Mak <[email protected]>
  152. * Makefile (RESOURCE_FILES): Include
  153. resources/WS-Addressing.schema.
  154. (LIB_MCS_FLAGS): Add "/resource:" flag.
  155. 2005-09-29 Atsushi Enomoto <[email protected]>
  156. * System.ServiceModel_test.dll.sources : required for make run-test.
  157. 2005-09-29 Atsushi Enomoto <[email protected]>
  158. * System.ServiceModel.dll.sources : regenerated to add new files.
  159. 2005-09-29 Atsushi Enomoto <[email protected]>
  160. * System.ServiceModel.dll.sources : regenerated to add new files.
  161. 2005-09-29 Atsushi Enomoto <[email protected]>
  162. * Makefile : reference to sys.configuration.dll.
  163. * System.ServiceModel.dll.sources : regenerated to add new files.
  164. 2005-09-28 Atsushi Enomoto <[email protected]>
  165. * System.ServiceModel.dll.sources : regenerated to add new files.
  166. 2005-09-28 Atsushi Enomoto <[email protected]>
  167. * System.ServiceModel.dll.sources : further regen.
  168. 2005-09-28 Atsushi Enomoto <[email protected]>
  169. * System.ServiceModel.dll.sources : regenerated to add new files.
  170. 2005-09-28 Atsushi Enomoto <[email protected]>
  171. * System.ServiceModel.dll.sources : regenerated to add new files.
  172. 2005-09-28 Atsushi Enomoto <[email protected]>
  173. * System.ServiceModel.dll.sources : regenerated to add new files.
  174. 2005-09-28 Atsushi Enomoto <[email protected]>
  175. * System.ServiceModel.dll.sources : regenerated to add new files.
  176. 2005-09-27 Atsushi Enomoto <[email protected]>
  177. * System.ServiceModel.dll.sources : regenerated to add new files.
  178. 2005-09-27 Atsushi Enomoto <[email protected]>
  179. * System.ServiceModel.dll.sources : added CommunicationErrorEventArgs.
  180. 2005-09-27 Atsushi Enomoto <[email protected]>
  181. * Makefile : so now update-dll-sources is common target to all libs.