ChangeLog 5.0 KB

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