ChangeLog 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. 2003-12-03 Atsushi Enomoto <[email protected]>
  2. * Makefile : added reference to System.Web.Services.dll
  3. 2003-12-03 Lluis Sanchez Gual <[email protected]>
  4. * System.Runtime.Remoting.dll.sources: Added:
  5. System.Runtime.Remoting.MetadataServices/MetaDataExporter.cs
  6. System.Runtime.Remoting.MetadataServices/MetaDataCodeGenerator.cs
  7. * Makefile: Added new assembly references.
  8. 2003-11-16 Lluis Sanchez Gual <[email protected]>
  9. * System.Runtime.Remoting.dll.sources: Added:
  10. System.Runtime.Remoting.Channels/BinaryCore.cs
  11. System.Runtime.Remoting.Channels/ChannelCore.cs
  12. System.Runtime.Remoting.Channels/SoapCore.cs
  13. 2003-11-13 Lluis Sanchez Gual <[email protected]>
  14. * System.Runtime.Remoting.dll.sources: Removed HttpThread.cs
  15. 2003-11-11 Lluis Sanchez Gual <[email protected]>
  16. * System.Runtime.Remoting_test.dll.sources: Added CrossDomainCalls.cs test file.
  17. 2003-09-14 Lluis Sanchez Gual <[email protected]>
  18. * TcpClientChannel.cs: Fixed constructor.
  19. 2003-08-22 Lluis Sanchez Gual <[email protected]>
  20. * System.Runtime.Remoting_test.dll.sources: Added DelegateCalls.cs test file.
  21. 2003-08-20 Lluis Sanchez Gual <[email protected]>
  22. * TcpConnectionPool.cs: Check if a connection is alive before reusing
  23. it. Added some properties to support this.
  24. 2003-08-20 Lluis Sanchez Gual <[email protected]>
  25. * System.Runtime.Remoting_test.dll.sources: Added new test files.
  26. 2003-08-18 Lluis Sanchez Gual <[email protected]>
  27. * HttpClientChannel.cs, HttpServerChannel.cs: Fixed bug #47703
  28. 2003-07-23 Lluis Sanchez Gual <[email protected]>
  29. * Makefile: added dll extension to System.Runtime.Remoting reference
  30. 2003-07-23 Lluis Sanchez Gual <[email protected]>
  31. * System.Runtime.Remoting_test.dll.sources: Added.
  32. * Makefile: added test support.
  33. 2003-06-21 Lluis Sanchez Gual <[email protected]>
  34. * HttpChannel.cs, HttpClientChannel.cs, HttpHelper.cs, HttpServer.cs,
  35. HttpServerChannel.cs, HttpThread.cs: added new implementation of the HttpChannel
  36. by Ahmad Tantawy, Ahmad Kadry and Hussein Mehanna.
  37. * unix.args: added HttpHelper.cs,HttpServer.cs,HttpThread.cs.
  38. 2003-05-13 Lluis Sanchez Gual <[email protected]>
  39. * BinaryServerFormatterSink.cs: The uri of the target object is now assigned
  40. to the message through the HeaderHandler delegate.
  41. 2003-04-27 Lluis Sanchez Gual <[email protected]>
  42. * TcpChannel.cs: The port property may not be an string. Fixed.
  43. * TcpServerChannel.cs: Added some fixes by Jerome Laban. Implemented
  44. some channel properties.
  45. 2003-04-03 Lluis Sanchez Gual <[email protected]>
  46. * TcpMessageIO.cs: Changed header format to match MS.NET. Based on the patch
  47. sent by Jose Luís Martín.
  48. * TcpClientTransportSink.cs: Improved support for OneWay messages.
  49. * BinaryClientFormatterSink.cs: Added Content-Type header.
  50. 2003-03-25 Martin Willemoes Hansen <[email protected]>
  51. * Stubed System.Runtime.Remoting.MetadataServices
  52. 2003-03-22 Martin Willemoes Hansen <[email protected]>
  53. * Stubed System.Runtime.Remoting.Channels.Http
  54. 2003-02-05 Alvaro del Castillo <[email protected]>
  55. * System.Runtime.Remoting.Channels.Tcp/TcpClientTransportSink.cs:
  56. * System.Runtime.Remoting.Channels.Tcp/TcpMessageIO.cs:
  57. * System.Runtime.Remoting.Channels.Tcp/TcpServerChannel.cs:
  58. Change MessageType to MessageStatus so the code is
  59. more clear
  60. 2002-12-29 Lluis Sanchez Gual <[email protected]>
  61. * TcpServerChannel.cs: Changed management of listener threads.
  62. * TcpConnectionPool.cs: Add shutdown method.
  63. * TcpChannel.cs: Corrected shutdown method.
  64. 2002-12-29 Lluis Sanchez Gual <[email protected]>
  65. * TcpServerChannel.cs: Changed default formatter sink to BinaryFormatterSink
  66. * TcpMessageIO.cs: warning corrected.
  67. * TcpConnectionPool.cs: changed default value of MaxOpenConnections.
  68. * TcpClientTransportSink.cs: implemented support for one way calls.
  69. * TcpClientChannel.cs: Changed default formatter sink to BinaryFormatterSink.
  70. * TcpChannel.cs: corrected Parse method. Now can parse channel uris.
  71. * BinaryServerFormatterSink.cs: Implemented.
  72. * BinaryClientFormatterSink.cs: Implemented.
  73. 2002-12-29 Lluis Sanchez Gual <[email protected]>
  74. * CommonTransportKeys.cs: Implemented and added to CVS
  75. * TcpChannel.cs: Added. It is a more ore less complete implementation
  76. of the tcp channel, although not yet compatible with MS TcpChannel.
  77. * TcpClientChannel.cs: Added
  78. * TcpClientTransportSink.cs: Added
  79. * TcpClientTransportSinkProvider.cs: Added
  80. * TcpConnectionPool.cs: Added
  81. * TcpMessageIO.cs: Added
  82. * TcpServerChannel.cs: Added
  83. * TcpServerTransportSink.cs: Added
  84. * SimpleWireFormat.cs: Corrected a bug in method SerializeObject
  85. * SimpleServerFormatterSink.cs: Some small corrections
  86. * SimpleClientFormatterSink.cs: Some small corrections
  87. 2002-09-03 Dietmar Maurer <[email protected]>
  88. * System.Runtime.Remoting.Channels.CORBA/CORBAChannel.cs:
  89. impl. the channel wrapper.
  90. * System.Runtime.Remoting.Channels.Simple/SimpleChannel.cs:
  91. impl. the channel wrapper.
  92. * System.Runtime.Remoting.Channels.Simple/SimpleServerChannel.cs
  93. (GetUrlsForUri): use all available channel uris.
  94. 2002-08-30 Dietmar Maurer <[email protected]>
  95. * System.Runtime.Remoting.Channels.Simple/SimpleWireFormat.cs: add
  96. more types.
  97. 2002-08-14 Rodrigo Moya <[email protected]>
  98. * TcpChannel.cs: new classes.