ChangeLog 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. 2005-11-05 Robert Jordan <[email protected]>
  2. * IAuthorizeRemotingConnection.cs: Added.
  3. 2005-11-06 Svetlana Zholkovsky <[email protected]>
  4. * SoapMessageFormatter.cs, RemotingThreadPool.cs: only TARGET_JVM changes
  5. * Create new dictionary object for Properties during initialization:
  6. - SoapCore.cs
  7. - BinaryCore.cs
  8. 2005-05-18 Lluis Sanchez Gual <[email protected]>
  9. * BinaryServerFormatterSink.cs: Properly handle exceptions raised
  10. during serialization. Fixes bug #74950.
  11. 2005-01-14 Lluis Sanchez Gual <[email protected]>
  12. * SoapMessageFormatter.cs, SoapServerFormatterSink.cs: Fixed warnings.
  13. * RemotingThreadPool.cs: New thread pool for the tcp and http channels.
  14. 2004-07-26 Lluis Sanchez Gual <[email protected]>
  15. * SoapMessageFormater.cs: In BuildSoapMessageFromMethodResponse, add the
  16. return value to the SoapMessage even if it is null. This fixes bug #61837.
  17. 2004-07-06 Lluis Sanchez Gual <[email protected]>
  18. * SoapMessageFormatter.cs: In BuildMethodCallFromSoapMessage, set get the
  19. parameters from the SoapMessage by position, not by name, since names
  20. may be different. This fixes bug #60427.
  21. 2004-06-16 Lluis Sanchez Gual <[email protected]>
  22. * SoapServerFormatterSink.cs: Removed unneded method.
  23. 2004-06-10 Lluis Sanchez Gual <[email protected]>
  24. * SoapMessageFormatter.cs: Don't add the signature to the headers list if
  25. the method is not overloaded, and don't add the LogicalCallContext if
  26. it has no info.
  27. 2004-05-26 Lluis Sanchez Gual <[email protected]>
  28. * SoapMessageFormatter.cs: Include soap headers as properties when creating
  29. the IMessage, and add IMessage properties as headers when creating the
  30. SoapMessage. LogicalCallContext info will be passed as a header value.
  31. 2004-05-13 Lluis Sanchez Gual <[email protected]>
  32. * BinaryCore.cs, SoapCore.cs: Added Properties property.
  33. * BinaryServerFormatterSink.cs, SoapServerFormatterSink.cs: Added missing
  34. TypeFilterLevel property.
  35. * BinaryServerFormatterSinkProvider.cs: Fixed setter for TypeFilterLevel.
  36. * SoapServerFormatterSinkProvider.cs: Added missing TypeFilterLevel
  37. property.
  38. 2004-05-11 Lluis Sanchez Gual <[email protected]>
  39. * ChannelCore.cs: Use LoadWithPartialName when configuration information
  40. is not present.
  41. 2004-04-30 Lluis Sanchez Gual <[email protected]>
  42. * SoapClientFormatterSink.cs: The deserialized message can be actually a
  43. SoapFault. Taken this into account.
  44. * SoapMessageFormatter.cs: Added FormatFault method. In FormatResponse(),
  45. the array of output parameters must also include placeholders for the
  46. input parameters (set to null).
  47. ParameterInfo.IsOut does not correspond to the "out" keyword in C#, but
  48. to the OutAttribute applied to parameters. There can be input parameters
  49. with the OutAttribute. Fixed this in a couple of places.
  50. Added CreateSoapMessage method, which creates a SoapMessage including
  51. the parameter types (only for responses, since for requests the target
  52. method is not known).
  53. * SoapServerFormatterSink.cs: Use soapMsgFormatter.CreateSoapMessage to
  54. create the SoapMessage.
  55. 2004-02-27 Lluis Sanchez Gual <[email protected]>
  56. * BinaryClientFormatterSink.cs: Don't set the request uri here, this will
  57. be done in the transport sink.
  58. * BinaryCore.cs: Added TypeFilterLevel property.
  59. * BinaryServerFormatterSinkProvider.cs: Added missing TypeFilterLevel property.
  60. 2003-12-15 Lluis Sanchez Gual <[email protected]>
  61. * BinaryServerFormatterSinkProvider.cs, SoapServerFormatterSinkProvider.cs:
  62. Changed some ifdefs for allowedProperties field.
  63. 2003-12-11 Patrik Torstensson <[email protected]>
  64. * SoapMessageFormater.cs: Use GetMethod with signature if possible, solves
  65. AmbiguousMatchException for bug 51990.
  66. 2003-12-10 Lluis Sanchez Gual <[email protected]>
  67. * BinaryServerFormatterSinkProvider.cs: Removed TODO.
  68. * CommonTransportKeys.cs: Added some internal transport keys.
  69. 2003-11-21 Lluis Sanchez Gual <[email protected]>
  70. * BinaryClientFormatterSinkProvider.cs, BinaryServerFormatterSinkProvider.cs,
  71. BinaryCore.cs, BinaryServerFormatterSinkProvider.cs,
  72. SoapClientFormatterSinkProvider.cs, SoapCore.cs,
  73. SoapServerFormatterSinkProvider.cs.cs: Added support for TypeFilterLevel
  74. property.
  75. 2003-11-17 Lluis Sanchez Gual <[email protected]>
  76. * BinaryClientFormatterSinkProvider.cs, BinaryServerFormatterSinkProvider.cs:
  77. SoapClientFormatterSinkProvider.cs, SoapServerFormatterSinkProvider.cs: Small fix.
  78. * SoapServerFormatterSink.cs: Small fix in AsyncProcessResponse.
  79. * BinaryCore.cs, SoapCore.cs: throw an exception if an unknown property
  80. is found.
  81. 2003-11-16 Lluis Sanchez Gual <[email protected]>
  82. * BinaryClientFormatterSink.cs, BinaryClientFormatterSinkProvider.cs,
  83. BinaryServerFormatterSink.cs, BinaryServerFormatterSinkProvider.cs:
  84. Moved formatter code to BinaryCore. This adds support for the properties
  85. "includeVersion" and "strictBinding" to the binary formatter.
  86. * BinaryCore.cs: New file. Contains some code used by the binary formatter sinks.
  87. * SoapClientFormatterSink.cs, SoapClientFormatterSinkProvider.cs,
  88. SoapServerFormatterSink.cs, SoapServerFormatterSinkProvider.cs
  89. Moved formatter code to BinaryCore. This adds support for the properties
  90. "includeVersion" and "strictBinding" to the soap formatter.
  91. * SoapCore.cs: New file. Contains some code used by the soap formatter sinks.
  92. * ChannelCore.cs: New file. Implements a simple type binder used by the
  93. formatter sinks.
  94. 2003-11-12 Lluis Sanchez Gual <[email protected]>
  95. * BinaryServerFormatterSink.cs: Removed fixme.
  96. * BinaryServerFormatterSinkProvider.cs: Removed a NotImplementedException.
  97. * SoapServerFormatterSinkProvider.cs: Removed some TODOs.
  98. 2003-09-25 Lluis Sanchez Gual <[email protected]>
  99. * SoapMessageFormatter.cs: Consider parameters with Out flag when collectiong
  100. out parameters.
  101. 2003-08-22 Lluis Sanchez Gual <[email protected]>
  102. * SoapClientFormatterSink.cs: Fixed a some bugs to make async calls work.
  103. * SoapMessageFormatter.cs: Fixed some problems with out and ref parameters.
  104. * SoapServerFormatterSink.cs: Improved catching of exceptions.
  105. 2003-07-23 Lluis Sanchez Gual <[email protected]>
  106. * SoapMessageFormatter.cs: ParameterInfo.Position is now zero-based.
  107. Fixed methods that use it.
  108. 2003-07-09: Jean-Marc André <[email protected]>
  109. * SoapClientFormatterSink.cs, SoapClientFormatterSinkProvider.cs,
  110. SoapServerFormatterSink.cs, SoapServerFormatterSinkProvider.cs,
  111. SoapMessageFormatter.cs: Support for the soap serialization added to
  112. the remoting infrastructure.