ChangeLog 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741
  1. 2009-12-07 Atsushi Enomoto <[email protected]>
  2. * InstanceBehavior.cs : allow nonpublic instance.
  3. * DefaultOperationInvoker.cs : do use IsSynchronous correctly.
  4. 2009-10-22 Atsushi Enomoto <[email protected]>
  5. * ChannelDispatcher.cs : disable concurrent channel acceptance
  6. until it gets working fine.
  7. 2009-10-16 Atsushi Enomoto <[email protected]>
  8. * ChannelDispatcher.cs : fix warnings.
  9. 2009-10-16 Atsushi Enomoto <[email protected]>
  10. * ClientOperation.cs, ClientRuntime.cs : another couple of changes
  11. are required to not use non-SL types.
  12. 2009-10-16 Atsushi Enomoto <[email protected]>
  13. * ClientRuntime.cs : enable Operations property on monotouch.
  14. Hopefully it will enable us to build WebHttpBinding.
  15. 2009-10-09 Atsushi Enomoto <[email protected]>
  16. * ChannelDispatcher.cs : OnOpened/OnOpening constraints related
  17. changes were required here too. Actually it simplified code.
  18. 2009-10-06 Atsushi Enomoto <[email protected]>
  19. * OperationInvokerHandler.cs : a bit more explaining message.
  20. 2009-10-05 Atsushi Enomoto <[email protected]>
  21. * ChannelDispatcher.cs : make sure to close, *and* abort channels
  22. in case they failed to close. Also consider close timeouts.
  23. Rename a field to make less confusing.
  24. 2009-09-17 Atsushi Enomoto <[email protected]>
  25. * ChannelDispatcher.cs, EndpointDispatcher.cs :
  26. when an EndpointDispatcher is added to ChannelDispatcher, its
  27. ChannelDispatcher property is automatically filled. To do this,
  28. create a derived collection type for Endpoints (that's what .NET
  29. does). Remove extra InitializeEndpoint() argument.
  30. 2009-09-17 Atsushi Enomoto <[email protected]>
  31. * OperationInvokerHandler.cs : make error message a bit verbose.
  32. 2009-09-16 Atsushi Enomoto <[email protected]>
  33. * ChannelDispatcher.cs : make sure to close the request context,
  34. some channels such as http keeps opening it. Patch by Levi Bard.
  35. Fixed bug #533776.
  36. 2009-09-14 Atsushi Enomoto <[email protected]>
  37. * ChannelDispatcher.cs : do not try to wait for channel closer
  38. handle when the loop is not started yet. This fixes lengthy wait
  39. in the nunit tests.
  40. 2009-09-11 Atsushi Enomoto <[email protected]>
  41. * EndpointDispatcher.cs : AddressFilter is always non-null.
  42. * DispatchRuntime.cs : CallbackClientRuntime seems to be created even
  43. for non-callback dispatchers. Fixing this also results in fixes in
  44. couple of nunit regressions.
  45. * InputOrReplyRequestProcessor.cs : the change above required fix
  46. here too (it has null check).
  47. 2009-09-11 Atsushi Enomoto <[email protected]>
  48. * BaseMessagesFormatter.cs, DefaultOperationInvoker.cs:
  49. Fix the crash that ref parameter in contract methods caused.
  50. 2009-09-04 Atsushi Enomoto <[email protected]>
  51. * OperationInvokerHandler.cs, ReplyHandler.cs :
  52. - Eliminate ReplyHandler use. What is does is simple reply, while
  53. it brings inconsistency between sync and async models.
  54. What reply handler used to do are now integrated.
  55. - Support ErrorHandlers and InputSessionShutdownHandlers.
  56. Actually ErrorHandlers were processed at wrong place and they
  57. weren't called where they are expected.
  58. * InputOrReplyRequestProcessor.cs : hence eliminated ReplyHandler.
  59. * BaseRequestProcessor.cs : add FIXME notes on ErrorHandlers.
  60. 2009-09-04 Atsushi Enomoto <[email protected]>
  61. * ChannelDispatcher.cs : remove obsoleted method.
  62. 2009-09-02 Atsushi Enomoto <[email protected]>
  63. * BaseMessagesFormatter.cs :
  64. implement XmlBodyWriter.OnCreateBufferedCopy().
  65. 2009-08-24 Atsushi Enomoto <[email protected]>
  66. * CallbackInstanceContextProvider.cs : new instance context provider
  67. used by duplex client dispatcher.
  68. 2009-08-24 Atsushi Enomoto <[email protected]>
  69. * SecurityHandler.cs : skip callback duplex blocker.
  70. 2009-08-24 Atsushi Enomoto <[email protected]>
  71. * EndpointDispatcher.cs, ChannelDispatcher.cs : differentiate
  72. service dispatch and callback client dispatch at initialization.
  73. 2009-08-21 Atsushi Enomoto <[email protected]>
  74. * ChannelDispatcher.cs : also made reference to host optional.
  75. 2009-08-21 Atsushi Enomoto <[email protected]>
  76. * ChannelDispatcher.cs : isolated loop manager class from parent,
  77. as well as moved some code from parent.
  78. 2009-08-21 Atsushi Enomoto <[email protected]>
  79. * ChannelDispatcherCollection.cs : remove extra members.
  80. 2009-08-21 Atsushi Enomoto <[email protected]>
  81. * ChannelDispatcher.cs, EndpointDispatcher.cs :
  82. moved some initialization code from ServiceHostBase, to start
  83. reducing dependencies on ServiceHostBase.
  84. 2009-08-20 Atsushi Enomoto <[email protected]>
  85. * ChannelDispatcher.cs : handle unknown message in host event.
  86. 2009-08-17 Atsushi Enomoto <[email protected]>
  87. * EndpointDispatcher.cs : do not try to create wrong filter.
  88. 2009-08-14 Atsushi Enomoto <[email protected]>
  89. * ChannelDispatcher.cs : EndpointNotFoundException message could
  90. be a bit kindful.
  91. 2009-08-11 Atsushi Enomoto <[email protected]>
  92. * IOperationInvoker.cs : fix interface.
  93. * DefaultOperationInvoker.cs : refresh implementation of the above.
  94. * BaseMessagesFormatter.cs, OperationInvokerHandler.cs :
  95. dependent changes for above.
  96. 2009-08-07 Atsushi Enomoto <[email protected]>
  97. * InputOrReplyRequestProcessor.cs : now it could return an instance
  98. of dynamically generated proxy over DuplexServiceRuntimeChannel.
  99. 2009-08-07 Atsushi Enomoto <[email protected]>
  100. * ClientRuntime.cs : oops, it should have been committed at a time.
  101. Change .ctor() args. Make some properties auto.
  102. 2009-08-07 Atsushi Enomoto <[email protected]>
  103. * DispatchRuntime.cs : callback runtime is set later.
  104. 2009-08-06 Atsushi Enomoto <[email protected]>
  105. * ClientRuntime.cs :
  106. .ctor() just needs contract. Fill some properties.
  107. 2009-08-04 Atsushi Enomoto <[email protected]>
  108. * ReplyHandler.cs : there is better way to check IsOneWay.
  109. 2009-08-04 Atsushi Enomoto <[email protected]>
  110. * OperationInvokerHandler.cs : One way operation has no reply.
  111. * ReplyHandler.cs : ditto.
  112. 2009-07-31 Atsushi Enomoto <[email protected]>
  113. * ChannelDispatcher.cs : raise error on multiple endpoint match
  114. (documented at EndpointDispatcher.FilterPriority).
  115. 2009-07-28 Atsushi Enomoto <[email protected]>
  116. * ChannelDispatcher.cs : move Open() inside acceptor lock, so that
  117. the channel does not have to be fired Receive() before Open().
  118. 2009-07-14 Atsushi Enomoto <[email protected]>
  119. * DispatchRuntime.cs : add ValidateMustUnderstand.
  120. * DispatchOperation.cs : add AutoDisposeParameters.
  121. 2009-07-02 Atsushi Enomoto <[email protected]>
  122. * ChannelDispatcher.cs : when service instance is provided to the
  123. ServiceHost, do not reject Type-less state.
  124. 2009-06-29 Atsushi Enomoto <[email protected]>
  125. * ChannelDispatcher.cs : do not iterate extra channel acceptance
  126. and hence close channels a bit more gracefully.
  127. 2009-06-25 Atsushi Enomoto <[email protected]>
  128. * ChannelDispatcher.cs : instead of discarding channels, reuse them
  129. unless it is closed by session manager (session manager does not
  130. work, so channels are not actually closed automatically yet).
  131. 2009-06-25 Atsushi Enomoto <[email protected]>
  132. * SessionInstanceContextProvider.cs : new instance context provider.
  133. 2009-06-23 Atsushi Enomoto <[email protected]>
  134. * DispatchRuntime.cs : do not fill InstanceContextProvider here.
  135. * ChannelDispatcher.cs : do it here instead.
  136. * ChannelDispatcherCollection.cs : remove TODOs.
  137. 2009-06-23 Atsushi Enomoto <[email protected]>
  138. * InputOrReplyRequestProcessor.cs : bogus initialization.
  139. 2009-06-18 Atsushi Enomoto <[email protected]>
  140. * ChannelDispatcher.cs : significant changes:
  141. - simplified Open/Close async.
  142. - implement OnAbort().
  143. - create ServiceThrottle when it is null.
  144. - Channels are accepted as much as the throttle allows, and
  145. process requests when accepted an input (now it holds more than
  146. one channel).
  147. - Support ReceiveSynchronously and use Begin/EndAcceptChannel()
  148. for async pattern.
  149. - Close all channels and the listener when it is closed.
  150. - Cosmetic simplification on channel acceptor delegate creation.
  151. 2009-06-09 Atsushi Enomoto <[email protected]>
  152. * ChannelDispatcher.cs : avoid NRE (actually it should eliminate
  153. Thread.Abort()). Added some comments on throttling.
  154. 2009-06-09 Atsushi Enomoto <[email protected]>
  155. * ServiceThrottle.cs : implement.
  156. 2009-06-08 Atsushi Enomoto <[email protected]>
  157. * ChannelDispatcher.cs :
  158. Add call to base (see CommunicationObject change).
  159. 2009-06-01 Atsushi Enomoto <[email protected]>
  160. * ChannelDispatcher.cs : handle more errors gracefully.
  161. 2009-05-18 Atsushi Enomoto <[email protected]>
  162. * ErrorProcessingHandler.cs, InputOrReplyRequestProcessor.cs :
  163. they also premise request-reply channel and broke duplex channels.
  164. 2009-05-13 Atsushi Enomoto <[email protected]>
  165. * ChannelDispatcher.cs : open channel before using it.
  166. 2009-05-13 Atsushi Enomoto <[email protected]>
  167. * ReplyHandler.cs, InputOrReplyRequestProcessor.cs,
  168. MessageProcessingContext.cs : reply processing is also needed by
  169. non-request channels (i.e. duplex). Current code basis lacked
  170. such possibility. Quick fix by adding duplex support in
  171. ReplyHandler so far.
  172. 2009-05-13 Atsushi Enomoto <[email protected]>
  173. * ChannelDispatcher.cs, SecurityHandler.cs,
  174. InputOrReplyRequestProcessor.cs, MessageProcessingContext.cs :
  175. remove default communication timeouts from several types. They
  176. bring bogus NRE. Instead, fill timeouts in ChannelDispatcher and
  177. use it when required (it was actually *only* request processor).
  178. 2009-05-13 Atsushi Enomoto <[email protected]>
  179. * ChannelDispatcher.cs : wrong channel argument.
  180. 2009-04-27 Atsushi Enomoto <[email protected]>
  181. * DispatchRuntime.cs : some comment.
  182. * ChannelDispatcher.cs : ongoing changes to handle listeners and
  183. accepted channels at more precise state. Listeners are opened,
  184. without accepting channels. Some setup code is done at OnOpen(),
  185. while some are done at OnOpened().
  186. 2009-04-23 Atsushi Enomoto <[email protected]>
  187. * DispatchOperation.cs : implement GetFormatter() at service side too.
  188. 2009-04-01 Atsushi Enomoto <[email protected]>
  189. * OperationInvokeHandler.cs : replace MS copycat exception message.
  190. 2009-02-26 Atsushi Enomoto <[email protected]>
  191. * ClientRuntime.cs : fill contractType in .ctor().
  192. 2009-02-04 Atsushi Enomoto <[email protected]>
  193. * BaseMessagesFormatter.cs : do not use non-2.1 CreateInstance().
  194. 2008-06-18 Noam Lampert <[email protected]>
  195. * ChannelDispatcher.cs: Avoid aborting host process on faulty input message.
  196. 2008-05-22 Noam Lampert <[email protected]>
  197. * OperationInvokeHandler.cs: Only return fault reply when TargetInvocation occured (not other internal
  198. errors. Serlialize the correct (inner) exception.
  199. 2008-05-22 Roei Erez <[email protected]>
  200. * fix ContractDescription.GetContract implementation
  201. * Refactor Request processing
  202. * Add support for message inspectors
  203. * Add support for InstanceContextProvider & InstanceProvider, including lifecycles events
  204. like: ReleaseServiceInstance, Open, Close...
  205. * Add relevant test cases.
  206. 2008-05-01 Eyal Alaluf <[email protected]>
  207. * BaseMessagesFormatter.cs: Handle methods with out parameters that return
  208. void.
  209. * DispatchOperation.cs, IOperationInvoker.cs: Simplify method invocation.
  210. 2008-04-22 Igor Zelmanovich <[email protected]>
  211. * DispatchOperation.cs: removed dependency on OperationDescription,
  212. allows usage of custom channel dispatcher without endpoint was explicitly
  213. built
  214. 2008-04-22 Igor Zelmanovich <[email protected]>
  215. * MexInstanceContextProvider.cs - remove unused code.
  216. 2008-04-21 Roei Erez <[email protected]>
  217. * ChannelDispatcher.cs - Change order of Dispatcher shutdown
  218. 2008-04-17 Vladimir Krasnov <[email protected]>
  219. * ChannelDispatcher.cs, EndpointDispatcher.cs: removed dependency on
  220. ServiceDescription/ServiceEndpoint, allows usage of channel dispatcher
  221. without endpoint was explicitly built
  222. * EndpointDispatcher.cs: Filters lazy evaluation, refactored
  223. communication processing, logic moved to channel dispatcher
  224. 2008-04-17 Vladimir Krasnov <[email protected]>
  225. * ActionMessageFilter.cs: fixed Match, match for "*" action
  226. 2008-04-17 Vladimir Krasnov <[email protected]>
  227. * DispatchOperation.cs: fixed ProcessRequest, fault message creation
  228. 2008-04-10 Eyal Alaluf <[email protected]>
  229. * DefaultMessageOperationFormatter.cs: Moved to BaseMessagesFormatter.cs.
  230. * BaseMessagesFormatter.cs: Refactored so typed messages uses the classes
  231. defined here instead of the other way around.
  232. Added support for by-ref and out parameters.
  233. Added support for XmlSerializerFormat serializaters..
  234. * DispatchOperation.cs, ClientOperation.cs: Use BaseMessagesFormatter.Create
  235. 2008-04-09 Roei Erez <[email protected]>
  236. * Remove unused nethod from previous commit
  237. 2008-04-08 Roei Erez <[email protected]>
  238. * ChannelDispatcher.cs
  239. - fix 'Attach' logic
  240. - Add support for Endpoints property
  241. - Remove the hack of 'endpoint_dispatcher' field
  242. * ChannelDispatcherCollection.cs
  243. - Add support for 'Attach' 'Detach'
  244. * EndpointDispatcher.cs
  245. - By default create MatchAllMessageFilter.
  246. 2008-02-17 Atsushi Enomoto <[email protected]>
  247. * EndpointDispatcher.cs : we don't need AddressFilter workaround
  248. from Feb. 14 anymore.
  249. 2008-02-17 Atsushi Enomoto <[email protected]>
  250. * EndpointDispatcher.cs : after service method call, apply outgoing
  251. headers and properties to the returned message.
  252. 2008-02-15 Atsushi Enomoto <[email protected]>
  253. * ChannelDispatcher.cs : populate DispatchOperations before applying
  254. IEndpointBehaviors so that those behaviors can modify dispatch
  255. operations.
  256. 2008-02-15 Atsushi Enomoto <[email protected]>
  257. * DispatchOperation.cs : Action may be null. For such cases, use
  258. MessageDirection to determine the message description.
  259. 2008-02-15 Atsushi Enomoto <[email protected]>
  260. * EndpointAddressMessageFilter.cs : implement Match(MessageBuffer).
  261. Use ordinal string comparison.
  262. * PrefixEndpointAddressMessageFilter.cs : implement Match() (both).
  263. 2008-02-14 Atsushi Enomoto <[email protected]>
  264. * EndpointDispatcher.cs : moved AddressFilter application only when
  265. DispatchOperation was not selected (it is sort of workaround).
  266. 2007-08-19 Atsushi Enomoto <[email protected]>
  267. * DefaultMessageOperationFormatter.cs : Fixed SerializeReply() for
  268. message contract type to process result, not the parameter.
  269. 2007-08-19 Atsushi Enomoto <[email protected]>
  270. * SingletonInstanceContextProvider.cs : new.
  271. 2007-08-17 Atsushi Enomoto <[email protected]>
  272. * DefaultMessageOperationFormatter.cs : dependent changes on
  273. message serializer and deserializer.
  274. 2007-03-24 Atsushi Enomoto <[email protected]>
  275. * DefaultMessageOperationFormatter.cs :
  276. use it for deserialization as well.
  277. 2007-03-24 Atsushi Enomoto <[email protected]>
  278. * DefaultMessageOperationFormatter.cs : consider message contracts
  279. during message serialization/deserialization.
  280. 2007-03-07 Atsushi Enomoto <[email protected]>
  281. * EndpointDispatcher.cs : now dispatcher-side foundation for token
  282. negotiation is ready. Handle negotiation message on its own way.
  283. * DispatchOperation.cs : instead of returning irrelevant SOAP Fault,
  284. simply raise an error and let FaultConverter do better work.
  285. 2007-03-07 Atsushi Enomoto <[email protected]>
  286. * EndpointDispatcher.cs : use ErrorHandlers when error was raised.
  287. Handle exceptions to make into SOAP Fault, using FaultConverter.
  288. * ChannelDispatcher.cs : simply get ServiceEndpoint at Attach().
  289. * ChannelDispatcherBase.cs : removed MonoTODOs.
  290. 2007-03-07 Atsushi Enomoto <[email protected]>
  291. * ChannelDispatcher.cs, DispatchRuntime.cs, EndpointDispatcher.cs :
  292. moved most of request/input processing to EndpointDispatcher.cs.
  293. Also, ChannelDispatcher now contains code for behavior
  294. initialization.
  295. 2007-03-07 Atsushi Enomoto <[email protected]>
  296. * ChannelDispatcher.cs : some cosmetic refactoring on error handling
  297. with comments.
  298. 2006-12-14 Atsushi Enomoto <[email protected]>
  299. * ChannelDispatcher.cs, DispatchRuntime.cs, DispatchOperation.cs :
  300. Support OperationContext and OperationContextScope with
  301. ServiceRuntimeChannel as its .ctor() input.
  302. 2006-12-14 Atsushi Enomoto <[email protected]>
  303. * DispatchRuntime.cs : raise an error when the DispatchOperation
  304. returned null Message.
  305. 2006-10-18 Ankit Jain <[email protected]>
  306. * MexInstanceContextProvider.cs (HttpGetInstanceContextProvider): New.
  307. * DispatchOperation.cs (DoProcessRequest): InstanceContext returned by
  308. the provider can be null.
  309. * EndpointAddressMessageFilter.cs (Match): Handle IncludeHostNameInComparison.
  310. 2006-10-12 Atsushi Enomoto <[email protected]>
  311. * DispatchOperation.cs : slightly improved exception message.
  312. 2006-10-06 Ankit Jain <[email protected]>
  313. * ChannelDispatcher.cs (ListenerLoopManager.StartLoopCore):
  314. ReceiveRequest can return null.
  315. 2006-10-05 Atsushi Enomoto <[email protected]>
  316. * ClientRuntime.cs : added MaxFaultSize.
  317. 2006-10-05 Atsushi Enomoto <[email protected]>
  318. * ChannelDispatcher.cs : don't reject anonymous and null To.
  319. 2006-10-04 Ankit Jain <[email protected]>
  320. * ChannelDispatcher.cs (ListenerLoopManager.StartLoopCore): Reply with a
  321. Fault message if message's To doesn't match the endpoint.
  322. (ListenerLoopManager.CreateDestinationUnreachable): New.
  323. * IInstanceContextProvider.cs: New.
  324. * MexInstanceContextProvider.cs: New. InstanceContextProvider for
  325. MetadataExchange.
  326. (MetadataExchange): Implementation of IMetadataExchange.
  327. * DispatchRuntime.cs (InstanceContextProvider): Add missing property.
  328. * DispatchOperation.cs (DoProcessRequest): Use InstanceContextProvider
  329. if available to obtain service instance.
  330. * EndpointDispatcher.cs (.ctor): Set AddressFilter to EndpointAddressMessageFilter.
  331. * EndpointAddressMessageFilter.cs (Match): Implement.
  332. 2006-10-03 Atsushi Enomoto <[email protected]>
  333. * ClientRuntime.cs : added InteractiveChannelInitializer.
  334. 2006-09-12 Atsushi Enomoto <[email protected]>
  335. * DispatchOperation.cs : removed extra comment.
  336. 2006-09-08 Atsushi Enomoto <[email protected]>
  337. * DispatchOperation.cs : workaround to send exception detail.
  338. 2006-09-06 Atsushi Enomoto <[email protected]>
  339. * ICallContextInitializer.cs : new file.
  340. * DispatchOperation.cs : use above.
  341. Not sure if it works correctly though.
  342. 2006-08-28 Atsushi Enomoto <[email protected]>
  343. * DispatchOperation.cs : when there is an error during
  344. ProcessRequest(), wrap the exception with MessageFault and return
  345. a fault message.
  346. 2006-08-10 Duncan Mak <[email protected]>
  347. * ExceptionHandler.cs: New file.
  348. * ServiceThrottle.cs (MaxConnections): Renamed to
  349. MaxConcurrentSessions.
  350. (MaxInstances): Renamed to MaxConcurrentInstances.
  351. 2006-07-27 Atsushi Enomoto <[email protected]>
  352. * IInteractiveChannelInitializer.cs : new file.
  353. 2006-07-14 Atsushi Enomoto <[email protected]>
  354. * IErrorHandler.cs : API updates.
  355. 2006-07-13 Atsushi Enomoto <[email protected]>
  356. * DispatchRuntime.cs :
  357. it was selecting UnhandledOperation unexpectedly.
  358. * DispatchOperation.cs : added FIXME comment.
  359. 2006-07-13 Atsushi Enomoto <[email protected]>
  360. * DefaultMessageOperationFormatter.cs : Remove hack for non-
  361. (de)serializing Message-based methods. They are now moved to
  362. ClientBase and ServiceHostBase to explicitly set
  363. [Serialize|Deserialize][Request|Reply].
  364. 2006-07-12 Atsushi Enomoto <[email protected]>
  365. * DefaultMessageOperationFormatter.cs : don't omit action on
  366. SerializeRequest. Do it in SerializeReply.
  367. 2006-07-12 Atsushi Enomoto <[email protected]>
  368. * DefaultMessageOperationFormatter.cs : When addressing version is
  369. None, then omit reply action. This logic is moved from MessageImpl.
  370. 2006-07-11 Atsushi Enomoto <[email protected]>
  371. * DefaultMessageOperationFormatter.cs :
  372. return message, not parameter[0]. Removed some extra FIXMEs.
  373. 2006-07-10 Atsushi Enomoto <[email protected]>
  374. * DefaultMessageOperationFormatter.cs : when the parameter is
  375. Message and the return type is Message, then do not use
  376. XmlObjectSerializer.
  377. 2006-07-07 Atsushi Enomoto <[email protected]>
  378. * PrefixEndpointAddressMessageFilter.cs, FaultContractInfo.cs :
  379. new types in June CTP.
  380. * ISharedInstanceSessionLifetime.cs:
  381. removed in June CTP.
  382. * ChannelDispatcher.cs, MatchAllMessageFilter.cs, DispatchRuntime.cs,
  383. DispatchOperation.cs, ClientRuntime.cs, MatchNoneMessageFilter.cs,
  384. ClientOperation.cs, ActionMessageFilterTable.cs,
  385. EndpointAddressMessageFilterTable.cs :
  386. several minor fixes for June CTP.
  387. 2006-07-06 Atsushi Enomoto <[email protected]>
  388. * DispatchOperation.cs : MessageFault.DefaultAction vanished.
  389. 2006-07-05 Atsushi Enomoto <[email protected]>
  390. * IClientFormatter.cs, IClientMessageFormatter.cs,
  391. IDispatchFormatter.cs, IDispatchMessageFormatter.cs :
  392. renamed former to latter, for each.
  393. 2006-07-05 Atsushi Enomoto <[email protected]>
  394. * ChannelDispatcher.cs, DispatchRuntime.cs :
  395. IRequestContext -> RequestContext.
  396. 2006-07-05 Atsushi Enomoto <[email protected]>
  397. * ChannelDispatcher.cs, IDispatchFormatter.cs,
  398. DefaultMessageOperationFormatter.cs, IClientFormatter.cs,
  399. DispatchOperation.cs, ClientOperation.cs :
  400. some June CTP updates.
  401. 2006-06-22 Atsushi Enomoto <[email protected]>
  402. * DefaultMessageOperationFormatter.cs : implement SerializeRequest()
  403. and DeserializeReply(). Now simple ClientBase<T> sample is working.
  404. 2006-06-22 Atsushi Enomoto <[email protected]>
  405. * ClientOperation.cs : added GetFormatter() to support message
  406. serialization/deserialization.
  407. * DispatchOperation.cs : made some internal members private
  408. (they are exposed extraneously). Commented out debugging code.
  409. 2006-06-20 Atsushi Enomoto <[email protected]>
  410. * DefaultMessageOperationFormatter.cs : In SerializeReply(), use
  411. custom BodyWriter() and use MessagePartDescription names. Now
  412. return value and other (ref/out) parameters could be equivalently
  413. serialized (at this method; to support them more love is needed).
  414. 2006-06-20 Atsushi Enomoto <[email protected]>
  415. * DefaultMessageOperationFormatter.cs :
  416. Action for response is null (though it is likely conditional).
  417. 2006-06-20 Atsushi Enomoto <[email protected]>
  418. * DefaultMessageOperationFormatter.cs :
  419. true DeserializeReply implementation using Message.CreateMessage()
  420. with DataContractSerializer (not complete though).
  421. 2006-05-29 Atsushi Enomoto <[email protected]>
  422. * ChannelDispatcher.cs, DispatchOperation.cs,
  423. ChannelDispatcherBase.cs :
  424. some updated API fixes.
  425. 2006-05-29 Atsushi Enomoto <[email protected]>
  426. * EndpointDispatcher.cs : moved from Sys.ServiceModel.
  427. 2006-04-20 Atsushi Enomoto <[email protected]>
  428. * ClientRuntime.cs : some minor collection instantiation and comments.
  429. 2006-04-07 Atsushi Enomoto <[email protected]>
  430. * DispatchOperation.cs : Implemented internal MessageVersion.
  431. hacked instance provision by using Activator.CreateInstance.
  432. * DefaultMessageOperationFormatter.cs : fixed DeserializeRequest to
  433. be functional. Implemented SerializeReply.
  434. 2006-04-05 Atsushi Enomoto <[email protected]>
  435. * DispatchOperation.cs : return SOAP fault message for nonexistent
  436. request Action.
  437. * DefaultMessageOperationFormatter.cs : implemented
  438. DeserializeRequest(), though there is no working example.
  439. 2006-03-17 Atsushi Enomoto <[email protected]>
  440. * DispatchOperation.cs : implemented logic to acquire
  441. OperationDescription. Added code for default IDispatchFormatter
  442. implementation.
  443. * DispatchRuntime.cs : fix warning.
  444. * DefaultMessageOperationFormatter.cs : new file, for default
  445. IDispatchFormatter implementation (not done yet).
  446. * ChannelDispatcher.cs : create EndpointDispatcher in Attach and
  447. bind to this instance.
  448. 2006-03-16 Atsushi Enomoto <[email protected]>
  449. * ChannelDispatcherCollection.cs : added parameterless ctor().
  450. * ChannelDispatcher.cs DispatchRuntime.cs DispatchOperation.cs :
  451. Set some initial field values as proved in unit tests.
  452. Request/input processing is still ongoing.
  453. 2006-03-13 Atsushi Enomoto <[email protected]>
  454. * ChannelDispatcher.cs
  455. DispatchRuntime.cs
  456. DispatchOperation.cs : added request/input processing code.
  457. 2006-03-07 Atsushi Enomoto <[email protected]>
  458. * ChannelDispatcher.cs : Get "AcceptChannel" method without ambiguity.
  459. 2006-03-07 Atsushi Enomoto <[email protected]>
  460. * ChannelDispatcher.cs : Added request-processing code.
  461. 2006-03-06 Atsushi Enomoto <[email protected]>
  462. * ChannelDispatcher.cs : implement Attach() and Detach() more to work.
  463. 2006-02-23 Atsushi Enomoto <[email protected]>
  464. * DispatchBehavior.cs :
  465. Dependent fixes for System.IdentityModel reorgainzation.
  466. 2006-02-23 Atsushi Enomoto <[email protected]>
  467. * FilterNodeQuotaExceededException.cs
  468. FilterInvalidBodyAccessException.cs DispatchBehavior.cs
  469. DispatchOperation.cs NavigatorInvalidBodyAccessException.cs
  470. MatchNoneFilter.cs ActionFilter.cs
  471. MultipleFilterMatchesException.cs Filter.cs
  472. IInstanceContextInitializer.cs XPathFilter.cs
  473. IDispatchOperationSelector.cs MatchAllFilter.cs
  474. ActionFilterTable.cs EndpointAddressFilter.cs FilterTable.cs
  475. EndpointFilterTable.cs XPathMessageContext.cs
  476. IEndpointDispatcher.cs ProxyBehavior.cs
  477. ProxyOperation.cs XPathFilterTable.cs
  478. EndpointAddressFilterTable.cs InvalidBodyAccessException.cs
  479. IFilterTable.cs IOperationInvoker.cs :
  480. moved from System.ServiceModel due to the API changes.