* ObjRef.cs: Added new constructor to support CAD channel.
[mono.git] / mcs / class / corlib / System.Runtime.Remoting / ChangeLog
1 2003-10-09  Lluis Sanchez Gual <lluis@ximian.com>
2
3         * ObjRef.cs: Added new constructor to support CAD channel.
4
5 2003-10-08  Lluis Sanchez Gual <lluis@ximian.com>
6
7         * Identity.cs, RemotingServices.cs: Fixed memory leak. I Changed reference 
8           to proxy in ClientIdentity to a WeakReference. This fixes a memory leak.
9         * RemotingServices.cs: Ignore first "/" char in uris when looking for
10           and object. 
11           Take into account that identity now has a weak reference
12           of the proxy.
13
14 2003-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15
16         * ObjectHandle.cs: simplified and fix InitializeLifetimeService.
17
18 2003-09-11  Lluis Sanchez Gual <lluis@ximian.com>
19
20         * RemotingServices.cs: Collect value of parameters with the Out flag
21         into the return message. Also set and reset CallContext.  Added method
22         UpdateOutArgObject.
23
24 2003-08-25  Lluis Sanchez Gual <lluis@ximian.com>
25
26         * RemotingServices.cs: Some small fixes.
27
28 2003-08-14  Lluis Sanchez Gual <lluis@ximian.com>
29
30         * ObjRef.cs: Implemented IsFromThisProcess().
31         * RemotingServices.cs: Implemented methods GetLifetimeService and
32           GetEnvoyChainForProxy. Stubbed LogRemotingStage.
33         
34 2003-07-29  Lluis Sanchez Gual <lluis@ximian.com>
35
36         * RemotingServices.cs: GetObjectUri(): For client proxies, return
37           the target url.
38
39 2003-07-26  Duncan Mak  <duncan@ximian.com>
40
41         * SoapServices.cs (XmlNsForClrTypeWithNsAndAssembly):
42         Fixed typo. It's 'Ns', but 'Ms'.
43
44 2003-07-25  Lluis Sanchez Gual <lluis@ximian.com>
45
46         * RemotingServices.cs: If the type for a proxy is not available in
47           the client site, use the MarshalByRefObject type.
48
49 2003-07-21  Lluis Sanchez Gual <lluis@ximian.com>
50
51         * ServerIdentity.cs: Fixed bug #46645
52
53 2003-07-16  Lluis Sanchez Gual <lluis@ximian.com>
54
55         * Identity.cs: Added TargetUri property
56
57 2003-04-10  Lluis Sanchez Gual <lluis@ideary.com>
58
59         * ObjRef.cs: Fixed bug #43187, based on the patch by Jean-Marc Andre
60
61 2003-04-10  Lluis Sanchez Gual <lluis@ideary.com>
62
63         * ObjRef.cs: Renamed ChannelInfoStore to ChannelInfo (match MS.NET)
64         * RemotingServices.cs: Added method to help support Async messages.
65         * RemotingConfiguration.cs: Implemented property ProcessID.
66
67 2003-03-24  Lluis Sanchez Gual <lluis@ideary.com>
68
69         * RemotingServices.cs: Fixed bug #39915
70
71 2003-03-20  Lluis Sanchez Gual <lluis@ideary.com>
72
73         * Identity.cs: Added support for dynamic properties.
74         * ObjRef.cs: Removed some [MonoTODO]
75         * TypeInfo.cs: Added support for interfaces.
76         * RemotingServices.cs: Several fixes to support interfaces in proxies.
77
78 2003-03-15  Lluis Sanchez Gual <lluis@ideary.com>
79
80         * RemotingServices.cs: fixes bugs #39380 and #39331.
81
82 2003-02-25 Lluis Sanchez Gual <lluis@ideary.com>
83
84         * Identity.cs: Added property to check if an identity is connected (it is remotely accesible)
85         * ObjRef.cs: Added internal helper method for getting the server type of an ObjRef.
86         * RemotingServices.cs: Implemented Disconnect method. Added support for custom proxy
87           creating using ProxyAttribute. Added support for activation attributes in creation
88           of proxies. Some other minor corrections.
89         * ServerIdentity.cs: minor corrections.
90
91 2003-02-18 Lluis Sanchez Gual <lluis@ideary.com>
92
93         * Identity.cs: Added envoy message sink.
94         * ObjRef.cs: Implemented EnvoySink property
95         * RemotingConfiguration.cs: now enables proxy creation for types registered
96           as ClientActivatedType or WellKnownClientType.
97         * RemotingServices.cs: Added support for ContextBoundObjects.
98           Added methods for creating proxies. 
99         * ServerIdentity.cs: Added initialization of envoy sink.
100         * EnvoyInfo.cs: Added. It is an implementation on IEnvoyInfo.
101
102 2003-02-08  Sebastien Pouliot  <spouliot@videotron.ca>
103
104         * RemotingConfiguration.cs: Changed using to Mono.Xml for MiniParser.
105
106 2003-02-07 Patrik Torstensson
107
108         * RemotingServices.cs: Always marshal an object in GetObjectData
109
110 2003-02-07 Lluis Sanchez Gual <lluis@ideary.com>
111
112         * Identity.cs: Added ObjRef attribute, that holds the objref of the object.
113           Removed implementation of CreateObjRef. Now it is implemented in the derived classes.
114         * ServerIdentity.cs: Added implementation of CreateObjRef.
115         * RemotingServices.cs: Changed implementation of GetRemoteObject and GetClientIdentity.
116           Now they only have and ObjRef as input parameter. This is the objref received from
117           the server. Unmarshal() also checks if the objref is for a well known object.
118           In this case, a proxy is always created, but if not, it tries to get the real object.
119         * ObjRef.cs: Added some flags that have info for marshalling/unmarshalling.
120           Changed behavior of IsPossibleToCAD. Now returns false. Returning true makes serialization 
121           of this ObjRef to fail in the target AD. Added method UpdateChannelInfo.
122
123 2003-02-04 Lluis Sanchez Gual <lluis@ideary.com>
124
125         * Identity.cs: created and identity class for each identity type. It is a more clear design.
126         * ServerIdentity.cs: added. Implements identity funtionality specific to server objects
127         * RemotingServices.cs: Modified to work with new types of identities.
128         * RemotingConfiguration.cs: Modified to work with new types of identities.
129         * ObjRef.cs: Added initialization of channel info in default constructor.
130         * Identity.cs: Added support for WellKnownService objects.
131
132 2003-02-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
133
134         * RemotingServices.cs:
135         (GetMethodBaseFromMethodMessage): fixed to make it also work with
136         internal methods without MethodSignature (see ApplicationHost.cs).
137
138 2003-02-03 Patrik Torstensson
139
140         * ObjRef.cs: added copy constructor and two helpers for cross 
141           appdomain message marshalling.
142         * RemotingServices.cs: Added helper to create transparant proxy for appdomain, and
143           register internal cross appdomain channel.
144
145 2003-01-29 Lluis Sanchez Gual <lluis@ideary.com>
146
147         * RemotingServices.cs: Added support for WellKnownService objects.
148         * RemotingConfiguration.cs: Implemented most of methods (Configure is not working yet).
149         * ObjRef.cs: Added initialization of channel info in default constructor.
150         * Identity.cs: Added support for WellKnownService objects.
151
152 2003-01-28 Patrik Torstensson
153
154         * ObjRef.cs: Fixed Objref marshalling flags
155         
156 2003-01-24 Lluis Sanchez Gual <lluis@ideary.com>
157
158         * RemotingServices.cs: Implemented some missing methods: IsMethodOverloaded, 
159           SetObjectUriForMarshal, IsOneWay, IsObjectOutOfAppDomain, 
160           IsObjectOutOfContext, GetObjRefForProxy, GetObjectData,
161           GetMethodBaseFromMethodMessage.
162         * TypeInfo.cs: Added.
163         * ObjRef.cs: Implemented serialization and added support for IRemotingTypeInfo.
164
165 2002-12-28 Lluis Sanchez Gual <lluis@ideary.com>
166
167         * SoapServices.cs: Implemented some methods
168
169 2002-12-20 Lluis Sanchez Gual <lluis@ideary.com>
170
171         * ObjRef.cs: Implementation now based on methods of RemotingServices.
172         * RemotingServices.cs: Remoting information now kept in Identity objects.
173           All methods adapted to work with identities.
174           Renamed ExecuteMessage to InternalExecuteMessage. ExecuteMessage should
175           not make a direct call to the object.
176         * Identity.cs: added.
177
178 2002-12-11  Jaime Anguiano Olarra <jaime@gnome.org>
179
180         * RemotingConfiguration.cs: added to the CVS.
181
182 2002-11-29  Jaime Anguiano Olarra <jaime@gnome.org>
183
184         * ObjectHandle.cs: added implementation  for InitializeLifetimeService
185         * method.
186
187
188 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
189
190         * SoapServices.cs: fix error CS3005.
191
192 2002-09-03  Dietmar Maurer  <dietmar@ximian.com>
193
194         * RemotingServices.cs: add an unique app_id string used to generate
195         unique object uris.
196
197         * ObjRef.cs: added serialization support
198
199 2002-08-31  Dietmar Maurer  <dietmar@ximian.com>
200
201         * ObjRef.cs: gather the channel date at creation time.
202
203 2002-08-20  Dietmar Maurer  <dietmar@ximian.com>
204
205         * RemotingServices.cs: Connect impl. 
206
207 2002-08-02  Duncan Mak  <duncan@ximian.com>
208
209         * ActivatedClientTypeEntry.cs:
210         * ActivatedServiceTypeEntry.cs:
211         * WellKnownClientTypeEntry.cs:
212         * WellKnownServiceTypeEntry.cs: Various visibility fixes.
213
214 2002-07-31  Duncan Mak  <duncan@ximian.com>
215
216         * TypeEntry.cs:
217         * ActivatedClientTypeEntry.cs:
218         * ActivatedServiceTypeEntry.cs:
219         * WellKnownClientTypeEntry.cs:
220         * WellKnownServiceTypeEntry.cs: Added all the classes derived from TypeEntry.
221
222         * RemotingException.cs: 
223         * RemotingTimeoutException.cs: 
224         * ServerException.cs: Added missing exceptions.
225
226         * IChannelInfo.cs: 
227         * IEnvoyInfo.cs: 
228         * IRemotingTypeInfo.cs: Added missing interfaces.
229
230 2002-07-24  Duncan Mak  <duncan@ximian.com>
231
232         * LeaseState.cs: Moved to System.Runtime.Remoting.Lifetime.
233
234         * SoapMethodOption.cs: 
235         * SoapOption.cs: Removed and merged into System.Runtime.Remoting.Metadata.SoapOption.
236
237 2002-07-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
238
239         * IObjectHandle.cs: New file.
240         * ObjectHandle.cs: implemented constructor and Unwrap.
241
242 2002-01-05  Ravi Pratap  <ravi@ximian.com>
243
244         * ObjRef.cs : Strew the MonoTODO attribute.
245
246 2001-09-02  Miguel de Icaza  <miguel@ximian.com>
247
248         * ObjRef.cs: Include System.Runtime.Serialization