2
0

ChangeLog 29 KB

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