ChangeLog 20 KB

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