Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « System.Runtime.Remoting « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a652ecf30ed0ed5970aab5707bfa0e3f14c9b57a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
2010-03-05  Robert Jordan  <robertj@gmx.net>

	* ObjRef.cs (GetRealObject): Revert previous patch as it doesn't
	cope well with CAD remoting, which doesn't flag well-known types.

2010-02-26  Robert Jordan  <robertj@gmx.net>

	* ObjRef.cs (GetRealObject): Refine to server type only when
	necessary. Fixes #504886.

2010-02-05 Rodrigo Kumpera  <rkumpera@novell.com>

	* RemotingServices.cs (InternalExecuteMessage): Properly
	handle generic methods. We can't call MakeGenericMethod on
	a non GMD method.

2009-11-18  Marek Safar  <marek.safar@gmail.com>

	* RemotingServices.cs: Delay heavyweight GUID initialization.

2009-09-18  Sebastien Pouliot  <sebastien@ximian.com>

	* RemotingServices.cs: Avoid depending on COM stuff for NET_2_1

2009-07-11  Robert Jordan  <robertj@gmx.net>

	* RemotingServices.cs: Track ComInteropProxy's changes.

2009-04-18  Mark Probst  <mark.probst@gmail.com>

	* RemotingServices.cs (GetDomainProxy): Make a copy of the array
	created in the other app domain so as not to pollute our own.

2008-10-04  Robert Jordan  <robertj@gmx.net>

	* ServerIdentity.cs (DisposeServerObject):
	Notify TrackingServices about server's disconnection.

2008-08-04  Atsushi Enomoto  <atsushi@ximian.com>

	* RemotingConfiguration.cs : use ordinal comparison in config paths.
	  Fixed bug #384264.

2008-07-03  Andreas Nahr  <ClassDevelopment@A-SoftTech.com>

	* ServerException.cs:
	* RemotingTimeoutException.cs:
	* RemotingException.cs:
	* RemotingServices.cs:
	* RemotingConfiguration.cs:
	* ObjRef.cs: "Fix" parameter names

2008-01-07  Sebastien Pouliot  <sebastien@ximian.com>

	* Identity.cs: Fix Disposed setter to use value (not true). Found 
	using Gendarme.

2007-11-21  Atsushi Enomoto  <atsushi@ximian.com>

	* RemotingConfiguration.cs : added CustomErrorMode (stub).

2007-10-30  Robert Jordan  <robertj@gmx.net>

	* RemotingServices.cs: (InternalExecuteMessage):
	Resolve interface methods using the new icall GetVirtualMethod ().
	Remove the now obsolete GetMethodBaseFromName + generic params
	overloads.

2007-08-30  Robert Jordan  <robertj@gmx.net>

	* RemotingServices.cs (InternalExecuteMessage): Resolve interface
	methods correctly. Fixes #81554. Ditto for generic methods.

	* RemotingServices.cs (GetMethodBaseFromName): Reuse already computed
	FieldSetter|GetterMethods.

	* RemotingServices.cs (GetMethodBaseFromName): New overload that
	takes generic arguments into account.

2007-08-15  Mark Probst  <mark.probst@gmail.com>

	* RemotingServices.cs: Make sure InternalExecute doesn't get
	called with a null method, because that makes it crash.  Throw a
	NullReferenceException instead.  Doesn't fix bug #82302, but
	prevents the crash.

2007-08-15  Atsushi Enomoto  <atsushi@ximian.com>

	* RemotingConfiguration.cs WellKnownObjectMode.cs
	  InternalRemotingServices.cs RemotingServices.cs :
	  [ComVisible], [Serializable], [Obsolete].
	* CustomErrorsModes.cs : new in 2.0

2007-05-02  Jonathan Chambers  <joncham@gmail.com>

	* RemotingConfiguration.cs: Added Configure overload for 2.0
	with MonoTODO for security.

2006-12-18  Lluis Sanchez Gual  <lluis@novell.com>

	* RemotingServices.cs: FieldSetter and FieldGetter methods need
	  to be handled in a special way, since they are the only private
	  methods which can be called from a subclass.
	  In UpdateOutArgObject, removed support for StringBuilder objects,
	  now supporting only arrays, like MS.NET.

2006-11-22  Lluis Sanchez Gual  <lluis@novell.com>

	* RemotingServices.cs: Avoid generating urls with negative numbers.
	  When building the url for the RemoteActivationService service,
	  avoid duplicate path separator.

