ChangeLog 7.4 KB

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