ChangeLog 21 KB

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