2006-10-30  Gert Driesen  <drieseng@users.sourceforge.net>

	* RemotingServices.cs: Explicitly set FormatterAssemblyStyle to Full
	in 2.0 profile, as the default has changed from Full to Simple.
	Fixes bug #79732.

2006-08-23  Lluis Sanchez Gual  <lluis@novell.com>

	* ObjRef.cs: Throw a TypeLoadException exception if the referenced
	  type can't be found. That's better than a nullref.

2006-07-15  Jonathan Chambers  <joncham@gmail.com>

	* RemotingServices.cs: Begin implementing COM Interop.

2006-04-27  Robert Jordan  <robertj@gmx.net>

	* RemotingServices.cs (IsObjectOutOfAppDomain, IsObjectOutOfContext):
	add parameter validation. Fixes bug #78164.

2006-04-07  Sebastien Pouliot  <sebastien@ximian.com>

	* RemotingServices.cs: Assert SerializationFormatter permissions if 
	the runtime wants to do cross-appdomain serialization (this will need
	to be better reviewed/tested later but it fix some current issues).

2005-12-07  Robert Jordan  <robertj@gmx.net>

	* RemotingServices.cs: Accept the application name beeing a part of
	  the object URI. Fixes bug #76809.

2005-11-06  Svetlana Zholkovsky  <svetlanaz@mainsoft.com>

	* RemotingConfiguration.cs: Fix ConfigHandler.OnEndElement to handle case
	when the configuration file contains custom providers with child elements.
	* ServerIdentity.cs: clear _serverSink field in the DisposeServerObject method.

2005-10-18  Lluis Sanchez Gual  <lluis@novell.com>

	* RemotingConfiguration.cs: The value for customErrors tag must be
	case-insensitive. Fixes bug #76466 (patch by Robert Jordan).
	
2005-10-17  Lluis Sanchez Gual  <lluis@novell.com>

	* RemotingConfiguration.cs: Rethrow catched exceptions
	in ReadConfigFile (patch by Robert Jordan). Fixes bug #76434.
	Properly set the application name.

2005-08-18  Lluis Sanchez Gual  <lluis@novell.com>

	* RemotingServices.cs: Notify marshals, unmarshals and disconnections
	to TrackingServices. Fixes bug #75814.

2005-06-06  Zoltan Varga  <vargaz@freemail.hu>

	* ObjRef.cs RemotingServices.cs: Add some missing 2.0 attributes.

2005-05-26  Ben Maurer  <bmaurer@ximian.com>

	* InternalRemotingServices.cs: Move hashtable init to
	cctor. Removes double checked locking and locking on typeof.

2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>

	* ObjRef.cs: Use IsInstanceOfType instead of IsAssignableFrom
	since GetType() may not return the correct type if the object is
	a remoting proxy.

2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>

	* RemotingConfiguration.cs : MiniParser->SmallXmlParser changes.

2005-05-09  Lluis Sanchez Gual  <lluis@novell.com>

	* RemotingServices.cs: Fix warning.

2004-10-26  Lluis Sanchez Gual  <lluis@novell.com>

	* RemotingServices.cs: Added several serialization methods needed by
	the cross app domain wrappers.
	In GetOrCreateClientIdentity(), set the domain of the proxy if it
	references an object in another domain.

2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>

	* RemotingServices.cs: Allways pass the uri when calling
	  GetClientChannelSinkChain, even if it has channel data.
	  This fixes bug 66768.
	
2004-09-27  Lluis Sanchez Gual  <lluis@novell.com>

	* ServerIdentity.cs: Only set the target identity if it has not already
	  been set.

2004-09-23  Lluis Sanchez Gual  <lluis@novell.com>

	* RemotingServices.cs: Fixed wrong patch for InternalExecuteMessage.
	  The MethodBase in the message may not be the same type of the object
	  (the method can be called using an interface).

2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>

	* RemotingServices.cs: In InternalExecute, use MethodBase instead
	  of MonoMethod, so it can be also used for running constructors.
	* ServerIdentity.cs: Added methods for getting and setting the client
	  proxy in ClientActivatedIdentity. This is needed for CBOs, since
	  messages need to be dispatched using the proxy as "this", not the
	  real object.

2004-09-11 Ben Maurer  <bmaurer@users.sourceforge.net>

	* RemotingServices.cs: use MethodBase rather than looking
	for the method ourselves. It has higher perf in x-ad calls.

2004-09-05 Ben Maurer  <bmaurer@users.sourceforge.net>

	* RemotingServices.cs (IsMethodOverloaded): use the internal
	method GetMethodsByName. It does much less work than GetMembers.

