ChangeLog 7.9 KB

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