ChangeLog 22 KB

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