2004-09-05 Ben Maurer  <bmaurer@users.sourceforge.net>

	* RemotingServices.cs (IsOneWay): use IsDefined rather than
	GetCustomAttributes. It is much faster.

2004-07-22  Lluis Sanchez Gual  <lluis@novell.com>

	* ObjRef.cs: Fixed type check in in ObjRef constructor. The requested class
	  must be the object class or a base class. This fixes bug #61249.

2004-07-22  Lluis Sanchez Gual  <lluis@novell.com>

	* RemotingServices.cs: Changed GetMethodBaseFromMethodMessage so its code
	  can be reused internally. Also fixed bug when gettting a method from an
	  interface.

2004-07-02  Lluis Sanchez Gual  <lluis@ximian.com>

	* ServerIdentity.cs: When disposing an identity, detach the identity from
	  the object, so it can be safely marshalled again.
	* RemotingServices.cs: Fixed IsObjectOutOfContext and 
	  IsObjectOutOfAppDomain. In SetObjectUriForMarshal, take into account
	  contextful objects.

2004-07-01  Lluis Sanchez Gual  <lluis@ximian.com>

	* RemotingConfiguration.cs: Avoid adding "id" and "type" as custom 
	  properties of providers. This fixes bug #60934.
	
2004-06-15  Gert Driesen <drieseng@users.sourceforge.net>

	* RemotingTimeoutException.cs: added missing serialization ctor
	* ServerException.cs: added missing serialization ctor

2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>

	* RemotingConfiguration.cs: Read application name from configuraation file.

2004-06-01  Gert Driesen <drieseng@users.sourceforge.net>

	* RemotingServices.cs: Added missing Conditional attribute and
	MonoTODO attribute on LogRemotingStage

2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>

	* RemotingConfiguration.cs: Added method for configuring chanels with the
	  delayed client load flag. Added locks for accessing internal tables.

2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>

	* RemotingServices.cs: In GetMethodBaseFromMethodMessage, look for 
	  constructors if no method is found.

2004-05-07  Lluis Sanchez Gual  <lluis@ximian.com>

	* SoapServices.cs: Support encoded namespace names in 
	  DecodeXmlNamespaceForClrTypeNamespace. Thanks to George Kodinov.

2004-04-28  Lluis Sanchez Gual  <lluis@ximian.com>

	* RemotingServices.cs: When create a ReturnMessage, provide an array with
	  all parameters, including input parameters.

2004-04-26  Lluis Sanchez Gual  <lluis@ximian.com>

	* ObjRef.cs: Little optimization.

2004-03-09  Lluis Sanchez Gual  <lluis@ximian.com>

	* RemotingServices.cs: Marshal(): If the object is a proxy, return the ObjRef
	  stored in the identity object.

2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>

	* Identity.cs: Removed object type from Identity, since it is hold
	  now in the IRemotingTypeInfo object.
	* ServerIdentity.cs: Added object type.
	* TypeInfo.cs: Added null check for the class hierarchy.

2004-02-17  Lluis Sanchez Gual  <lluis@ximian.com>

	* RemotingServices.cs: Client identities are registered using the full url,
	  not the object uri, so they must be unregistered using the same key.

2004-01-24  Lluis Sanchez Gual  <lluis@ximian.com>

	* TypeInfo.cs: The list of interfaces may be null. Added check.

2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>

	* RemotingServices.cs: When marshalling a custom proxy, allow the creation
	of a new identity. This fixes bug #52921.
	* ServerIdentity.cs: Allow the creation of server identities that
	represent a custom proxy instead of a real object.

2003-12-10  Lluis Sanchez Gual  <lluis@ximian.com>

	* SoapServices.cs: Little fix: correctly encode namespaces.

2003-12-10  Martin Willemoes Hansen  <mwh@sysrq.dk>

	* RemotingConfiguration.cs: fixed wrong attribute name
	  sponsorShipTimeOut it should be sponsorshipTimeout

2003-12-03  Lluis Sanchez Gual <lluis@ximian.com>

	* SoapServices.cs: Little fix in namespace construction.
	
2003-11-28  Dick Porter  <dick@ximian.com>

	* TypeInfo.cs: 
	* RemotingConfiguration.cs: Use the char form of IndexOf, so that
	the comparison is done with the Invariant culture.

