ChangeLog 6.1 KB

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