* FileSystemInfo.cs: corrected COM visibility of UTC properties
[mono.git] / mcs / class / System.Runtime.Remoting / ChangeLog
1 2004-03-31  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2
3         * System.Runtime.Remoting.dll.sources: Added:
4           AssemblyInfo and Locale
5
6 2003-12-03  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
7
8         * Makefile : added reference to System.Web.Services.dll
9
10 2003-12-03  Lluis Sanchez Gual <lluis@ximian.com>
11
12         * System.Runtime.Remoting.dll.sources: Added:
13                 System.Runtime.Remoting.MetadataServices/MetaDataExporter.cs
14                 System.Runtime.Remoting.MetadataServices/MetaDataCodeGenerator.cs
15         * Makefile: Added new assembly references.
16
17 2003-11-16  Lluis Sanchez Gual <lluis@ximian.com>
18
19         * System.Runtime.Remoting.dll.sources: Added:
20                 System.Runtime.Remoting.Channels/BinaryCore.cs
21                 System.Runtime.Remoting.Channels/ChannelCore.cs
22                 System.Runtime.Remoting.Channels/SoapCore.cs
23
24 2003-11-13  Lluis Sanchez Gual <lluis@ximian.com>
25
26         * System.Runtime.Remoting.dll.sources: Removed HttpThread.cs
27
28 2003-11-11  Lluis Sanchez Gual <lluis@ximian.com>
29
30         * System.Runtime.Remoting_test.dll.sources: Added CrossDomainCalls.cs test file.
31
32 2003-09-14  Lluis Sanchez Gual <lluis@ximian.com>
33
34         * TcpClientChannel.cs: Fixed constructor.
35         
36 2003-08-22  Lluis Sanchez Gual <lluis@ximian.com>
37
38         * System.Runtime.Remoting_test.dll.sources: Added DelegateCalls.cs test file.
39
40 2003-08-20  Lluis Sanchez Gual <lluis@ximian.com>
41
42         * TcpConnectionPool.cs: Check if a connection is alive before reusing
43           it. Added some properties to support this.
44
45 2003-08-20  Lluis Sanchez Gual <lluis@ximian.com>
46
47         * System.Runtime.Remoting_test.dll.sources: Added new test files.
48
49 2003-08-18  Lluis Sanchez Gual <lluis@ximian.com>
50
51         * HttpClientChannel.cs, HttpServerChannel.cs: Fixed bug #47703
52
53 2003-07-23  Lluis Sanchez Gual <lluis@ximian.com>
54
55         * Makefile: added dll extension to System.Runtime.Remoting reference
56
57 2003-07-23  Lluis Sanchez Gual <lluis@ximian.com>
58
59         * System.Runtime.Remoting_test.dll.sources: Added.
60         * Makefile: added test support.
61
62 2003-06-21  Lluis Sanchez Gual <lluis@ximian.com>
63
64         * HttpChannel.cs, HttpClientChannel.cs, HttpHelper.cs, HttpServer.cs,
65           HttpServerChannel.cs, HttpThread.cs: added new implementation of the HttpChannel
66           by Ahmad Tantawy, Ahmad Kadry and Hussein Mehanna.
67         * unix.args: added HttpHelper.cs,HttpServer.cs,HttpThread.cs.
68
69 2003-05-13  Lluis Sanchez Gual <lluis@ideary.com>
70
71         * BinaryServerFormatterSink.cs: The uri of the target object is now assigned
72           to the message through the HeaderHandler delegate.
73
74 2003-04-27  Lluis Sanchez Gual <lluis@ideary.com>
75
76         * TcpChannel.cs: The port property may not be an string. Fixed.
77         * TcpServerChannel.cs: Added some fixes by Jerome Laban. Implemented
78           some channel properties.
79
80 2003-04-03  Lluis Sanchez Gual <lluis@ideary.com>
81
82         * TcpMessageIO.cs: Changed header format to match MS.NET. Based on the patch
83           sent by Jose Luís Martín.
84         * TcpClientTransportSink.cs: Improved support for OneWay messages.
85         * BinaryClientFormatterSink.cs: Added Content-Type header.
86
87 2003-03-25  Martin Willemoes Hansen <mwh@sysrq.dk>
88         
89         * Stubed System.Runtime.Remoting.MetadataServices
90
91 2003-03-22  Martin Willemoes Hansen <mwh@sysrq.dk>
92
93         * Stubed System.Runtime.Remoting.Channels.Http
94
95 2003-02-05  Alvaro del Castillo <acs@barrapunto.com>
96
97         * System.Runtime.Remoting.Channels.Tcp/TcpClientTransportSink.cs:
98         * System.Runtime.Remoting.Channels.Tcp/TcpMessageIO.cs:
99         * System.Runtime.Remoting.Channels.Tcp/TcpServerChannel.cs:
100         Change MessageType to MessageStatus so the code is
101         more clear
102
103 2002-12-29  Lluis Sanchez Gual <lluis@ideary.com>
104
105         * TcpServerChannel.cs: Changed management of listener threads.
106         * TcpConnectionPool.cs: Add shutdown method.
107         * TcpChannel.cs: Corrected shutdown method.
108
109 2002-12-29  Lluis Sanchez Gual <lluis@ideary.com>
110
111         * TcpServerChannel.cs: Changed default formatter sink to BinaryFormatterSink
112         * TcpMessageIO.cs: warning corrected.
113         * TcpConnectionPool.cs: changed default value of MaxOpenConnections.
114         * TcpClientTransportSink.cs: implemented support for one way calls.
115         * TcpClientChannel.cs: Changed default formatter sink to BinaryFormatterSink.
116         * TcpChannel.cs: corrected Parse method. Now can parse channel uris.
117         * BinaryServerFormatterSink.cs: Implemented.
118         * BinaryClientFormatterSink.cs: Implemented.
119         
120 2002-12-29  Lluis Sanchez Gual <lluis@ideary.com>
121
122         * CommonTransportKeys.cs: Implemented and added to CVS
123         * TcpChannel.cs: Added. It is a more ore less complete implementation
124           of the tcp channel, although not yet compatible with MS TcpChannel.
125         * TcpClientChannel.cs: Added
126         * TcpClientTransportSink.cs: Added
127         * TcpClientTransportSinkProvider.cs: Added
128         * TcpConnectionPool.cs: Added
129         * TcpMessageIO.cs: Added
130         * TcpServerChannel.cs: Added
131         * TcpServerTransportSink.cs: Added
132         * SimpleWireFormat.cs: Corrected a bug in method SerializeObject
133         * SimpleServerFormatterSink.cs: Some small corrections
134         * SimpleClientFormatterSink.cs: Some small corrections
135
136 2002-09-03  Dietmar Maurer  <dietmar@ximian.com>
137
138         * System.Runtime.Remoting.Channels.CORBA/CORBAChannel.cs:
139         impl. the channel wrapper.
140
141         * System.Runtime.Remoting.Channels.Simple/SimpleChannel.cs:
142         impl. the channel wrapper.
143
144         * System.Runtime.Remoting.Channels.Simple/SimpleServerChannel.cs
145         (GetUrlsForUri): use all available channel uris. 
146
147 2002-08-30  Dietmar Maurer  <dietmar@ximian.com>
148
149         * System.Runtime.Remoting.Channels.Simple/SimpleWireFormat.cs: add
150         more types.
151
152 2002-08-14  Rodrigo Moya <rodrigo@ximian.com>
153
154         * TcpChannel.cs: new classes.