2003-11-26  Lluis Sanchez Gual <lluis@ximian.com>

	* InternalRemotingServices.cs: Fixed GetCachedSoapAttribute().
	* RemotingConfiguration.cs: Implemented CustomErrorsEnabled(). 
	  Added support for soapInterop configuration section.
	* SoapServices.cs: Several fixes to match MS behavior.

2003-11-25  Lluis Sanchez Gual <lluis@ximian.com>

	* InternalRemotingServices.cs: Implemented GetCachedSoapAttribute().
	* SoapServices.cs: Implemented missing methods.
	* WellKnownClientTypeEntry.cs: Initialize object_url in constructor.

2003-11-24  Jackson Harper <jackson@ximian.com>

	* ServerIdentity.cs: Get non public types, so remote objects can
	be non public or have non public constructors.
	
2003-11-19  Lluis Sanchez Gual <lluis@ximian.com>

	* InternalRemotingServices.cs: Added missing attributes.
	  
2003-11-17  Lluis Sanchez Gual <lluis@ximian.com>

	* InternalRemotingServices.cs: Added CLSCompliant to SetServerIdentity
	  (MethodCall is not compliant)
	* IObjectHandle.cs: Set correct value for Guid.
	
2003-11-16  Lluis Sanchez Gual <lluis@ximian.com>

	* IObjectHandle.cs, ObjectHandle.cs: Added missing attributes.
	* RemotingConfiguration.cs: GetRegisteredActivatedClientTypes made public.
	  Declared CustomErrorsEnabled() method.
	* RemotingServices.cs: Implemented GetSessionIdForMethodMessage().
	  IsAsyncMessage must be internal.
	* InternalRemotingServices.cs: Added.

2003-11-13  Lluis Sanchez Gual <lluis@ximian.com>

	* RemotingServices.cs: Add ".rem" suffix to generated uri names.

2003-11-12  Lluis Sanchez Gual <lluis@ximian.com>

	* RemotingConfiguration.cs: Implemented all remaining functionality.
	* ActivatedClientTypeEntry.cs: Set the value of ObjectType in the constructor
	* ActivatedServiceTypeEntry.cs, WellKnownClientTypeEntry.cs,
	  WellKnownServiceTypeEntry.cs: Check that the provided type is valid.

2003-11-11  Lluis Sanchez Gual <lluis@ximian.com>

	* RemotingConfiguration.cs: Added initial implementation of Configure method
	  by Jaime Anguiano.

2003-11-11  Lluis Sanchez Gual <lluis@ximian.com>

	* ActivatedClientTypeEntry.cs, ActivatedServiceTypeEntry.cs, 
	  IRemotingTypeInfo.cs, RemotingServices.cs, WellKnownServiceTypeEntry.cs:
	  Removed some TODOs.

2003-11-01  Zoltan Varga  <vargaz@freemail.hu>

	* RemotingServices.cs (GetDomainProxy): Use the new InvokeInDomain 
	function instead of calling SetDomain.

2003-10-23  Lluis Sanchez Gual <lluis@ximian.com>

	* RemotingServices.cs: Do not create an identity for an object if it
	  already has one.

2003-10-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* RemotingServices.cs: (NewUri) use Interlocked.Increment on next_id.

2003-10-09  Lluis Sanchez Gual <lluis@ximian.com>

	* ObjRef.cs: Added new constructor to support CAD channel.

2003-10-08  Lluis Sanchez Gual <lluis@ximian.com>

	* Identity.cs, RemotingServices.cs: Fixed memory leak. I Changed reference 
	  to proxy in ClientIdentity to a WeakReference. This fixes a memory leak.
	* RemotingServices.cs: Ignore first "/" char in uris when looking for
	  and object. 
	  Take into account that identity now has a weak reference
	  of the proxy.

2003-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ObjectHandle.cs: simplified and fix InitializeLifetimeService.

2003-09-11  Lluis Sanchez Gual <lluis@ximian.com>

	* RemotingServices.cs: Collect value of parameters with the Out flag
	into the return message. Also set and reset CallContext.  Added method
	UpdateOutArgObject.

2003-08-25  Lluis Sanchez Gual <lluis@ximian.com>

	* RemotingServices.cs: Some small fixes.

2003-08-14  Lluis Sanchez Gual <lluis@ximian.com>

	* ObjRef.cs: Implemented IsFromThisProcess().
	* RemotingServices.cs: Implemented methods GetLifetimeService and
	  GetEnvoyChainForProxy. Stubbed LogRemotingStage.
	
