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