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