2003-07-29  Lluis Sanchez Gual <lluis@ximian.com>

	* RemotingServices.cs: GetObjectUri(): For client proxies, return
	  the target url.

2003-07-26  Duncan Mak  <duncan@ximian.com>

	* SoapServices.cs (XmlNsForClrTypeWithNsAndAssembly):
	Fixed typo. It's 'Ns', but 'Ms'.

2003-07-25  Lluis Sanchez Gual <lluis@ximian.com>

	* RemotingServices.cs: If the type for a proxy is not available in
	  the client site, use the MarshalByRefObject type.

2003-07-21  Lluis Sanchez Gual <lluis@ximian.com>

	* ServerIdentity.cs: Fixed bug #46645

2003-07-16  Lluis Sanchez Gual <lluis@ximian.com>

	* Identity.cs: Added TargetUri property

2003-04-10  Lluis Sanchez Gual <lluis@ideary.com>

	* ObjRef.cs: Fixed bug #43187, based on the patch by Jean-Marc Andre

2003-04-10  Lluis Sanchez Gual <lluis@ideary.com>

	* ObjRef.cs: Renamed ChannelInfoStore to ChannelInfo (match MS.NET)
	* RemotingServices.cs: Added method to help support Async messages.
	* RemotingConfiguration.cs: Implemented property ProcessID.

2003-03-24  Lluis Sanchez Gual <lluis@ideary.com>

	* RemotingServices.cs: Fixed bug #39915

2003-03-20  Lluis Sanchez Gual <lluis@ideary.com>

	* Identity.cs: Added support for dynamic properties.
	* ObjRef.cs: Removed some [MonoTODO]
	* TypeInfo.cs: Added support for interfaces.
	* RemotingServices.cs: Several fixes to support interfaces in proxies.

2003-03-15  Lluis Sanchez Gual <lluis@ideary.com>

	* RemotingServices.cs: fixes bugs #39380 and #39331.

2003-02-25 Lluis Sanchez Gual <lluis@ideary.com>

	* Identity.cs: Added property to check if an identity is connected (it is remotely accesible)
	* ObjRef.cs: Added internal helper method for getting the server type of an ObjRef.
	* RemotingServices.cs: Implemented Disconnect method. Added support for custom proxy
	  creating using ProxyAttribute. Added support for activation attributes in creation
	  of proxies. Some other minor corrections.
	* ServerIdentity.cs: minor corrections.

2003-02-18 Lluis Sanchez Gual <lluis@ideary.com>

	* Identity.cs: Added envoy message sink.
	* ObjRef.cs: Implemented EnvoySink property
	* RemotingConfiguration.cs: now enables proxy creation for types registered
	  as ClientActivatedType or WellKnownClientType.
	* RemotingServices.cs: Added support for ContextBoundObjects.
	  Added methods for creating proxies. 
	* ServerIdentity.cs: Added initialization of envoy sink.
	* EnvoyInfo.cs: Added. It is an implementation on IEnvoyInfo.

2003-02-08  Sebastien Pouliot  <spouliot@videotron.ca>

	* RemotingConfiguration.cs: Changed using to Mono.Xml for MiniParser.

2003-02-07 Patrik Torstensson

	* RemotingServices.cs: Always marshal an object in GetObjectData

2003-02-07 Lluis Sanchez Gual <lluis@ideary.com>

	* Identity.cs: Added ObjRef attribute, that holds the objref of the object.
	  Removed implementation of CreateObjRef. Now it is implemented in the derived classes.
	* ServerIdentity.cs: Added implementation of CreateObjRef.
	* RemotingServices.cs: Changed implementation of GetRemoteObject and GetClientIdentity.
	  Now they only have and ObjRef as input parameter. This is the objref received from
	  the server. Unmarshal() also checks if the objref is for a well known object.
	  In this case, a proxy is always created, but if not, it tries to get the real object.
	* ObjRef.cs: Added some flags that have info for marshalling/unmarshalling.
	  Changed behavior of IsPossibleToCAD. Now returns false. Returning true makes serialization 
	  of this ObjRef to fail in the target AD. Added method UpdateChannelInfo.

2003-02-04 Lluis Sanchez Gual <lluis@ideary.com>

	* Identity.cs: created and identity class for each identity type. It is a more clear design.
	* ServerIdentity.cs: added. Implements identity funtionality specific to server objects
	* RemotingServices.cs: Modified to work with new types of identities.
	* RemotingConfiguration.cs: Modified to work with new types of identities.
	* ObjRef.cs: Added initialization of channel info in default constructor.
	* Identity.cs: Added support for WellKnownService objects.

