ChangeLog 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476
  1. 2009-05-13 Atsushi Enomoto <[email protected]>
  2. * ReplyHandler.cs, InputOrReplyRequestProcessor.cs,
  3. MessageProcessingContext.cs : reply processing is also needed by
  4. non-request channels (i.e. duplex). Current code basis lacked
  5. such possibility. Quick fix by adding duplex support in
  6. ReplyHandler so far.
  7. 2009-05-13 Atsushi Enomoto <[email protected]>
  8. * ChannelDispatcher.cs, SecurityHandler.cs,
  9. InputOrReplyRequestProcessor.cs, MessageProcessingContext.cs :
  10. remove default communication timeouts from several types. They
  11. bring bogus NRE. Instead, fill timeouts in ChannelDispatcher and
  12. use it when required (it was actually *only* request processor).
  13. 2009-05-13 Atsushi Enomoto <[email protected]>
  14. * ChannelDispatcher.cs : wrong channel argument.
  15. 2009-04-27 Atsushi Enomoto <[email protected]>
  16. * DispatchRuntime.cs : some comment.
  17. * ChannelDispatcher.cs : ongoing changes to handle listeners and
  18. accepted channels at more precise state. Listeners are opened,
  19. without accepting channels. Some setup code is done at OnOpen(),
  20. while some are done at OnOpened().
  21. 2009-04-23 Atsushi Enomoto <[email protected]>
  22. * DispatchOperation.cs : implement GetFormatter() at service side too.
  23. 2009-04-01 Atsushi Enomoto <[email protected]>
  24. * OperationInvokeHandler.cs : replace MS copycat exception message.
  25. 2009-02-26 Atsushi Enomoto <[email protected]>
  26. * ClientRuntime.cs : fill contractType in .ctor().
  27. 2009-02-04 Atsushi Enomoto <[email protected]>
  28. * BaseMessagesFormatter.cs : do not use non-2.1 CreateInstance().
  29. 2008-06-18 Noam Lampert <[email protected]>
  30. * ChannelDispatcher.cs: Avoid aborting host process on faulty input message.
  31. 2008-05-22 Noam Lampert <[email protected]>
  32. * OperationInvokeHandler.cs: Only return fault reply when TargetInvocation occured (not other internal
  33. errors. Serlialize the correct (inner) exception.
  34. 2008-05-22 Roei Erez <[email protected]>
  35. * fix ContractDescription.GetContract implementation
  36. * Refactor Request processing
  37. * Add support for message inspectors
  38. * Add support for InstanceContextProvider & InstanceProvider, including lifecycles events
  39. like: ReleaseServiceInstance, Open, Close...
  40. * Add relevant test cases.
  41. 2008-05-01 Eyal Alaluf <[email protected]>
  42. * BaseMessagesFormatter.cs: Handle methods with out parameters that return
  43. void.
  44. * DispatchOperation.cs, IOperationInvoker.cs: Simplify method invocation.
  45. 2008-04-22 Igor Zelmanovich <[email protected]>
  46. * DispatchOperation.cs: removed dependency on OperationDescription,
  47. allows usage of custom channel dispatcher without endpoint was explicitly
  48. built
  49. 2008-04-22 Igor Zelmanovich <[email protected]>
  50. * MexInstanceContextProvider.cs - remove unused code.
  51. 2008-04-21 Roei Erez <[email protected]>
  52. * ChannelDispatcher.cs - Change order of Dispatcher shutdown
  53. 2008-04-17 Vladimir Krasnov <[email protected]>
  54. * ChannelDispatcher.cs, EndpointDispatcher.cs: removed dependency on
  55. ServiceDescription/ServiceEndpoint, allows usage of channel dispatcher
  56. without endpoint was explicitly built
  57. * EndpointDispatcher.cs: Filters lazy evaluation, refactored
  58. communication processing, logic moved to channel dispatcher
  59. 2008-04-17 Vladimir Krasnov <[email protected]>
  60. * ActionMessageFilter.cs: fixed Match, match for "*" action
  61. 2008-04-17 Vladimir Krasnov <[email protected]>
  62. * DispatchOperation.cs: fixed ProcessRequest, fault message creation
  63. 2008-04-10 Eyal Alaluf <[email protected]>
  64. * DefaultMessageOperationFormatter.cs: Moved to BaseMessagesFormatter.cs.
  65. * BaseMessagesFormatter.cs: Refactored so typed messages uses the classes
  66. defined here instead of the other way around.
  67. Added support for by-ref and out parameters.
  68. Added support for XmlSerializerFormat serializaters..
  69. * DispatchOperation.cs, ClientOperation.cs: Use BaseMessagesFormatter.Create
  70. 2008-04-09 Roei Erez <[email protected]>
  71. * Remove unused nethod from previous commit
  72. 2008-04-08 Roei Erez <[email protected]>
  73. * ChannelDispatcher.cs
  74. - fix 'Attach' logic
  75. - Add support for Endpoints property
  76. - Remove the hack of 'endpoint_dispatcher' field
  77. * ChannelDispatcherCollection.cs
  78. - Add support for 'Attach' 'Detach'
  79. * EndpointDispatcher.cs
  80. - By default create MatchAllMessageFilter.
  81. 2008-02-17 Atsushi Enomoto <[email protected]>
  82. * EndpointDispatcher.cs : we don't need AddressFilter workaround
  83. from Feb. 14 anymore.
  84. 2008-02-17 Atsushi Enomoto <[email protected]>
  85. * EndpointDispatcher.cs : after service method call, apply outgoing
  86. headers and properties to the returned message.
  87. 2008-02-15 Atsushi Enomoto <[email protected]>
  88. * ChannelDispatcher.cs : populate DispatchOperations before applying
  89. IEndpointBehaviors so that those behaviors can modify dispatch
  90. operations.
  91. 2008-02-15 Atsushi Enomoto <[email protected]>
  92. * DispatchOperation.cs : Action may be null. For such cases, use
  93. MessageDirection to determine the message description.
  94. 2008-02-15 Atsushi Enomoto <[email protected]>
  95. * EndpointAddressMessageFilter.cs : implement Match(MessageBuffer).
  96. Use ordinal string comparison.
  97. * PrefixEndpointAddressMessageFilter.cs : implement Match() (both).
  98. 2008-02-14 Atsushi Enomoto <[email protected]>
  99. * EndpointDispatcher.cs : moved AddressFilter application only when
  100. DispatchOperation was not selected (it is sort of workaround).
  101. 2007-08-19 Atsushi Enomoto <[email protected]>
  102. * DefaultMessageOperationFormatter.cs : Fixed SerializeReply() for
  103. message contract type to process result, not the parameter.
  104. 2007-08-19 Atsushi Enomoto <[email protected]>
  105. * SingletonInstanceContextProvider.cs : new.
  106. 2007-08-17 Atsushi Enomoto <[email protected]>
  107. * DefaultMessageOperationFormatter.cs : dependent changes on
  108. message serializer and deserializer.
  109. 2007-03-24 Atsushi Enomoto <[email protected]>
  110. * DefaultMessageOperationFormatter.cs :
  111. use it for deserialization as well.
  112. 2007-03-24 Atsushi Enomoto <[email protected]>
  113. * DefaultMessageOperationFormatter.cs : consider message contracts
  114. during message serialization/deserialization.
  115. 2007-03-07 Atsushi Enomoto <[email protected]>
  116. * EndpointDispatcher.cs : now dispatcher-side foundation for token
  117. negotiation is ready. Handle negotiation message on its own way.
  118. * DispatchOperation.cs : instead of returning irrelevant SOAP Fault,
  119. simply raise an error and let FaultConverter do better work.
  120. 2007-03-07 Atsushi Enomoto <[email protected]>
  121. * EndpointDispatcher.cs : use ErrorHandlers when error was raised.
  122. Handle exceptions to make into SOAP Fault, using FaultConverter.
  123. * ChannelDispatcher.cs : simply get ServiceEndpoint at Attach().
  124. * ChannelDispatcherBase.cs : removed MonoTODOs.
  125. 2007-03-07 Atsushi Enomoto <[email protected]>
  126. * ChannelDispatcher.cs, DispatchRuntime.cs, EndpointDispatcher.cs :
  127. moved most of request/input processing to EndpointDispatcher.cs.
  128. Also, ChannelDispatcher now contains code for behavior
  129. initialization.
  130. 2007-03-07 Atsushi Enomoto <[email protected]>
  131. * ChannelDispatcher.cs : some cosmetic refactoring on error handling
  132. with comments.
  133. 2006-12-14 Atsushi Enomoto <[email protected]>
  134. * ChannelDispatcher.cs, DispatchRuntime.cs, DispatchOperation.cs :
  135. Support OperationContext and OperationContextScope with
  136. ServiceRuntimeChannel as its .ctor() input.
  137. 2006-12-14 Atsushi Enomoto <[email protected]>
  138. * DispatchRuntime.cs : raise an error when the DispatchOperation
  139. returned null Message.
  140. 2006-10-18 Ankit Jain <[email protected]>
  141. * MexInstanceContextProvider.cs (HttpGetInstanceContextProvider): New.
  142. * DispatchOperation.cs (DoProcessRequest): InstanceContext returned by
  143. the provider can be null.
  144. * EndpointAddressMessageFilter.cs (Match): Handle IncludeHostNameInComparison.
  145. 2006-10-12 Atsushi Enomoto <[email protected]>
  146. * DispatchOperation.cs : slightly improved exception message.
  147. 2006-10-06 Ankit Jain <[email protected]>
  148. * ChannelDispatcher.cs (ListenerLoopManager.StartLoopCore):
  149. ReceiveRequest can return null.
  150. 2006-10-05 Atsushi Enomoto <[email protected]>
  151. * ClientRuntime.cs : added MaxFaultSize.
  152. 2006-10-05 Atsushi Enomoto <[email protected]>
  153. * ChannelDispatcher.cs : don't reject anonymous and null To.
  154. 2006-10-04 Ankit Jain <[email protected]>
  155. * ChannelDispatcher.cs (ListenerLoopManager.StartLoopCore): Reply with a
  156. Fault message if message's To doesn't match the endpoint.
  157. (ListenerLoopManager.CreateDestinationUnreachable): New.
  158. * IInstanceContextProvider.cs: New.
  159. * MexInstanceContextProvider.cs: New. InstanceContextProvider for
  160. MetadataExchange.
  161. (MetadataExchange): Implementation of IMetadataExchange.
  162. * DispatchRuntime.cs (InstanceContextProvider): Add missing property.
  163. * DispatchOperation.cs (DoProcessRequest): Use InstanceContextProvider
  164. if available to obtain service instance.
  165. * EndpointDispatcher.cs (.ctor): Set AddressFilter to EndpointAddressMessageFilter.
  166. * EndpointAddressMessageFilter.cs (Match): Implement.
  167. 2006-10-03 Atsushi Enomoto <[email protected]>
  168. * ClientRuntime.cs : added InteractiveChannelInitializer.
  169. 2006-09-12 Atsushi Enomoto <[email protected]>
  170. * DispatchOperation.cs : removed extra comment.
  171. 2006-09-08 Atsushi Enomoto <[email protected]>
  172. * DispatchOperation.cs : workaround to send exception detail.
  173. 2006-09-06 Atsushi Enomoto <[email protected]>
  174. * ICallContextInitializer.cs : new file.
  175. * DispatchOperation.cs : use above.
  176. Not sure if it works correctly though.
  177. 2006-08-28 Atsushi Enomoto <[email protected]>
  178. * DispatchOperation.cs : when there is an error during
  179. ProcessRequest(), wrap the exception with MessageFault and return
  180. a fault message.
  181. 2006-08-10 Duncan Mak <[email protected]>
  182. * ExceptionHandler.cs: New file.
  183. * ServiceThrottle.cs (MaxConnections): Renamed to
  184. MaxConcurrentSessions.
  185. (MaxInstances): Renamed to MaxConcurrentInstances.
  186. 2006-07-27 Atsushi Enomoto <[email protected]>
  187. * IInteractiveChannelInitializer.cs : new file.
  188. 2006-07-14 Atsushi Enomoto <[email protected]>
  189. * IErrorHandler.cs : API updates.
  190. 2006-07-13 Atsushi Enomoto <[email protected]>
  191. * DispatchRuntime.cs :
  192. it was selecting UnhandledOperation unexpectedly.
  193. * DispatchOperation.cs : added FIXME comment.
  194. 2006-07-13 Atsushi Enomoto <[email protected]>
  195. * DefaultMessageOperationFormatter.cs : Remove hack for non-
  196. (de)serializing Message-based methods. They are now moved to
  197. ClientBase and ServiceHostBase to explicitly set
  198. [Serialize|Deserialize][Request|Reply].
  199. 2006-07-12 Atsushi Enomoto <[email protected]>
  200. * DefaultMessageOperationFormatter.cs : don't omit action on
  201. SerializeRequest. Do it in SerializeReply.
  202. 2006-07-12 Atsushi Enomoto <[email protected]>
  203. * DefaultMessageOperationFormatter.cs : When addressing version is
  204. None, then omit reply action. This logic is moved from MessageImpl.
  205. 2006-07-11 Atsushi Enomoto <[email protected]>
  206. * DefaultMessageOperationFormatter.cs :
  207. return message, not parameter[0]. Removed some extra FIXMEs.
  208. 2006-07-10 Atsushi Enomoto <[email protected]>
  209. * DefaultMessageOperationFormatter.cs : when the parameter is
  210. Message and the return type is Message, then do not use
  211. XmlObjectSerializer.
  212. 2006-07-07 Atsushi Enomoto <[email protected]>
  213. * PrefixEndpointAddressMessageFilter.cs, FaultContractInfo.cs :
  214. new types in June CTP.
  215. * ISharedInstanceSessionLifetime.cs:
  216. removed in June CTP.
  217. * ChannelDispatcher.cs, MatchAllMessageFilter.cs, DispatchRuntime.cs,
  218. DispatchOperation.cs, ClientRuntime.cs, MatchNoneMessageFilter.cs,
  219. ClientOperation.cs, ActionMessageFilterTable.cs,
  220. EndpointAddressMessageFilterTable.cs :
  221. several minor fixes for June CTP.
  222. 2006-07-06 Atsushi Enomoto <[email protected]>
  223. * DispatchOperation.cs : MessageFault.DefaultAction vanished.
  224. 2006-07-05 Atsushi Enomoto <[email protected]>
  225. * IClientFormatter.cs, IClientMessageFormatter.cs,
  226. IDispatchFormatter.cs, IDispatchMessageFormatter.cs :
  227. renamed former to latter, for each.
  228. 2006-07-05 Atsushi Enomoto <[email protected]>
  229. * ChannelDispatcher.cs, DispatchRuntime.cs :
  230. IRequestContext -> RequestContext.
  231. 2006-07-05 Atsushi Enomoto <[email protected]>
  232. * ChannelDispatcher.cs, IDispatchFormatter.cs,
  233. DefaultMessageOperationFormatter.cs, IClientFormatter.cs,
  234. DispatchOperation.cs, ClientOperation.cs :
  235. some June CTP updates.
  236. 2006-06-22 Atsushi Enomoto <[email protected]>
  237. * DefaultMessageOperationFormatter.cs : implement SerializeRequest()
  238. and DeserializeReply(). Now simple ClientBase<T> sample is working.
  239. 2006-06-22 Atsushi Enomoto <[email protected]>
  240. * ClientOperation.cs : added GetFormatter() to support message
  241. serialization/deserialization.
  242. * DispatchOperation.cs : made some internal members private
  243. (they are exposed extraneously). Commented out debugging code.
  244. 2006-06-20 Atsushi Enomoto <[email protected]>
  245. * DefaultMessageOperationFormatter.cs : In SerializeReply(), use
  246. custom BodyWriter() and use MessagePartDescription names. Now
  247. return value and other (ref/out) parameters could be equivalently
  248. serialized (at this method; to support them more love is needed).
  249. 2006-06-20 Atsushi Enomoto <[email protected]>
  250. * DefaultMessageOperationFormatter.cs :
  251. Action for response is null (though it is likely conditional).
  252. 2006-06-20 Atsushi Enomoto <[email protected]>
  253. * DefaultMessageOperationFormatter.cs :
  254. true DeserializeReply implementation using Message.CreateMessage()
  255. with DataContractSerializer (not complete though).
  256. 2006-05-29 Atsushi Enomoto <[email protected]>
  257. * ChannelDispatcher.cs, DispatchOperation.cs,
  258. ChannelDispatcherBase.cs :
  259. some updated API fixes.
  260. 2006-05-29 Atsushi Enomoto <[email protected]>
  261. * EndpointDispatcher.cs : moved from Sys.ServiceModel.
  262. 2006-04-20 Atsushi Enomoto <[email protected]>
  263. * ClientRuntime.cs : some minor collection instantiation and comments.
  264. 2006-04-07 Atsushi Enomoto <[email protected]>
  265. * DispatchOperation.cs : Implemented internal MessageVersion.
  266. hacked instance provision by using Activator.CreateInstance.
  267. * DefaultMessageOperationFormatter.cs : fixed DeserializeRequest to
  268. be functional. Implemented SerializeReply.
  269. 2006-04-05 Atsushi Enomoto <[email protected]>
  270. * DispatchOperation.cs : return SOAP fault message for nonexistent
  271. request Action.
  272. * DefaultMessageOperationFormatter.cs : implemented
  273. DeserializeRequest(), though there is no working example.
  274. 2006-03-17 Atsushi Enomoto <[email protected]>
  275. * DispatchOperation.cs : implemented logic to acquire
  276. OperationDescription. Added code for default IDispatchFormatter
  277. implementation.
  278. * DispatchRuntime.cs : fix warning.
  279. * DefaultMessageOperationFormatter.cs : new file, for default
  280. IDispatchFormatter implementation (not done yet).
  281. * ChannelDispatcher.cs : create EndpointDispatcher in Attach and
  282. bind to this instance.
  283. 2006-03-16 Atsushi Enomoto <[email protected]>
  284. * ChannelDispatcherCollection.cs : added parameterless ctor().
  285. * ChannelDispatcher.cs DispatchRuntime.cs DispatchOperation.cs :
  286. Set some initial field values as proved in unit tests.
  287. Request/input processing is still ongoing.
  288. 2006-03-13 Atsushi Enomoto <[email protected]>
  289. * ChannelDispatcher.cs
  290. DispatchRuntime.cs
  291. DispatchOperation.cs : added request/input processing code.
  292. 2006-03-07 Atsushi Enomoto <[email protected]>
  293. * ChannelDispatcher.cs : Get "AcceptChannel" method without ambiguity.
  294. 2006-03-07 Atsushi Enomoto <[email protected]>
  295. * ChannelDispatcher.cs : Added request-processing code.
  296. 2006-03-06 Atsushi Enomoto <[email protected]>
  297. * ChannelDispatcher.cs : implement Attach() and Detach() more to work.
  298. 2006-02-23 Atsushi Enomoto <[email protected]>
  299. * DispatchBehavior.cs :
  300. Dependent fixes for System.IdentityModel reorgainzation.
  301. 2006-02-23 Atsushi Enomoto <[email protected]>
  302. * FilterNodeQuotaExceededException.cs
  303. FilterInvalidBodyAccessException.cs DispatchBehavior.cs
  304. DispatchOperation.cs NavigatorInvalidBodyAccessException.cs
  305. MatchNoneFilter.cs ActionFilter.cs
  306. MultipleFilterMatchesException.cs Filter.cs
  307. IInstanceContextInitializer.cs XPathFilter.cs
  308. IDispatchOperationSelector.cs MatchAllFilter.cs
  309. ActionFilterTable.cs EndpointAddressFilter.cs FilterTable.cs
  310. EndpointFilterTable.cs XPathMessageContext.cs
  311. IEndpointDispatcher.cs ProxyBehavior.cs
  312. ProxyOperation.cs XPathFilterTable.cs
  313. EndpointAddressFilterTable.cs InvalidBodyAccessException.cs
  314. IFilterTable.cs IOperationInvoker.cs :
  315. moved from System.ServiceModel due to the API changes.