ChangeLog 26 KB

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