2003-02-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* RemotingServices.cs:
	(GetMethodBaseFromMethodMessage): fixed to make it also work with
	internal methods without MethodSignature (see ApplicationHost.cs).

2003-02-03 Patrik Torstensson

	* ObjRef.cs: added copy constructor and two helpers for cross 
	  appdomain message marshalling.
	* RemotingServices.cs: Added helper to create transparant proxy for appdomain, and
	  register internal cross appdomain channel.

2003-01-29 Lluis Sanchez Gual <lluis@ideary.com>

	* RemotingServices.cs: Added support for WellKnownService objects.
	* RemotingConfiguration.cs: Implemented most of methods (Configure is not working yet).
	* ObjRef.cs: Added initialization of channel info in default constructor.
	* Identity.cs: Added support for WellKnownService objects.

2003-01-28 Patrik Torstensson

	* ObjRef.cs: Fixed Objref marshalling flags
	
2003-01-24 Lluis Sanchez Gual <lluis@ideary.com>

	* RemotingServices.cs: Implemented some missing methods: IsMethodOverloaded, 
	  SetObjectUriForMarshal, IsOneWay, IsObjectOutOfAppDomain, 
	  IsObjectOutOfContext, GetObjRefForProxy, GetObjectData,
	  GetMethodBaseFromMethodMessage.
	* TypeInfo.cs: Added.
	* ObjRef.cs: Implemented serialization and added support for IRemotingTypeInfo.

2002-12-28 Lluis Sanchez Gual <lluis@ideary.com>

	* SoapServices.cs: Implemented some methods

2002-12-20 Lluis Sanchez Gual <lluis@ideary.com>

	* ObjRef.cs: Implementation now based on methods of RemotingServices.
	* RemotingServices.cs: Remoting information now kept in Identity objects.
	  All methods adapted to work with identities.
	  Renamed ExecuteMessage to InternalExecuteMessage. ExecuteMessage should
	  not make a direct call to the object.
	* Identity.cs: added.

2002-12-11  Jaime Anguiano Olarra <jaime@gnome.org>

	* RemotingConfiguration.cs: added to the CVS.

2002-11-29  Jaime Anguiano Olarra <jaime@gnome.org>

	* ObjectHandle.cs: added implementation  for InitializeLifetimeService
	* method.


2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* SoapServices.cs: fix error CS3005.

2002-09-03  Dietmar Maurer  <dietmar@ximian.com>

	* RemotingServices.cs: add an unique app_id string used to generate
	unique object uris.

	* ObjRef.cs: added serialization support

2002-08-31  Dietmar Maurer  <dietmar@ximian.com>

	* ObjRef.cs: gather the channel date at creation time.

2002-08-20  Dietmar Maurer  <dietmar@ximian.com>

	* RemotingServices.cs: Connect impl. 

2002-08-02  Duncan Mak  <duncan@ximian.com>

	* ActivatedClientTypeEntry.cs:
	* ActivatedServiceTypeEntry.cs:
	* WellKnownClientTypeEntry.cs:
	* WellKnownServiceTypeEntry.cs: Various visibility fixes.

2002-07-31  Duncan Mak  <duncan@ximian.com>

	* TypeEntry.cs:
	* ActivatedClientTypeEntry.cs:
	* ActivatedServiceTypeEntry.cs:
	* WellKnownClientTypeEntry.cs:
	* WellKnownServiceTypeEntry.cs: Added all the classes derived from TypeEntry.

	* RemotingException.cs: 
	* RemotingTimeoutException.cs: 
	* ServerException.cs: Added missing exceptions.

	* IChannelInfo.cs: 
	* IEnvoyInfo.cs: 
	* IRemotingTypeInfo.cs: Added missing interfaces.

2002-07-24  Duncan Mak  <duncan@ximian.com>

	* LeaseState.cs: Moved to System.Runtime.Remoting.Lifetime.

	* SoapMethodOption.cs: 
	* SoapOption.cs: Removed and merged into System.Runtime.Remoting.Metadata.SoapOption.

2002-07-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* IObjectHandle.cs: New file.
	* ObjectHandle.cs: implemented constructor and Unwrap.

2002-01-05  Ravi Pratap  <ravi@ximian.com>

	* ObjRef.cs : Strew the MonoTODO attribute.

2001-09-02  Miguel de Icaza  <miguel@ximian.com>

	* ObjRef.cs: Include System.Runtime.Serialization