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