ChangeLog 28 KB

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