ChangeLog 5.9 KB

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