ChangeLog 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637
  1. 2009-03-04 Atsushi Enomoto <[email protected]>
  2. * CrossDomainAccessManager.cs : 2.1 WebRequest misses some
  3. members used here.
  4. 2009-03-04 Atsushi Enomoto <[email protected]>
  5. * CrossDomainAccessManager.cs, ClientAccessPolicy.cs,
  6. CrossDomainPolicy.cs : new. support cross domain access check.
  7. 2009-02-27 Atsushi Enomoto <[email protected]>
  8. * ClientBase.cs : give successful WCF call completion info.
  9. 2009-02-27 Atsushi Enomoto <[email protected]>
  10. * ClientBase.cs : diagnose more precisely.
  11. 2009-02-26 Atsushi Enomoto <[email protected]>
  12. * ClientProxyGenerator.cs : fix wrong argument index.
  13. 2009-02-26 Atsushi Enomoto <[email protected]>
  14. * ClientBase.cs : use overridable CreateChannel().
  15. 2009-02-26 Atsushi Enomoto <[email protected]>
  16. * ClientBase.cs : make it work with SL2 UI threading model.
  17. 2009-02-26 Atsushi Enomoto <[email protected]>
  18. * ClientProxyGenerator.cs : simply use CodeMethod.GetArg().
  19. 2009-02-26 Atsushi Enomoto <[email protected]>
  20. * ClientRuntimeChannel.cs, ClientProxyGenerator.cs,
  21. ClientBase.cs, ChannelFactory_1.cs, DuplexClientBase.cs:
  22. now ClientBase<TChannel>.InnerChannel became ChannelBase<T> as
  23. SL2 does. This change required several internal changes in
  24. proxy code generation. Also, now TChannel must be class.
  25. 2009-02-20 Atsushi Enomoto <[email protected]>
  26. * ChannelFactory_1.cs : it's not going to create ClientRuntime
  27. anymore here. Moving to ServiceEndpoint.cs as the first stage.
  28. * ClientBase.cs : some comment.
  29. 2009-02-13 Atsushi Enomoto <[email protected]>
  30. * ChannelFactory.cs : for default constructor, first try to
  31. retrieve configuration from its contract name.
  32. Diagnose errorneous configuration.
  33. * SilverlightClientConfigLoader.cs : basicHttpBinding/binding
  34. element could be defined two or more times.
  35. 2009-02-12 Atsushi Enomoto <[email protected]>
  36. * ClientProxyGenerator.cs : so, the proxy generator was buggy to
  37. generate end invoke.
  38. * ClientBase.cs : make it simpler and just work.
  39. 2009-02-06 Atsushi Enomoto <[email protected]>
  40. * ClientBase.cs : oops, should have tried build with net_2_1_raw.
  41. 2009-02-06 Atsushi Enomoto <[email protected]>
  42. * ClientRuntimeChannel.cs, ClientBase.cs :
  43. implement remaining ChannelBase members and made some required
  44. changes in ClientRuntimeChannel.
  45. 2009-02-03 Atsushi Enomoto <[email protected]>
  46. * ClientRuntimeChannel.cs, ClientProxyGenerator.cs :
  47. change async methods signature and dynamic code generation.
  48. 2009-01-23 Atsushi Enomoto <[email protected]>
  49. * ClientBase.cs : added another missing type.
  50. 2009-01-23 Atsushi Enomoto <[email protected]>
  51. * ChannelFactory.cs : fix wrong file reference.
  52. 2009-01-22 Atsushi Enomoto <[email protected]>
  53. * SilverlightClientConfigLoader.cs :
  54. removed extraneous code. Handle "*" (wildcard).
  55. 2009-01-22 Alan McGovern <[email protected]>
  56. * BasicHttpBinding.cs: In silverlight ReaderQuota is immutable and always
  57. has a default value of ReaderQuota.Max. Therefore no need to call CopyTo.
  58. 2009-01-22 Atsushi Enomoto <[email protected]>
  59. * SilverlightClientConfigLoader.cs : in Silverlight, there is
  60. "ServiceReference.ClientConfig" which is used to resolve service
  61. endpoint configuration. It is to consume that file.
  62. * ChannelFactory.cs : use above in SL.
  63. * ClientBase.cs : rename some misleading param names.
  64. 2009-01-22 Atsushi Enomoto <[email protected]>
  65. * ChannelFactory.cs : some code comment.
  66. * ClientBase.cs : remove some todos.
  67. * ClientRuntimeChannel.cs : hack some session properties.
  68. 2009-01-19 Atsushi Enomoto <[email protected]>
  69. * ClientBase.cs : implement InvokeAsync(). Not sure if it works yet.
  70. 2009-01-19 Atsushi Enomoto <[email protected]>
  71. * ClientProxyGenerator.cs : fix reflection-based GetConstructor()
  72. so that it can work in 2.1 profile (.ctor is made internal).
  73. 2009-01-14 Atsushi Enomoto <[email protected]>
  74. * ServerTooBusyException.cs, CommunicationObjectAbortedException.cs,
  75. ServiceActivationException.cs : new exception types.
  76. 2009-01-14 Atsushi Enomoto <[email protected]>
  77. * ClientBase.cs, ClientRuntimeChannel.cs : added support for
  78. interactive channel initializers.
  79. 2009-01-12 Geoff Norton <[email protected]>
  80. * ClientBase.cs: Added a few delegates missing from ChannelBase
  81. 2009-01-07 Atsushi Enomoto <[email protected]>
  82. * ClientBase.cs : added ChannelBase class inside.
  83. 2009-01-07 Atsushi Enomoto <[email protected]>
  84. * OperationContext.cs : changes to include this in net_2_1_raw.
  85. 2008-05-28 Noam Lampert <[email protected]>
  86. * ServiceHost.cs: Allow services to implement more than one contract.
  87. 2008-05-22 Noam Lampert <[email protected]>
  88. * ServiceBehaviorAttribute.cs: Propagate IncludeExceptionDetailsInFaults
  89. * ExceptionDetail.cs: Modify implementation so that deserialized instance will also work
  90. * ClientRuntimeChannel.cs: Throw correct fault exception
  91. 2008-05-01 Eyal Alaluf <[email protected]>
  92. * ClientProxyGenerator.cs: Add explicit casts for allowing boxing.
  93. * ServiceHostBase.cs: Simplified in/out parameter handling.
  94. 2008-04-22 Igor Zelmanovich <[email protected]>
  95. * ServiceHostBase.cs: initialize DispatchOperation's Invoker and Formater.
  96. 2008-04-21 Igor Zelmanovich <[email protected]>
  97. * ServiceHostBase.cs: consider refactoring of HttpGetWsdl.
  98. 2008-04-17 Igor Zelmanovich <[email protected]>
  99. * ServiceHostBase.cs: fixed BuildChannelDispatcher, init of
  100. endpoint dispatcher's ContractFilter
  101. 2008-04-17 Vladmir Krasnov <[email protected]>
  102. * ServiceRuntimeChannel.cs: refactoring, consider chganges in channel
  103. dispatcher and endpoint dispatcher
  104. 2008-04-17 Vladmir Krasnov <[email protected]>
  105. * ServiceHostBase.cs: fixed BuildChannelDispatcher, init of
  106. endpoint dispatcher's ContractFilter
  107. 2008-04-14 Igor Zelmanovich <[email protected]>
  108. * ExtensionCollection.cs:
  109. fix ClearItems, InsertItem, RemoveItem and SetItem,
  110. call Attach/Detach of items.
  111. 2008-04-13 Igor Zelmanovich <[email protected]>
  112. * BasicHttpBinding.cs:
  113. * NetMsmqBinding.cs:
  114. * NetPeerTcpBinding.cs:
  115. consider fixed API in BindingElementCollection class.
  116. 2008-04-10 Eyal Alaluf <[email protected]>
  117. * ClientProxyGenerator.cs: Add support for out and by ref params.
  118. 2008-04-08 Roei Erez <[email protected]>
  119. * ServiceHostBase.cs:
  120. - Refactoring of InitializeRuntime method:
  121. -- Build ChanneldDispatcher correctly
  122. -- Build EndPointDispatchers
  123. -- Fix the order of applying behaviors
  124. 2008-04-03 Igor Zelmanovich <[email protected]>
  125. * ServiceHostBase.cs:
  126. - implement InitializeRuntime.
  127. - load behaviors configuration properly.
  128. 2008-04-04 Vladmir Krasnov <[email protected]>
  129. * BasicHttpBinding.cs: fixed GetTransport method
  130. 2008-04-03 Roei Erez <[email protected]>
  131. * ServiceHostBase.cs: fix ApplyConfiguration to consider only the current
  132. service according to the 'Description' attribute.
  133. 2008-04-02 Igor Zelmanovich <[email protected]>
  134. * ServiceHost.cs:
  135. * ServiceHostBase.cs:
  136. ServiceAuthorizationBehavior and ServiceDebugBehavior are added during
  137. ApplyConfiguration.
  138. 2008-04-01 Igor Zelmanovich <[email protected]>
  139. * UriSchemeKeyedCollection.cs: fix API (.ctor signature).
  140. 2008-04-01 Vladmir Krasnov <[email protected]>
  141. * BasicHttpBinding.cs: fixed ReaderQuotas in
  142. BuildMessageEncodingBindingElement
  143. 2008-03-31 Vladmir Krasnov <[email protected]>
  144. * BasicHttpBinding.cs: fixed GetTransport, TransportBindingElement init
  145. 2008-03-31 Vladmir Krasnov <[email protected]>
  146. * BasicHttpBinding.cs: fixed configuration issues
  147. 2008-03-27 Igor Zelmanovich <[email protected]>
  148. * ReliableMessagingVersion.cs: add missing API.
  149. 2008-03-25 Vladmir Krasnov <[email protected]>
  150. * ServiceHostBase.cs: implemented ApplyConfiguration, fixed service
  151. hosting
  152. 2008-03-04 Eyal Alaluf <[email protected]>
  153. * ChannelBase.cs: Move configuration handling to ChannelFactory.
  154. * ChannelFactory_1.cs: Add arguments checks.
  155. * ChannelFactory.cs: Implement ApplyConfiguration.
  156. 2008-02-28 Eyal Alaluf <[email protected]>
  157. * ChannelBase.cs: Handle better configuration lookup and contract
  158. attributes.
  159. Add argument null checks.
  160. * ChannelFactory_1.cs: Indentation chnges.
  161. 2008-02-27 Atsushi Enomoto <[email protected]>
  162. * DuplexChannelFactory.cs : CreateChannel() is extra.
  163. 2008-02-27 Eyal Alaluf <[email protected]>
  164. * ChannelBase.cs: Handle case where contract configuration name is set
  165. in the 'TChannel' type custom attributes.
  166. 2008-02-27 Eyal Alaluf <[email protected]>
  167. * WSHttpBindingBase.cs DuplexChannelFactory.cs: Fix compilation warnings.
  168. 2008-02-20 Atsushi Enomoto <[email protected]>
  169. * NetTcpBinding.cs : store transport and use it for some properties.
  170. * EnvelopeVersion.cs : updated destinations to 3.0 SP1.
  171. 2008-02-17 Atsushi Enomoto <[email protected]>
  172. * OperationContext.cs : implemented OutgoingMessageHeaders and
  173. OutgoingMessageProperties.
  174. * ExtensionCollection.cs : Pass syncRoot to base.
  175. Implemented Find(), FindAll() and IsReadOnly.
  176. 2008-02-15 Atsushi Enomoto <[email protected]>
  177. * EndpointAddress.cs : reject relative Uri.
  178. 2008-02-14 Atsushi Enomoto <[email protected]>
  179. * ChannelFactory_1.cs : populate ClientOperations before applying
  180. IEndpointBehavior and IContractBehavior so that they can access to
  181. ClientOperations.
  182. 2008-02-14 Igor Zelmanovich <[email protected]>
  183. * ServiceContractAttribute.cs: fixed public API
  184. added property "ConfigurationName"
  185. 2008-02-14 Atsushi Enomoto <[email protected]>
  186. * ClientRuntimeChannel.cs : build fix.
  187. 2008-02-14 Atsushi Enomoto <[email protected]>
  188. * ClientBase.cs, ClientProxyGenerator.cs : the client proxy does not
  189. have to be generic, so removed the type argument.
  190. * ChannelFactory_1.cs : ditto.
  191. EnsureOpened() when creating a channel (it
  192. used to do so, but disappeared at some point ...).
  193. * ClientRuntimeChannel.cs : ditto (type argument).
  194. Factory must have been opened before creating this channel, so
  195. do not try to open factory here.
  196. 2008-02-08 Atsushi Enomoto <[email protected]>
  197. * ServiceHostBase.cs : when listenUri is not absolute, make it
  198. absolute before being passed to ServiceEndpoint.
  199. Tiny message string fix ("string + string" is hard to translate).
  200. 2007-08-19 Atsushi Enomoto <[email protected]>
  201. * EndpointAddressBuilder.cs ServiceBehaviorAttribute.cs :
  202. some more cosmetic API fixes and missing MonoTODOs.
  203. 2007-08-19 Atsushi Enomoto <[email protected]>
  204. * ServiceHost.cs : ServiceBehaviorAttribute must be first retrieved
  205. from the service type (or instance).
  206. * ServiceBehaviorAttribute.cs : InstanceContextMode default is
  207. PerCall. Implement support for well-known instance.
  208. 2007-08-17 Atsushi Enomoto <[email protected]>
  209. * PeerNodeAddress.cs : add private .ctor() for deserialization.
  210. 2007-08-16 Marcos Cobena ([email protected])
  211. * AllEnums.cs: PeerReferralPolicy lives now inside System.ServiceModel.PeerResolvers.
  212. 2007-08-16 Atsushi Enomoto <[email protected]>
  213. * MessageContractAttribute.cs : IsWrapped = true by default.
  214. 2007-07-26 Atsushi Enomoto <[email protected]>
  215. * PeerNodeAddress.cs : with private members it is always possible
  216. to hack around non-datacontract types.
  217. 2007-07-06 Atsushi Enomoto <[email protected]>
  218. * DuplexChannelFactory.cs: New static method.
  219. 2007-07-06 Atsushi Enomoto <[email protected]>
  220. * MsmqBindingBase.cs NetMsmqBinding.cs : initialize some fields.
  221. implemented NetMsmqBinding.CreateBindingElements().
  222. 2007-07-24 Marcos Cobena ([email protected])
  223. * DuplexChannelFactory.cs: New static method.
  224. 2007-07-05 Atsushi Enomoto <[email protected]>
  225. * NetMsmqSecurity.cs PoisonMessageException.cs
  226. MsmqException.cs MsmqPoisonMessageException.cs
  227. MsmqBindingBase.cs MessageSecurityOverMsmq.cs
  228. NetMsmqBinding.cs MsmqTransportSecurity.cs :
  229. couple of msmq stubs.
  230. * Dummy.cs : removed newly stubbed ones.
  231. 2007-04-27 Atsushi Enomoto <[email protected]>
  232. * EndpointAddress.cs, EndpointAddress10.cs :
  233. more refactoring.
  234. read Metadata element.
  235. 2007-04-20 Atsushi Enomoto <[email protected]>
  236. * EndpointAddress.cs,
  237. EndpointAddress10.cs,
  238. EndpointAddressAugust2004.cs :
  239. some rewrite on WriteXml(). For WSA10, it is now based on XML
  240. serializer. (Read methods won't go that way btw.)
  241. IXmlSerializable.GetSchema() in both versions return null.
  242. public GetSchema() returns schema from W3C.
  243. 2007-04-17 Atsushi Enomoto <[email protected]>
  244. * Constants.cs : added couple of consts.
  245. 2007-04-05 Atsushi Enomoto <[email protected]>
  246. * Constants.cs : added WsaIdentityUri.
  247. * EndpointIdentity.cs : implemented ToString().
  248. * X509CertificateEndpointIdentity.cs : Initialize() was missing.
  249. * EndpointAddress.cs : implemented WriteContentsTo(), which is
  250. actually what WriteTo() should just call. Handle X509 identity
  251. as its own way to be serialized.
  252. 2007-04-02 Atsushi Enomoto <[email protected]>
  253. * ClientCredentialsSecurityTokenManager.cs : support mutual sslnego.
  254. 2007-04-02 Atsushi Enomoto <[email protected]>
  255. * ServiceKnownTypeAttribute.cs : added.
  256. 2007-03-30 Atsushi Enomoto <[email protected]>
  257. * Constants.cs : added soem OIDs.
  258. 2007-03-27 Atsushi Enomoto <[email protected]>
  259. * ClientCredentialsSecurityTokenManager.cs :
  260. support spnego authenticator and provider. Provider should not be
  261. SspiSecurityTokenProvider, as it is not for spnego.
  262. * Constants.cs : added some spnego constants.
  263. 2007-03-20 Atsushi Enomoto <[email protected]>
  264. * Constants.cs : added LifetimeFormat.
  265. 2007-03-20 Atsushi Enomoto <[email protected]>
  266. * Constants.cs : added Tlsnego WST proof token type.
  267. 2007-03-13 Atsushi Enomoto <[email protected]>
  268. * Constants.cs : added namespace for dnse:Cookie in ssl negotiation.
  269. 2007-03-07 Atsushi Enomoto <[email protected]>
  270. * ExceptionDetail.cs : new file.
  271. 2007-03-07 Atsushi Enomoto <[email protected]>
  272. * ServiceHostBase.cs :
  273. moved code for applying behavior to ChannelDispatcher.cs.
  274. 2007-03-07 Atsushi Enomoto <[email protected]>
  275. * ClientBase.cs : added DisplayInitializationUI() stub.
  276. * ServiceHostBase.cs : raise an error when no channel could be built.
  277. 2007-03-05 Atsushi Enomoto <[email protected]>
  278. * Constants.cs : added consts for ssl and negotiation bindings.
  279. * ClientCredentialsSecurityTokenManager.cs :
  280. IsIssuedSecurityTokenRequirement() should not return true for
  281. non-IssuedToken parameters.
  282. 2007-03-01 Atsushi Enomoto <[email protected]>
  283. * ClientCredentialsSecurityTokenManager.cs :
  284. internalize IsIssuedSecurityTokenRequirement().
  285. Use SecurityTokenRequirement.ToString().
  286. 2007-02-27 Atsushi Enomoto <[email protected]>
  287. * WSHttpBinding.cs : for UserName credentials, don't require
  288. signature confirmations.
  289. 2007-02-21 Atsushi Enomoto <[email protected]>
  290. * Constants.cs : added WssdDefaultLabel.
  291. 2007-02-14 Atsushi Enomoto <[email protected]>
  292. * ServiceRuntimeChannel.cs : ... and largely implemented.
  293. 2007-02-14 Atsushi Enomoto <[email protected]>
  294. * ServiceRuntimeChannel.cs-tmp, ServiceRuntimeChannel.cs :
  295. renamed former to latter.
  296. 2007-02-14 Atsushi Enomoto <[email protected]>
  297. * OperationContext.cs, OperationContextScope.cs : implemented some
  298. members and fixed some misimplementations. (They cannot be in use
  299. until I create IServiceChannel implementation, like
  300. ClientRuntimeChannel but for services.)
  301. 2007-02-01 Atsushi Enomoto <[email protected]>
  302. * ServiceHostBase.cs : so, we didn't add ChannelProtectionRequirements
  303. and subsequently the reply message was not signed at all.
  304. 2007-01-31 Atsushi Enomoto <[email protected]>
  305. * Constants.cs : added wsse EncryptedKeySHA1.
  306. 2007-01-12 Atsushi Enomoto <[email protected]>
  307. * MessageSecurityVersion.cs, Constants.cs :
  308. Use constants in MessageSecurityTokenVersion.
  309. * ClientCredentialsSecurityTokenManager.cs :
  310. CreateSecurityTokenSerializer() should consider securityVersion
  311. and emitBspRequiredAttributes based on SecurityTokenVersion.
  312. 2007-01-12 Atsushi Enomoto <[email protected]>
  313. * Constants.cs : added WSSEncryptedKeyToken.
  314. 2007-01-10 Atsushi Enomoto <[email protected]>
  315. * Constants.cs : added WssBase64BinaryEncodingType (but I cannot
  316. enable the code that uses it :| )
  317. 2006-12-09 Atsushi Enomoto <[email protected]>
  318. * ClientRuntimeChannel.cs : moved ChannelProtectionRequirements
  319. population to ChannelProtectionRequirements.cs with some fixes.
  320. 2006-12-05 Atsushi Enomoto <[email protected]>
  321. * Constants.cs : added WS-Security X509 thumbprint identifier
  322. value type.
  323. 2006-12-04 Atsushi Enomoto <[email protected]>
  324. * EnvelopeVersion.cs : added Soap12UltimateReceiver to be used in
  325. MessageHeader.
  326. 2006-12-04 Atsushi Enomoto <[email protected]>
  327. * ServiceHostBase.cs : (GetContract) If the service type is
  328. IMetadataExchange, don't require ServiceMetadataBehavior.
  329. 2006-10-22 Atsushi Enomoto <[email protected]>
  330. * ServiceHostBase.cs : on closing channel dispatchers, they will
  331. remove themselves from dispatchers, so don't iterate directly.
  332. 2006-10-18 Ankit Jain <[email protected]>
  333. * ServiceHostBase.cs (GetContract): Add HttpGetWsdl contract by default
  334. to ImplementedContracts.
  335. 2006-10-18 Ankit Jain <[email protected]>
  336. * ServiceHostBase.cs (GetContract): Throw if adding a IMetadataExchange
  337. endpoint but ServiceMetadataBehavior has not been added.
  338. Add contract for HttpGetWsdl to ImplementedContracts.
  339. 2006-10-06 Atsushi Enomoto <[email protected]>
  340. * ServiceSecurityContext.cs : added some members for testing
  341. SecurityMessageProperty.
  342. * WSHttpBinding.cs : some fixes for X509 token modes.
  343. 2006-10-06 Ankit Jain <[email protected]>
  344. * ServiceHostBase.cs (PopulateDispatchOperation): Identify 'catch all'
  345. operation and set UnhandledDispatchOperation accordingly.
  346. 2006-10-05 Atsushi Enomoto <[email protected]>
  347. * WSHttpBinding.cs : Fixed x509 parameter initialization.
  348. * ClientRuntimeChannel.cs : get max fault size from ClientRuntime.
  349. 2006-10-05 Atsushi Enomoto <[email protected]>
  350. * ClientRuntimeChannel.cs : when fault happened, don't parse it as
  351. the expected result but throw FaultException instead.
  352. 2006-10-04 Atsushi Enomoto <[email protected]>
  353. * ClientProxyGenerator.cs, ClientRuntimeChannel : pass operation name
  354. to ClientRuntimeChannel.Process() explicitly, to get correct
  355. OperationDescription.
  356. 2006-10-04 Ankit Jain <[email protected]>
  357. * ServiceHostBase.cs (Extensions): Implement.
  358. (GetContract): HACK to allow IMetadataExchange as the contract for an
  359. endpoint.
  360. (DoOpen): Call IServiceBehavior.ApplyDispatchBehavior
  361. * ServiceBehaviorAttribute.cs (ApplyDispatchBehavior): Remove NYI
  362. exception.
  363. * InstanceContext.cs (GetServiceInstance): Implement.
  364. 2006-10-03 Atsushi Enomoto <[email protected]>
  365. * ServiceBehaviorAttribute.cs : added IncludeExceptionDetailInFaults
  366. and removed old ReturnUnknownExceptionsAsFaults.
  367. * Constants.cs : added WsaAnonymousUri.
  368. * EndpointAddress.cs : use above.
  369. * ClientRuntimeChannel.cs : comment on FIXME.
  370. 2006-09-28 Atsushi Enomoto <[email protected]>
  371. * ClientRuntimeChannel.cs : setup the channel before inspection.
  372. 2006-09-27 Atsushi Enomoto <[email protected]>
  373. * ClientCredentialsSecurityTokenManager.cs : implemented some of
  374. CreateSecurityTokenAuthenticator(), which seems used in
  375. IRequestChannel for security.
  376. 2006-09-27 Ankit Jain <[email protected]>
  377. * Dummy.cs (ServiceHostingEnvironment): Remove.
  378. * ServiceHostingEnvironment.cs: New.
  379. 2006-09-22 Atsushi Enomoto <[email protected]>
  380. * ClientRuntimeChannel.cs : HasProtectionLevel computation for
  381. ChannelProtectionRequirements was more complex.
  382. 2006-09-22 Atsushi Enomoto <[email protected]>
  383. * ClientRuntimeChannel.cs : pass proper IsBodyIncluded argument.
  384. Fix warnings.
  385. 2006-09-22 Atsushi Enomoto <[email protected]>
  386. * ClientRuntimeChannel.cs : MessagePartSpecification is created for
  387. every message i.e. per action, not per message part.
  388. * ServiceContractAttribute.cs, FaultContractAttribute.cs,
  389. OperationContractAttribute.cs, MessageContractAttribute.cs :
  390. Fixed HasProtectionLevel. It is always true when ProtectionLevel is set.
  391. 2006-09-22 Atsushi Enomoto <[email protected]>
  392. * ChannelFactory.cs : default timeouts could be retrieved from Binding.
  393. * ServiceContractAttribute.cs : added [Has]ProtectionLevel.
  394. * ChannelFactory_1.cs, ClientRuntimeChannel.cs :
  395. ChannelProtectionRequirements is needed for BindingParameterCollection.
  396. Actually it was created but was going nowhere.
  397. * ClientBase.cs : removed some MonoTODOs.
  398. 2006-09-20 Atsushi Enomoto <[email protected]>
  399. * ClientBase.cs : pass binding and endpoint address directly to
  400. ChannelFactory.ctor() so that it does not miss ClientCredentials.
  401. 2006-09-20 Atsushi Enomoto <[email protected]>
  402. * WSDualHttpSecurity.cs, DnsEndpointIdentity.cs, SpnEndpointIdentity.cs,
  403. MessageSecurityOverTcp.cs, NetTcpSecurity.cs, UpnEndpointIdentity.cs,
  404. TcpTransportSecurity.cs : added missing types.
  405. * Dummy.cs : removed all above.
  406. * EndpointIdentity.cs : implemented.
  407. * BasicHttpBinding.cs : consider HTTPS.
  408. * MessageSecurityOverHttp.cs : IsSecureConversationEnabled() always
  409. returns true unless overriden.
  410. * WSDualHttpBinding.cs : added Security.
  411. * NetTcpBinding.cs : assorted API fixes and some implementation code.
  412. 2006-09-19 Atsushi Enomoto <[email protected]>
  413. * ClientBase.cs : remove ClientCredential addition.
  414. 2006-09-19 Atsushi Enomoto <[email protected]>
  415. * ChannelFactory_1.cs :
  416. oops, MessageBodyDescription.ReturnValue could be null.
  417. 2006-09-19 Atsushi Enomoto <[email protected]>
  418. * ClientCredentialsSecurityTokenManager.cs : support kerberos provider
  419. creation (though it won't work anyways).
  420. * ChannelFactory_1.cs : add client credentials to the endpoint _here_,
  421. not only in ClientBase. Also support ChannelProtectionRequirements
  422. which will be required by message security support.
  423. 2006-09-17 Atsushi Enomoto <[email protected]>
  424. * MessageSecurityVersion.cs : SecurityTokenVersion is implemented.
  425. 2006-09-17 Atsushi Enomoto <[email protected]>
  426. * ClientCredentialsSecurityTokenManager.cs : null credential check.
  427. Make "missing credential error" message correct (the missing
  428. certificate might be service certificate while it always blamed
  429. client certificate).
  430. 2006-09-17 Atsushi Enomoto <[email protected]>
  431. * ClientRuntimeChannel.cs : by default, use non-session channel i.e.
  432. use session channels only for those bindings that does not allow
  433. sessionless channels.
  434. 2006-09-15 Atsushi Enomoto <[email protected]>
  435. * ClientCredentialsSecurityTokenManager.cs : more implementation in
  436. CreateSecurityTokenProvider().
  437. 2006-09-15 Atsushi Enomoto <[email protected]>
  438. * ClientCredentialsSecurityTokenManager.cs : refactored
  439. communication-based token provider creation. See S.SM.S.Tokens
  440. change as well.
  441. 2006-09-12 Atsushi Enomoto <[email protected]>
  442. * WSHttpBinding.cs : set X509ReferenceStyle to Thumbprint in
  443. x509 ProtectionTokenParameters by default.
  444. 2006-09-08 Atsushi Enomoto <[email protected]>
  445. * ClientRuntimeChannel.cs : fixed IOutputChannel support as well to
  446. open in prior to issue an output (send).
  447. 2006-09-08 Atsushi Enomoto <[email protected]>
  448. * ClientRuntimeChannel.cs : wrong message to inspect response.
  449. 2006-09-06 Atsushi Enomoto <[email protected]>
  450. * ServiceHostBase.cs : Binding.MessageVersion could be null, so
  451. set default in such case.
  452. 2006-09-06 Atsushi Enomoto <[email protected]>
  453. * ServiceHost.cs : seems like RC1 does not automatically attach
  454. ServiceMetadataBehavior.
  455. * ServiceHostBase.cs : use const instead of literal.
  456. 2006-09-06 Atsushi Enomoto <[email protected]>
  457. * ClientRuntimeChannel.cs, ClientBase.cs :
  458. implemented IClientMessageInspector support.
  459. 2006-09-05 Atsushi Enomoto <[email protected]>
  460. * ClientCredentialsSecurityTokenManager.cs :
  461. implement service certificate acquisition: it depends on the
  462. KeyUsage and IsInitiator whether it uses client certificate or
  463. service certificate. (And service certificate acquisition is a bit
  464. complex.)
  465. 2006-09-05 Atsushi Enomoto <[email protected]>
  466. * ChannelFactory_1.cs : now it is this type that creates the inner
  467. proxy type (CreateRuntime() and its usage are moved from
  468. ClientBase). CreateChannel() should create an actual proxy
  469. instance instead of just an IChannel.
  470. * ClientBase.cs : inner_proxy and inner_channel are thus filled
  471. just using ChannelFactory.CreateChannel() now.
  472. * ClientProxyGenerator.cs : it now generates the proxy type from
  473. ChannelFactory, not ClientBase<T>.
  474. * ClientRuntimeChannel.cs : now that Binding.MessageVersion could
  475. return null, it must fill default version by itself.
  476. Updated .ctor() arguments and fields.
  477. 2006-09-05 Atsushi Enomoto <[email protected]>
  478. * ChannelFactory.cs : implement EnsureOpened().
  479. * ChannelFactory_1.cs : open the factory before creating a channel.
  480. 2006-09-05 Atsushi Enomoto <[email protected]>
  481. * RsaEndpointIdentity.cs, WSFederationHttpSecurity.cs,
  482. WSFederationHttpBinding.cs, ServiceAuthorizationManager.cs :
  483. more new files.
  484. * WSFederationBinding.cs : removed obsolete file.
  485. * EndpointIdentity.cs : implemented some.
  486. * FederatedMessageSecurityOverHttp.cs : some default value settings.
  487. * Dummy.cs : removed some new files, and added S.SM.PR classes.
  488. 2006-09-01 Atsushi Enomoto <[email protected]>
  489. * TransactionProtocol.cs : changing default tx will anyways cause
  490. problem, so just change it to default borking OleTx.
  491. 2006-08-31 Atsushi Enomoto <[email protected]>
  492. * ChannelFactory.cs : there's a big todo on this class.
  493. * ClientBase.cs : minor MonoTODO comment.
  494. * Constants.cs : added ws-secureconv namespace.
  495. * ClientRuntimeChannel.cs : implemented several members.
  496. 2006-08-30 Atsushi Enomoto <[email protected]>
  497. * ServiceHostBase.cs : apply ServiceBehavior.AddBindingParameters().
  498. Renamed Initialize() -> OnOpen().
  499. * Dummy.cs : removed RsaSecurityTokenParameters.
  500. 2006-08-28 Atsushi Enomoto <[email protected]>
  501. * ServiceHost.cs : (CreateDescription) add ServiceDebugBehavior to
  502. ServiceDescription. Note that it does not mean it is "enabled".
  503. 2006-08-28 Atsushi Enomoto <[email protected]>
  504. * ClientRuntimeChannel.cs : use endpoint behaviors to collect binding
  505. parameters which is used in BuildChannelFactory().
  506. 2006-08-25 Atsushi Enomoto <[email protected]>
  507. * AllEnums.cs : fixed UserNamePasswordValidationMode values.
  508. * Dummy.cs : removed security classes that are added this time.
  509. 2006-08-25 Atsushi Enomoto <[email protected]>
  510. * ClientCredentialsSecurityTokenManager.cs :
  511. implemented AnonymousSslnego provider creation.
  512. Use SecurityTokenVersion for CreateSecurityTokenSerializer().
  513. * WSHttpBinding.cs : when NegotiateServiceCredential is false,
  514. it does not use AnonymousSslnego but uses X509. Similarly, when
  515. ClientCredentialType is Windows not SSPI but Kerberos.
  516. * Dummy.cs : removed KeberosSecurityTokenParameters.
  517. 2006-08-24 Atsushi Enomoto <[email protected]>
  518. * ClientCredentialsSecurityTokenManager.cs :
  519. more CreateSecureConversationProvider() implementation.
  520. 2006-08-23 Atsushi Enomoto <[email protected]>
  521. * ClientCredentialsSecurityTokenManager.cs :
  522. ongoing SecureConversation requirement support.
  523. * Constants.cs : imported some constants from ../../tools/sts.
  524. * WSHttpBinding.cs : tiny comments.
  525. 2006-08-23 Atsushi Enomoto <[email protected]>
  526. * Dummy.cs : removed SecurityContextSecurityToken.
  527. 2006-08-22 Atsushi Enomoto <[email protected]>
  528. * ClientCredentialsSecurityTokenManager.cs :
  529. improved CreateSecurityTokenProvider(). Split into some methods.
  530. (Next thing to do is to implement secure conversation stuff here.)
  531. * AllEnums.cs : added X509KeyIdentifierClauseType.
  532. * WSHttpBinding.cs : default message security version is
  533. WSS11+BasicProfile. Set ProtectionTokenParameters, either of
  534. the returned element itself or of the secure conversation element.
  535. 2006-08-22 Atsushi Enomoto <[email protected]>
  536. * Dummy.cs : removed MessagePartSpecification and
  537. SecureConversationSecurityTokenParameters.
  538. * WSHttpBinding.cs : turned out that it basically create
  539. SecureConversationSecurityTokenParameters for
  540. ProtectionTokenParameters of the security binding element.
  541. (still needs more love here.)
  542. 2006-08-21 Atsushi Enomoto <[email protected]>
  543. * MessageContractAttribute.cs : added IsWrapped, WrapperName and
  544. WrapperNamespace.
  545. * MessageSecurityVersion.cs : default is WSS11 w/o Basic Profile.
  546. 2006-08-17 Atsushi Enomoto <[email protected]>
  547. * WSHttpBinding.cs : if Message security does not say
  548. EstablishSecurityContext, call SetKeyDerivation(false).
  549. 2006-08-17 Atsushi Enomoto <[email protected]>
  550. * Constants.cs : added WSS token URIs. modified X509v3 constant.
  551. * Dummy.cs : added SspiSecurityToken.
  552. 2006-08-14 Atsushi Enomoto <[email protected]>
  553. * OperationContractAttribute.cs : added missing [Has]ProtectionLevel.
  554. * ClientCredentialsSecurityTokenManager.cs : implementes some members
  555. for client side security token creation.
  556. * WSHttpBinding.cs : in CreateMessageSecurity(), create proper
  557. security token parameters depending on its credential type. Also
  558. for non-message security, return null.
  559. * WSHttpBindingBase.cs : consider the case that
  560. CreateMessageSecurity() returns null. Create proper messaging
  561. encoding binding element that considers EnvelopeVersion,
  562. MessageEncoding and TextEncoding.
  563. * ClientRuntimeChannel.cs : channel factory must be opened before
  564. creating a channel. Some more input check.
  565. 2006-08-11 Atsushi Enomoto <[email protected]>
  566. * ClientCredentialsSecurityTokenManager.cs :
  567. Credentials -> ClientCredentials.
  568. 2006-08-10 Atsushi Enomoto <[email protected]>
  569. * ClientCredentialsSecurityTokenManager.cs : new file.
  570. * Dummy.cs : removed above.
  571. * ChannelFactory.cs : return ClientCredentials from endpoint's
  572. behavior.
  573. * ClientBase.cs : removed extra field.
  574. 2006-08-07 Atsushi Enomoto <[email protected]>
  575. * ServiceHostBase.cs, ServiceHost.cs : minor API fixes.
  576. 2006-08-07 Atsushi Enomoto <[email protected]>
  577. * ChannelFactory.cs : do nothing on OnClose().
  578. * ChannelFactory_1.cs : fixed some method signatures.
  579. * X509CertificateEndpointIdentity : implemented public members.
  580. * EndpointIdentity.cs : implemented CreateX509CertificateIdentity().
  581. 2006-08-04 Atsushi Enomoto <[email protected]>
  582. * Dummy.cs : more removal.
  583. 2006-08-04 Atsushi Enomoto <[email protected]>
  584. * Dummy.cs : remove added type.
  585. 2006-08-02 Atsushi Enomoto <[email protected]>
  586. * OperationContext.cs, FederatedMessageSecurityOverHttp.cs :
  587. cosmetic API fixes.
  588. 2006-08-01 Ankit Jain <[email protected]>
  589. * EndpointAddress.cs (ReadFrom): Move the code ..
  590. (ReadFromInternal): .. to here. Use this in all ReadFrom overloads.
  591. * EndpointAddress10.cs (ReadXml):
  592. (WriteXml): Use EndpointAddress's methods.
  593. * EndpointAddressAugust2004.cs (ReadXml):
  594. (WriteXml): Use EndpointAddress's methods.
  595. 2006-08-01 Atsushi Enomoto <[email protected]>
  596. * Constants.cs : added XmlDsig.
  597. 2006-08-01 Atsushi Enomoto <[email protected]>
  598. * Constants.cs : added some WS-Security constants.
  599. 2006-07-28 Atsushi Enomoto <[email protected]>
  600. * Dummy.cs : removed some security classes that are newly added.
  601. 2006-07-21 Atsushi Enomoto <[email protected]>
  602. * X509CertificateEndpointIdentity.cs : new file.
  603. * Dummy.cs : removed above.
  604. 2006-07-21 Atsushi Enomoto <[email protected]>
  605. * Dummy.cs : added some new X509 types.
  606. * Identity.cs, EndpointIdentity.cs : renamed former to latter.
  607. 2006-07-21 Atsushi Enomoto <[email protected]>
  608. * AllEnums.cs : added SecurityTokenInclusionMode.
  609. * Dummy.cs :
  610. removed SecurityTokenParameters and IssuedSecurityTokenParameters.
  611. * BasicHttpBinding.cs : removed some todos.
  612. 2006-07-20 Atsushi Enomoto <[email protected]>
  613. * BasicHttpSecurity.cs : implemented.
  614. * BasicHttpMessageSecurity.cs : API fix. Fill default security suite.
  615. * BasicHttpBinding.cs : implemented Security. When Message security
  616. is enabled, create a security binding element.
  617. * HttpTransportSecurity.cs : Realm is "" by default.
  618. 2006-07-20 Atsushi Enomoto <[email protected]>
  619. * Constants.cs : added MSSerialization.
  620. 2006-07-20 Atsushi Enomoto <[email protected]>
  621. * Constants.cs : new file.
  622. 2006-07-19 Atsushi Enomoto <[email protected]>
  623. * EndpointAddress.cs : WriteTo() implementation. Only Uri is supported
  624. for now.
  625. 2006-07-18 Atsushi Enomoto <[email protected]>
  626. * EndpointAddress.cs : implemented ReadFrom(). Added missing MonoTODO.
  627. * EndpointAddressBuilder.cs : implemented some members.
  628. 2006-07-18 Atsushi Enomoto <[email protected]>
  629. * WSDualHttpBinding.cs : it is not ISecurityCapabilities anymore.
  630. 2006-07-18 Atsushi Enomoto <[email protected]>
  631. * WSHttpBinding.cs :
  632. Implemented Security property.
  633. CreateBindingElements() not omits SecurityBindingElement when
  634. message security is not enabled.
  635. GetTransport() returns HttpsTransportBindingElement when transport
  636. security is enabled.
  637. * WSHttpBindingBase.cs : get_Scheme() returns https when appropriate.
  638. * HttpTransportSecurity.cs, MessageSecurityOverHttp.cs,
  639. WSHttpSecurity.cs, NonDualMessageSecurityOverHttp.cs : new files.
  640. * Dummy.cs : removed above.
  641. 2006-07-18 Atsushi Enomoto <[email protected]>
  642. * EnvelopeVersion.cs, ChannelFactory_1.cs, MessageSecurityVersion.cs,
  643. Identity.cs, ChannelFactory.cs, InstanceContext.cs :
  644. more June CTP changes.
  645. 2006-07-14 Atsushi Enomoto <[email protected]>
  646. * DeliveryRequirementsAttribute.cs,
  647. ServiceHostBase.cs : IContractBehavior API updates.
  648. 2006-07-14 Atsushi Enomoto <[email protected]>
  649. * ClientProxyGenerator.cs : assembly.Save() does not seem to be
  650. required anymore. Maybe it was a runtime bug.
  651. 2006-07-13 Atsushi Enomoto <[email protected]>
  652. * ClientRuntimeChannel.cs : fix warning.
  653. 2006-07-13 Atsushi Enomoto <[email protected]>
  654. * ClientRuntimeChannel.cs : don't create ClientOperation while we
  655. already created corresponding ones.
  656. * ServiceHostBase.cs : When input parameter is only Message, set
  657. SerializeRequest as false. When output parameter is Message, set
  658. DeserializeReply as false.
  659. * ClientBase.cs : When input parameter is only Message, set
  660. DeserializeRequest as false. When output parameter is Message, set
  661. SerializeReply as false.
  662. Both of those changes are to remove hack in DefaultOperationFormatter
  663. 2006-07-12 Atsushi Enomoto <[email protected]>
  664. * ServiceHostBase.cs : IMetadataExchange is the only case that
  665. requires non fulltype name in AddServiceEndpoint(), so handle it
  666. as a special case.
  667. 2006-07-12 Ankit Jain <[email protected]>
  668. * EndpointAddress10.cs: New.
  669. 2006-07-11 Atsushi Enomoto <[email protected]>
  670. * ClientProxyGenerator.cs :
  671. Generate BeginMethod and EndMethod as well. To do so, extract
  672. some code block into another method.
  673. 2006-07-10 Atsushi Enomoto <[email protected]>
  674. * AllEnums.cs : fix some binary compat.
  675. * Dummy.cs : some June CTP updates.
  676. 2006-07-10 Atsushi Enomoto <[email protected]>
  677. * ReliableSession.cs,
  678. OptionalReliableSession.cs : new implementation files.
  679. * Dummy.cs : The above are not dummy now.
  680. * MessageSecurityVersion.cs : implemented public properties.
  681. * WSHttpBindingBase.cs,
  682. WSHTtpBinding.cs : implemented some parts so that at least .ctor()
  683. and CreateBindingElements() do not raise an error.
  684. 2006-07-10 Atsushi Enomoto <[email protected]>
  685. * WSHttpBindingBase.cs, WSHttpBinding.cs :
  686. June CTP API fixes. Implemented CreateBindingElements() (it does
  687. not work since some binding elements will raise an exception).
  688. * Dummy.cs :
  689. Removed TransactionFlowBindingElement.
  690. * TransactionProtocol.cs :
  691. New file.
  692. * AllEnums.cs :
  693. Removed TransactionProtocol which became a class, not enum.
  694. 2006-07-07 Atsushi Enomoto <[email protected]>
  695. * ClientBase.cs, ServiceHostBase.cs : S.SM.Dispatcher dependent fix.
  696. 2006-07-06 Atsushi Enomoto <[email protected]>
  697. * ClientBase.cs : InnerProxy -> Channel.
  698. 2006-07-06 Atsushi Enomoto <[email protected]>
  699. * BasicHttpBinding.cs : AddressingVersion is now None.
  700. * MessageHeaderException.cs : new exception type.
  701. 2006-07-05 Atsushi Enomoto <[email protected]>
  702. * DefaultCommunicationTimeouts.cs : receive timeout is 10 minutes
  703. in June CTP.
  704. 2006-07-05 Atsushi Enomoto <[email protected]>
  705. * EndpointAddress.cs : oops, misreplaced Identity.
  706. 2006-07-05 Atsushi Enomoto <[email protected]>
  707. * Identity.cs, EndpointAddress.cs, Dummy.cs,
  708. EndpointAddressBuilder.cs : Identity -> EndpointIdentity.
  709. * MessageBodyAttribute.cs :
  710. MessageBodyAttribute -> MessageBodyMemberAttribute.
  711. 2006-07-05 Atsushi Enomoto <[email protected]>
  712. * NodeQuotaExceededException.cs : removed unused code.
  713. 2006-07-05 Atsushi Enomoto <[email protected]>
  714. * ClientRuntimeChannel.cs, ServiceHostBase.cs, ChannelFactory.cs :
  715. CommunicationObject abstract changes brought this madness.
  716. 2006-07-05 Atsushi Enomoto <[email protected]>
  717. * OperationContext.cs : IRequestContext -> RequestContext.
  718. 2006-07-05 Atsushi Enomoto <[email protected]>
  719. * IContextChannel.cs, PeerNode.cs,
  720. IDuplexClientChannel.cs, BasicHttpBinding.cs, ChannelFactory_1.cs,
  721. ServiceContractAttribute.cs, ICommunicationObject.cs,
  722. IClientChannel.cs, DuplexChannelFactory.cs, IServiceChannel.cs,
  723. AllEnums.cs, ChannelFactory.cs, BasicHttpSecurity.cs:
  724. several June CTP interface changes.
  725. * ClientRuntimeChannel.cs : In reflection to June CTP updates, it
  726. needed several internal changes. Channels are created at first
  727. request time as there is no way to predict whether request and/or
  728. output is used.
  729. 2006-07-03 Ankit Jain <[email protected]>
  730. * TransferMode.cs: Move from System.ServiceModel.Channels to here.
  731. * AllEnums.cs: Move QueueTransferProtocol from
  732. System.ServiceModel.Channels to System.ServiceModel .
  733. Remove PoisonMessageHandling.
  734. 2006-07-03 Ankit Jain <[email protected]>
  735. * AllEnums.cs: Update to June CTP changes.
  736. 2006-06-30 Atsushi Enomoto <[email protected]>
  737. * AllEnums.cs : added ReceiveErrorHandling.
  738. 2006-06-28 Atsushi Enomoto <[email protected]>
  739. * ClientBase.cs : pass bindingConfiguration from configuration element
  740. to create Binding. It's not considered though.
  741. 2006-06-27 Atsushi Enomoto <[email protected]>
  742. * ClientBase.cs : quick workaround for some config class weirdness.
  743. 2006-06-26 Atsushi Enomoto <[email protected]>
  744. * ClientBase.cs : some configuration support implementation.
  745. 2006-06-22 Atsushi Enomoto <[email protected]>
  746. * ClientProxyGenerator.cs : oops, parameter 0 is the instance itself.
  747. 2006-06-22 Atsushi Enomoto <[email protected]>
  748. * ClientProxyGenerator.cs : new file to generate InnerProxy type.
  749. * ClientRuntimeChannel.cs : implemented some members. New Process()
  750. method handles actual request/response binding.
  751. * ClientBase.cs,
  752. ChannelFactory_1.cs : moved CreateRuntime() from
  753. ChannelFactory<T> to ClientBase<T>. ClientBase<T> is abstract in
  754. WCF beta2. Reordered some internal field creation.
  755. Renamed some "channel" to "contract". Those MS misnamings s__k.
  756. 2006-06-20 Atsushi Enomoto <[email protected]>
  757. * ChannelFactory_1.cs : only interface can be the Type argument in
  758. ChannelFactory<T>#.ctor(Type).
  759. 2006-06-16 Ankit Jain <[email protected]>
  760. * AllEnumcs.cs (MetadataResolverMode.WsTransferGet): Update to case fix
  761. in beta2.
  762. 2006-06-12 Ankit Jain <[email protected]>
  763. * EndpointAddressAugust2004.cs (.ctor): Change from private to internal.
  764. 2006-05-29 Atsushi Enomoto <[email protected]>
  765. * FaultException.cs, FaultException_1.cs : in beta2 default action
  766. here is null.
  767. 2006-05-29 Atsushi Enomoto <[email protected]>
  768. * WSHttpBindingBase.cs, Identity.cs, AllEnums.cs
  769. WSDualHttpBinding.cs : updated API fixes.
  770. 2006-05-29 Atsushi Enomoto <[email protected]>
  771. * EnvelopeVersion.cs : moved back from S.SM.Channels.
  772. 2006-05-29 Atsushi Enomoto <[email protected]>
  773. moved to proper namespace dirs:
  774. * ServiceCredentials.cs, ClientCredentials.cs,
  775. ServiceMetadataBehavior.cs :
  776. - to S.SM.Description.
  777. * AspNetIntegrationRequirementsAttribute.cs,
  778. IServiceHostFactory.cs, ServiceHostFactory.cs :
  779. - to S.SM.Activation.
  780. * EndpointDispatcher.cs : - to S.SM.Dispatcher.
  781. 2006-05-29 Atsushi Enomoto <[email protected]>
  782. * AllEnums.cs, Dummy.cs, ClientCredentials.cs, ServiceCredentials.cs,
  783. InstanceContext.cs, EndpointDispatcher.cs, ServiceHostFactory.cs,
  784. IServiceHostFactory.cs, ServiceMetadataBehavior.cs,
  785. AspNetIntegrationRequirementsAttribute.cs :
  786. namespace changes. Removed Obsoleted.
  787. * BasicHttpBinding.cs, NetTcpBinding.cs, WSHttpBindingBase.cs :
  788. IBindingManualAddressing vanished in beta2.
  789. 2006-04-26 Atsushi Enomoto <[email protected]>
  790. * ClientRuntimeChannel.cs : missing file.
  791. 2006-04-20 Atsushi Enomoto <[email protected]>
  792. * ChannelFactory.cs : CreateFactory return IChannelFactory.
  793. * ServiceHostBase.cs : Fixed incorrect iterations to populate
  794. DispatchOperations.
  795. * ClientBase.cs,
  796. ClientRuntimeChannel.cs : I'm not sure if this is the right
  797. approach, but here is an approach to implement ClientBase.
  798. * ChannelFactory_1.cs : ongoing implementation for ClientBase.
  799. 2006-04-05 Atsushi Enomoto <[email protected]>
  800. * ChannelFactory.cs : GetContract() now rejects operation-less
  801. cotnract, so added dummy operation as well in the dummy contract.
  802. 2006-03-23 Atsushi Enomoto <[email protected]>
  803. * Dummy.cs : removed some extra security classes.
  804. 2006-03-17 Atsushi Enomoto <[email protected]>
  805. * ActionNotSupportedException.cs : new file.
  806. * EndpointDispatcher.cs : removed comment.
  807. * ServiceHostBase.cs :
  808. create EndpointDispatcher in ChannelDispatcher.Attach().
  809. Added GetContract() for internal use.
  810. 2006-03-16 Atsushi Enomoto <[email protected]>
  811. * ChannelFactory.cs ChannelFactory_1.cs :
  812. removed extraneous contructors.
  813. * EndpointDispatcher.cs : removed extra channel list.
  814. * ServiceHost.cs : added field for contracts and use it when
  815. contracts are created in AddServiceEndpoint().
  816. * ServiceHostBase.cs : add opened channel dispatchers to its list.
  817. 2006-03-15 Atsushi Enomoto <[email protected]>
  818. * OperationContext.cs OperationContextScope.cs
  819. ServiceMetadataBehavior.cs ServiceBehaviorAttribute.cs
  820. ServiceHostFactory.cs : Feb. CTP API fixes.
  821. 2006-03-14 Atsushi Enomoto <[email protected]>
  822. * Dummy.cs : removed some S.S.Channels classes.
  823. * BasicHttpBinding.cs : message encoding could be Mtom. Also its
  824. arguments (version and encoding) could be configurable.
  825. 2006-03-14 Atsushi Enomoto <[email protected]>
  826. * InstanceContext.cs : added some missing members. few implementation.
  827. * BasicHttpSecurity.cs BasicHttpMessageSecurity.cs : new files.
  828. * Dummy.cs : removed above.
  829. 2006-03-08 Atsushi Enomoto <[email protected]>
  830. * MessageHeader_1.cs : added IsReferenceParameter arg (and comment).
  831. 2006-03-07 Atsushi Enomoto <[email protected]>
  832. * ServiceHostBase.cs : OnOpened() is overriden, not virtual.
  833. 2006-03-07 Atsushi Enomoto <[email protected]>
  834. * WSHttpBindingBase.cs WSHttpBinding.cs WSFederationBinding.cs
  835. NetPeerTcpBinding.cs NetTcpBinding.cs WSDualHttpBinding.cs :
  836. removed OnInitialize() and OnApplyConfiguration.
  837. 2006-03-06 Atsushi Enomoto <[email protected]>
  838. * ServiceHostBase.cs : populate type from type name as expected (still
  839. not sure but this implementation would mostly make sense).
  840. 2006-03-06 Atsushi Enomoto <[email protected]>
  841. * ServiceHostFactory.cs : new file.
  842. * ServiceHostBase.cs, ServiceHost.cs : they were still missing some
  843. members. Updated implementation to work in Feb. CTP way.
  844. 2006-03-03 Atsushi Enomoto <[email protected]>
  845. * ChannelFactory.cs : no need to call CreateDescription() in
  846. InitializeEndpoint().
  847. * ChannelFactory_1.cs : .ctor(Type) could invoke InitializeEndpoint()
  848. as well as other .ctors.
  849. 2006-03-03 Atsushi Enomoto <[email protected]>
  850. * FaultException_1.cs : removed extra fields that are moved to
  851. non-generic type.
  852. * Faultexception.cs : Added missing members. Null arg check.
  853. * FaultContractAttribute.cs : removed extra set_HasProtectionLevel.
  854. 2006-03-03 Atsushi Enomoto <[email protected]>
  855. * BasicHttpBinding.cs : implemented some members to pass the tests.
  856. 2006-03-02 Atsushi Enomoto <[email protected]>
  857. * FaultReason.cs FaultContractAttribute.cs FaultException.cs
  858. FaultException_1.cs : MessageFault related API fixes.
  859. 2006-03-02 Atsushi Enomoto <[email protected]>
  860. * EndpointAddress.cs : more API fix. Anonymous URI has changed to
  861. reasonable URI which does not pretend standards.
  862. 2006-02-23 Atsushi Enomoto <[email protected]>
  863. * ClientCredentials.cs Identity.cs ServiceSecurityContext.cs
  864. X509CertificateInitiatorServiceCredential.cs
  865. X509CertificateRecipientClientCredential.cs :
  866. Dependent fixes for System.IdentityModel reorgainzation.
  867. 2006-02-23 Atsushi Enomoto <[email protected]>
  868. * moved several files to new namespace directoties.
  869. 2006-02-23 Atsushi Enomoto <[email protected]>
  870. * ActionFilter.cs ActionFilterTable.cs AddressHeader.cs
  871. AddressHeaderCollection.cs AddressingVersion.cs
  872. AspNetIntegrationRequirementsAttribute.cs
  873. AsymmetricSecurityBindingElement.cs
  874. BasicHttpBinding.cs BehaviorCollection.cs
  875. BinaryMessageEncodingBindingElement.cs Binding.cs BindingElement.cs
  876. BindingElementCollection.cs BindingParameterCollection.cs
  877. BindingRequirementsAttribute.cs ChannelBehaviorCollection.cs
  878. ChannelDescription.cs ChannelFactory.cs ChannelFactory_1.cs
  879. ClientBase.cs ClientCredentials.cs CompositeDuplexBindingElement.cs
  880. ConnectionOrientedTransportBindingElement.cs
  881. ContractBehaviorCollection.cs ContractDescription.cs
  882. CustomBinding.cs DispatchBehavior.cs DispatchOperation.cs
  883. Dispatcher.cs Dummy.cs EmptyFaultException.cs EndpointAddress.cs
  884. EndpointAddressBuilder.cs EndpointAddressFilter.cs
  885. EndpointAddressFilterTable.cs EndpointBehaviorCollection.cs
  886. EndpointFilter.cs EndpointFilterTable.cs EndpointListener.cs
  887. FaultDescription.cs FaultDescriptionCollection.cs
  888. FaultException.cs Filter.cs FilterInvalidBodyAccessException.cs
  889. FilterNodeQuotaExceededException.cs FilterTable.cs
  890. GenericWrapperChannelFactory.cs GetMetadataRequest.cs
  891. GetMetadataRequestParameters.cs GetMetadataResponse.cs
  892. GetRequest.cs GetResponse.cs HostedBindingBehavior.cs
  893. HttpTransportBindingElement.cs HttpsTransportBindingElement.cs
  894. IBindingCapabilities.cs IBindingManualAddressing.cs
  895. IBindingRuntimePreferences.cs IChannel.cs IChannelBehavior.cs
  896. IChannelFactory.cs IChannelInitializer.cs IChannelListener.cs
  897. IChannelManager.cs IClientChannel.cs IContractBehavior.cs
  898. IContractBehaviorAttribute.cs IDispatchOperationSelector.cs
  899. IDuplexChannel.cs IDuplexClientChannel.cs IDuplexSession.cs
  900. IDuplexSessionChannel.cs IEndpointBehavior.cs
  901. IEndpointDispatcher.cs IErrorHandler.cs IFilterTable.cs
  902. IInputChannel.cs IInputSession.cs IInputSessionChannel.cs
  903. IInputSessionShutdown.cs IInstanceContextInitializer.cs
  904. IInstanceProvider.cs IMessageHeaderInfo.cs IMessageProperty.cs
  905. IMetadataExchange.cs IOperationBehavior.cs IOperationInvoker.cs
  906. IOutputChannel.cs IOutputSession.cs IOutputSessionChannel.cs
  907. IProxyFormatter.cs IProxyMessageInspector.cs
  908. IProxyOperationSelector.cs IReplyChannel.cs
  909. IReplySessionChannel.cs IRequestChannel.cs IRequestContext.cs
  910. IRequestSessionChannel.cs IServiceBehavior.cs ISession.cs
  911. ISessionChannel.cs IStubFormatter.cs IStubMessageInspector.cs
  912. ITransportBindingElement.cs InstanceListener.cs
  913. InvalidBodyAccessException.cs IssuedTokenClientCredential.cs
  914. ListenUriBehavior.cs MatchAllEndpointBehavior.cs MatchAllFilter.cs
  915. MatchNoneFilter.cs Message.cs MessageBodyDescription.cs
  916. MessageBuffer.cs MessageContractAttribute.cs
  917. MessageDescription.cs MessageDescriptionCollection.cs
  918. MessageEncodingBindingElement.cs MessageFault.cs
  919. MessageFaultBodyWriter.cs MessageHeader.cs
  920. MessageHeaderDescription.cs MessageHeaderDescriptionCollection.cs
  921. MessageHeaders.cs MessageImpl.cs MessageInterceptorEventArgs.cs
  922. MessagePartDescription.cs MessagePartDescriptionCollection.cs
  923. MessageProperties.cs MessagePropertyDescription.cs
  924. MessagePropertyDescriptionCollection.cs MessageVersion.cs
  925. MetadataDialect.cs MetadataReference.cs MetadataSection.cs
  926. MtomMessageEncodingBindingElement.cs
  927. MultipleFilterMatchesException.cs MustUnderstandBehavior.cs
  928. NamedPipetransportBindingElement.cs
  929. NavigatorInvalidBodyAccessException.cs NetPeerTcpBinding.cs
  930. NetTcpBinding.cs OperationBehaviorAttribute.cs
  931. OperationBehaviorCollection.cs OperationContext.cs
  932. OperationDescription.cs OperationDescriptionCollection.cs
  933. PeerResolverBindingElement.cs PeerSecurityBehavior.cs
  934. PeerTransportBindingElement.cs PnrpPeerResolverBindingElement.cs
  935. ProxyBehavior.cs ProxyOperation.cs ReflectedContractCollection.cs
  936. SecurityBindingElement.cs ServiceAuthorizationBehavior.cs
  937. ServiceBehaviorAttribute.cs ServiceBehaviorCollection.cs
  938. ServiceCredentials.cs ServiceDescription.cs ServiceEndpoint.cs
  939. ServiceEndpointCollection.cs ServiceHost.cs
  940. ServiceMetadataBehavior.cs ServiceSecurityAuditBehavior.cs
  941. SymmetricSecurityBindingElement.cs TcpTransportBindingElement.cs
  942. TextMessageEncodingBindingElement.cs TransportBindingElement.cs
  943. TypedMessageConverter.cs UnderstoodHeaders.cs
  944. UnknownFaultException.cs UnknownMessageReceivedEventArgs.cs
  945. UserNamePasswordClientCredential.cs
  946. UserNamePasswordServiceCredential.cs ViaUriBehavior.cs
  947. WSDualHttpBinding.cs WSFederationBinding.cs WSFederationSecurity.cs
  948. WSHttpBinding.cs WSHttpBindingBase.cs
  949. X509CertificateInitiatorClientCredential.cs
  950. X509CertificateInitiatorServiceCredential.cs
  951. X509CertificateRecipientClientCredential.cs
  952. X509CertificateRecipientServiceCredential.cs
  953. XPathFilter.cs XPathFilterTable.cs XPathMessageContext.cs
  954. XmlFormatterOperationBehavior.cs
  955. XmlSerializerOperationBehavior.cs :
  956. Feb. CTP API chapter 1 - changes are so massive :-(
  957. 2006-02-15 Atsushi Enomoto <[email protected]>
  958. * Dispatcher.cs : filter is defaulted to MatchNoneFilter.
  959. * EndpointListener.cs : null address in .ctor() is rejected.
  960. 2006-02-15 Atsushi Enomoto <[email protected]>
  961. * HttpTransportBindingElement.cs : no need to provide
  962. IDefaultCommunicationTimeout here. Binding implements it.
  963. 2006-02-15 Atsushi Enomoto <[email protected]>
  964. * DispatchOperation.cs DispatchBehavior.cs
  965. ProxyOperation.cs ProxyBehavior.cs : initialize Operations property
  966. with a collection. We need concrete SynchronizedKeyedCollection
  967. implemantation classes for each.
  968. * ServiceDescription.cs : apply IOperationBehaviors stored in
  969. OperationDescription.
  970. 2006-02-15 Atsushi Enomoto <[email protected]>
  971. * XPathMessageContext.cs EndpointAddressBuilder.cs : new files.
  972. * Dummy.cs : removed above.
  973. * XPathFilterTable.cs FilterTable.cs ClientBase.cs :
  974. added missing bits.
  975. 2006-02-15 Atsushi Enomoto <[email protected]>
  976. * FederatedMessageSecurityOverHttp.cs WSFederationSecurity.cs
  977. WSFederationBinding.cs : new files.
  978. * Dummy.cs : removed above.
  979. * XPathFilterTable.cs : added some missing bits.
  980. 2006-02-15 Atsushi Enomoto <[email protected]>
  981. * ProxyBehavior.cs : another .ctor() that can be used at client side.
  982. * ChannelFactory_1.cs : call ApplyBehavior for each ChannelBehavior.
  983. Call OnCreateDescription() (it can be probably used in derived
  984. classes to add custom behaviors etc.)
  985. 2006-02-15 Atsushi Enomoto <[email protected]>
  986. * ServiceHost.cs :
  987. Initialize() handles listener creation (so it's cleaner now).
  988. * ServiceDescription.cs :
  989. Implemented and updated behavior processing.
  990. 2006-02-15 Atsushi Enomoto <[email protected]>
  991. * EndpointListener.cs : removed unused code.
  992. * ServiceEndpoint.cs : binding could be null in .ctor()
  993. * AddressHeaderCollection.cs : implemented AddHeadersTo().
  994. Null argument check in FindHeader().
  995. * ServiceDescription.cs : tiny todo cleanup.
  996. 2006-02-14 Atsushi Enomoto <[email protected]>
  997. * MessageImpl.cs : implemented Headers.
  998. * ActionFilter.cs : null check. uncommented Headers-dependent code.
  999. 2006-02-14 Atsushi Enomoto <[email protected]>
  1000. * XPathFilterTable.cs MatchAllEndpointBehavior.cs
  1001. MustUnderstandBehavior.cs : new files.
  1002. * MtomMessageEncodingBindingElement.cs
  1003. TextMessageEncodingBindingElement.cs
  1004. BinaryMessageEncodingBindingElement.cs : IWsdlExporter fixes.
  1005. * ProxyBehavior.cs : added some of the missing properties.
  1006. 2006-02-14 Atsushi Enomoto <[email protected]>
  1007. * IBindingManualAddressing.cs, EndpointAddressFilterTable.cs
  1008. EndpointFilterTable.cs : new files.
  1009. * Dispatcher.cs
  1010. TextMessageEncodingBindingElement.cs
  1011. BinaryMessageEncodingBindingElement.cs
  1012. MessageEncodingBindingElement.cs : some API fixes.
  1013. 2006-02-14 Atsushi Enomoto <[email protected]>
  1014. * ReflectedContractCollection.cs : added internal Add().
  1015. * ServiceMetadataBehavior.cs : for now just pass ApplyBehavior().
  1016. * ServiceBehaviorAttribute.cs :
  1017. Implemented ApplyBehaviors() a bit more.
  1018. * ServiceHostBase.cs, ServiceHost.cs, ServiceDescription.cs :
  1019. Several API fixes to match Jan. CTP. Processing model around
  1020. Initialize and Open are fixed.
  1021. 2006-02-11 Ankit Jain <[email protected]>
  1022. * ServiceHost.cs (ServiceHost.AddServiceEndpoint): Build endpoint
  1023. address using a matching base address, if the one specified is relative.
  1024. * UriSchemeKeyedCollection.cs (UriSchemeKeyedCollection.ctor): Base
  1025. address cannot contain a query string.
  1026. 2006-02-11 Ankit Jain <[email protected]>
  1027. * ServiceHost.cs (ServiceHost.ConstructorInit): ServiceType must be a
  1028. class.
  1029. * UriSchemeKeyedCollection.cs (UriSchemeKeyedCollection.ctor): Insert
  1030. URIs into the collection, while ensuring that only one URI per Scheme is
  1031. allowed.
  1032. 2006-02-09 Atsushi Enomoto <[email protected]>
  1033. * BindingElement.cs : (BuildChannelListener) null argument check.
  1034. * EndpointListener.cs : updated to match the latest CTP. It does not
  1035. use CreateListener() anymore. Use "timeout".
  1036. * HttpTransportBindingElement.cs : Support BuildChannelListener().
  1037. * ServiceDescription.cs : updated InitializeServiceHost() to match
  1038. the latest CTP.
  1039. * ServiceHost.cs : thus re-enabled InitializeServiceHost() again.
  1040. 2006-02-08 Atsushi Enomoto <[email protected]>
  1041. * FaultReason.cs : make use of alias. The first argument for
  1042. SynchronizedReadOnlyCollection is a lock object, not a list.
  1043. * SynchronizedReadOnlyCollection.cs :
  1044. The argument string for ArgumentNullException is a parameter name,
  1045. not a message. Implementation is collected to one .ctor().
  1046. * MessageFault.cs : serialize details, not Reason. To write Reason
  1047. element, use the envelope's namespace.
  1048. 2006-02-08 Atsushi Enomoto <[email protected]>
  1049. * Message.cs : More comments. Implemented Create(version, fault).
  1050. * MessageImpl.cs : Fixed virtual->override.
  1051. * FaultReason.cs : argument check.
  1052. * FaultReasonText.cs : it should use full name instead of ISO 2 letter
  1053. name. Matches() should match if the argument culture is a "child"
  1054. culture (i.e. it should return true if its Parent matches).
  1055. * MessageFault.cs :
  1056. When it does not have Details then do not try to write it.
  1057. has_detail was not correctly used.
  1058. It should not write xmlns attributes for fault code namespace URI if
  1059. it is empty.
  1060. 2006-02-08 Atsushi Enomoto <[email protected]>
  1061. * Message.cs : implemented couple of members.
  1062. * MessageImpl.cs : new file that contains couple of Message
  1063. implementation classes.
  1064. * MessageFault.cs : make use of WriteXmlnsAttribute().
  1065. 2006-02-08 Atsushi Enomoto <[email protected]>
  1066. * XmlReaderBodyWriter.cs
  1067. XmlFormatterBodyWriter.cs
  1068. MessageFaultBodyWriter.cs : BodyWriter implementation classes.
  1069. * Message.cs : implemented most of CreateMessage() as to call another
  1070. one, using above BodyWriter impl. classes.
  1071. 2006-02-02 Atsushi Enomoto <[email protected]>
  1072. * GenericWrapperChannelFactory.cs : forgot to set the "inner" field.
  1073. 2006-02-01 Atsushi Enomoto <[email protected]>
  1074. * GenericWrapperChannelFactory.cs : new file for
  1075. BindingElement.BuildChannelFactory<TChannel>().
  1076. * BindingElement.cs : use above.
  1077. * ChannelDescription.cs : .ctor() argument null check.
  1078. * ChannelFactory_1.cs : because of above, pass the generic type
  1079. argument.
  1080. 2006-02-01 Atsushi Enomoto <[email protected]>
  1081. * ChannelDescription.cs : Behaviors instance is needed.
  1082. * ChannelFactory_1.cs : check some null args. ChannelDescription
  1083. initially does not hold any type info.
  1084. * ChannelFactory.cs : removed some NotImplementedException for
  1085. further implementation.
  1086. * ServiceEndpoint.cs : EndpointAddress in .ctor() could be null.
  1087. 2006-01-26 Atsushi Enomoto <[email protected]>
  1088. * ConnectionOrientedTransportBindingElement.cs,
  1089. TcpTransportBindingElement.cs : easy .ctor() implementation.
  1090. 2006-01-26 Atsushi Enomoto <[email protected]>
  1091. * HttpTransportBindingElement.cs : HttpChannelFactory() does not
  1092. need ChannelBuildContext anymore (... for now).
  1093. * MessageEncodingBindingElement.cs :
  1094. Simple use context.(Can)BuildBlah() for each corresponding method.
  1095. GetProtectionRequirements() returns null here.
  1096. 2006-01-26 Atsushi Enomoto <[email protected]>
  1097. * ChannelFactory_1.cs : get rid of ChannelLoader and create
  1098. ChannelDescription directly.
  1099. * MessageEncodingBindingElement.cs : implemented BuildChannelFactory()
  1100. (not sure if it is correct, but seems like it does nothing there.)
  1101. 2006-01-25 Atsushi Enomoto <[email protected]>
  1102. * ServiceDescription.cs : removed debugging code.
  1103. * FilterNodeQuotaExceededException.cs
  1104. FilterInvalidBodyAccessException.cs
  1105. CommunicationObjectFaultedException.cs
  1106. AddressAccessDeniedException.cs EndpointNotFoundException.cs
  1107. OperationRequirement.cs NetTcpBinding.cs FaultException.cs
  1108. InvalidBodyAccessException.cs NodeQuotaExceededException.cs
  1109. CommunicationException.cs AddressHeaderCollection.cs
  1110. MetadataDocument.cs ProtocolException.cs
  1111. QuotaExceededException.cs NetPeerTcpBinding.cs
  1112. InvalidMessageContractException.cs
  1113. AddressAlreadyInUseException.cs PeerTransportBindingElement.cs
  1114. NavigatorInvalidBodyAccessException.cs
  1115. NavigatorNodeQuotaExceededException.cs
  1116. MetadataReference.cs MetadataSection.cs
  1117. MultipleFilterMatchesException.cs DuplexClientBase.cs
  1118. ChannelFactory.cs PeerSecurityBehavior.cs :
  1119. several API fixes found by corcompare update.
  1120. 2006-01-25 Atsushi Enomoto <[email protected]>
  1121. * ServiceDescription.cs : don't Add ContractDescription twice inside
  1122. AddServiceEndpoint. Got sample service working.
  1123. 2006-01-19 Atsushi Enomoto <[email protected]>
  1124. * EndpointAddress.cs BehaviorCollection.cs Message.cs
  1125. GetResponse.cs ServiceHostBase.cs
  1126. XmlSerializerOperationBehavior.cs TransportBindingElement.cs
  1127. TextMessageEncodingBindingElement.cs MessageHeaders.cs
  1128. ServiceMetadataExtension.cs HttpTransportBindingElement.cs
  1129. MessageHeaderDescriptionCollection.cs
  1130. MessageInterceptorEventArgs.cs ChannelFactory_1.cs
  1131. HttpsTransportBindingElement.cs ServiceDescription.cs
  1132. BinaryMessageEncodingBindingElement.cs MessageFault.cs
  1133. MessageEncodingBindingElement.cs ChannelFactory.cs
  1134. MessageDescriptionCollection.cs :
  1135. several updates to catch up Jan. CTP API.
  1136. 2006-01-17 Atsushi Enomoto <[email protected]>
  1137. * AddressHeader.cs : null Name and Namespace are just ignored.
  1138. 2006-01-17 Atsushi Enomoto <[email protected]>
  1139. * EndpointAddress.cs : fixed incorrect Equals(). Set empty headers
  1140. for .ctor()s without AddressHeaders.
  1141. 2006-01-17 Atsushi Enomoto <[email protected]>
  1142. * EndpointAddress.cs : never use == for Uri.
  1143. 2006-01-17 Atsushi Enomoto <[email protected]>
  1144. * EndpointAddress.cs ClientBase.cs ServiceDescription.cs
  1145. ServiceHost.cs CustomBinding.cs :
  1146. several updates for Dec.CTP.
  1147. 2005-11-22 Atsushi Enomoto <[email protected]>
  1148. * ChannelFactory.cs, ChannelFactory_1.cs : several updates on .ctor().
  1149. 2005-11-21 Atsushi Enomoto <[email protected]>
  1150. * ServiceMetadataBehavior.cs : removed DataContract stuff.
  1151. * ServiceDescription.cs :
  1152. Use Contains() to query item from collections.
  1153. * ContractDescription.cs :
  1154. Added new constructors. Session->UsesSession.
  1155. 2005-11-21 Atsushi Enomoto <[email protected]>
  1156. * ReflectedContractCollection.cs : new file.
  1157. * ChannelBehaviorCollection.cs BindingParameterCollection.cs :
  1158. Removed vanished DataContract attributes.
  1159. * BehaviorCollection.cs :
  1160. Updated Remove()/RemoveAll() signatures to Nov. CTP.
  1161. * ServiceDescription.cs
  1162. ServiceHost.cs ServiceEndpoint.cs :
  1163. Changes caused by the removal of ServiceLoader and TypeLoader.
  1164. Those types are unified into ServiceDescription.cs.
  1165. 2005-11-21 Atsushi Enomoto <[email protected]>
  1166. * EndpointListener.cs, InstanceListener.cs : updated to Nov. CTP.
  1167. 2005-11-21 Atsushi Enomoto <[email protected]>
  1168. * IListener.cs, IListenerFactory.cs : vanished in Nov. CTP.
  1169. * CompositeDuplexBindingElement.cs InstanceListener.cs
  1170. AsymmetricSecurityBindingElement.cs BindingElement.cs
  1171. EndpointListener.cs IChannelListener.cs Binding.cs
  1172. HttpTransportBindingElement.cs SymmetricSecurityBindingElement.cs
  1173. PnrpPeerResolverBindingElement.cs TcpTransportBindingElement.cs
  1174. NamedPipetransportBindingElement.cs HttpsTransportBindingElement.cs
  1175. ServiceDescription.cs SecurityBindingElement.cs
  1176. PeerTransportBindingElement.cs ServiceHost.cs
  1177. MessageEncodingBindingElement.cs :
  1178. IListener related updates to Nov. CTP.
  1179. 2005-11-20 Atsushi Enomoto <[email protected]>
  1180. * XmlFormatterOperationBehavior.cs,
  1181. XmlSerializerOperationBehavior.cs : more updates to Nov. CTP.
  1182. 2005-11-20 Atsushi Enomoto <[email protected]>
  1183. * AllEnums.cs : updated to Nov. CTP.
  1184. 2005-11-20 Atsushi Enomoto <[email protected]>
  1185. * SessionFaultedEventArgs.cs, PrimitiveOperationFormatter.cs :
  1186. removed in Nov. CTP
  1187. * FaultDescription.cs MessageDescription.cs
  1188. ContractBehaviorCollection.cs XmlFormatterOperationBehavior.cs
  1189. Dummy.cs MessageHeaderDescription.cs
  1190. OperationDescriptionCollection.cs OperationDescription.cs
  1191. MessageHeaderDescriptionCollection.cs
  1192. OperationBehaviorCollection.cs ServiceAuthorizationBehavior.cs
  1193. MessageBodyDescription.cs ContractDescription.cs
  1194. FaultDescriptionCollection.cs IClientChannel.cs
  1195. ServiceBehaviorCollection.cs MessagePartDescription.cs ISession.cs
  1196. ServiceSecurityContext.cs ServiceBehaviorAttribute.cs
  1197. MessageDescriptionCollection.cs : some updates to Nov. CTP.
  1198. 2005-11-20 Atsushi Enomoto <[email protected]>
  1199. * IFaultProvider.cs MessageException.cs IPersistentSession.cs
  1200. IFaultContext.cs MessageOperationFormatter.cs
  1201. IOneWayMessageAsyncIntermediary.cs IntermediaryBinding.cs
  1202. ChannelIOException.cs ChannelException.cs EndpointFilterProvider.cs
  1203. IPersistentInputSession.cs IRequestReplyMessageAsyncIntermediary.cs
  1204. ChannelListenException.cs IEndpointFilterProvider.cs
  1205. MessageIOException.cs IRequestReplyMessageIntermediary.cs
  1206. ConnectionRefusedException.cs CommunicationErrorEventArgs.cs
  1207. ISessionRecovery.cs IPersistentOutputSession.cs
  1208. ChannelConnectException.cs IOneWayMessageIntermediary.cs :
  1209. removed in Nov. CTP.
  1210. * Dispatcher.cs, Dummy.cs, AddressAccessDeniedException.cs,
  1211. EndpointNotFoundException.cs, InvalidBodyAccessException.cs,
  1212. ProtocolException.cs, ICommunicationObject.cs,
  1213. InvalidMessageContractException.cs,
  1214. AddressAlreadyInUseException.cs, IEndpointDispatcher.cs :
  1215. updated to Nov. CTP.
  1216. 2005-11-20 Atsushi Enomoto <[email protected]>
  1217. * ServiceHost.cs : internalized ServiceLoader (removed in Nov. CTP).
  1218. 2005-11-20 Atsushi Enomoto <[email protected]>
  1219. * CustomBinding.cs : implemented most of the members.
  1220. * BindingElement.cs : was seeing
  1221. http://savas.parastatidis.name/2005/04/08/4b0b99b1-92c6-4442-ab2e-4c4951009ef4.aspx
  1222. and modified channel build logic a bit.
  1223. 2005-11-03 Atsushi Enomoto <[email protected]>
  1224. * HttpTransportBindingElement.cs : new stub.
  1225. * Dummy.cs : removed above.
  1226. * Filter.cs : data contracts.
  1227. * EndpointListener.cs : (CreateListener) enabled commented code with
  1228. explicit casts.
  1229. * BehaviorCollection.cs : added missing members.
  1230. 2005-11-03 Atsushi Enomoto <[email protected]>
  1231. * TextMessageEncodingBindingElement.cs,
  1232. ChannelBehaviorCollection.cs,
  1233. BinaryMessageEncodingBindingElement.cs :
  1234. Implemented CreateMessageEncoderFactory().
  1235. * EndpointListener.cs : CreateListener() does not compile until
  1236. #76625 got fixed.
  1237. 2005-11-02 Atsushi Enomoto <[email protected]>
  1238. * InstanceContext.cs : it cannot override (now that) non-virtual
  1239. OnClose().
  1240. 2005-11-02 Atsushi Enomoto <[email protected]>
  1241. * PeerResolverBindingElement.cs : new file, which should be here
  1242. (MS puts it under sys.sm.design).
  1243. * PnrpPeerResolverBindingElement.cs,
  1244. ChannelBehaviorCollection.cs : new file.
  1245. * Dummy.cs : removed above.
  1246. A set of minor fixes:
  1247. * ConnectionOrientedTransportBindingElement.cs : internal copy .ctor().
  1248. * CustomBinding.cs : non-virtual Initialize().
  1249. * ViaUriBehavior.cs : implemented.
  1250. * ServiceHost.cs : some AddEndpoint() are virtual.
  1251. * PeerNodeAddress.cs,
  1252. ActionFilter.cs : [DataContract].
  1253. * EmptyFaultDescription.cs, UnknownFaultException.cs : sealed.
  1254. * FaultDescriptionCollection.cs,
  1255. ServiceBehaviorCollection.cs,
  1256. ContractBehaviorCollection.cs,
  1257. OperationBehaviorCollection.cs,
  1258. : [KnownType]. Hide public .ctor() for some.
  1259. * WSDualHttpBinding.cs : missing set_ClientBaseAddress().
  1260. * FaultContractAttribute.cs : extraneous set_DetailType().
  1261. * BindingElementCollection.cs : removed extraneous Contains<T>().
  1262. * AspNetIntegrationRequirementsAttribute.cs : fixed AttributeUsage.
  1263. 2005-11-01 Atsushi Enomoto <[email protected]>
  1264. * UserNamePasswordServiceCredential.cs,
  1265. X509CertificateInitiatorClientCredential.cs,
  1266. UserNamePasswordClientCredential.cs,
  1267. X509CertificateInitiatorServiceCredential.cs,
  1268. X509CertificateRecipientClientCredential.cs,
  1269. X509CertificateRecipientServiceCredential.cs : new files.
  1270. * Dummy.cs : removed above.
  1271. * ServiceCredentials.cs, ClientCredentials.cs :
  1272. use them in those credential aggregators.
  1273. 2005-11-01 Atsushi Enomoto <[email protected]>
  1274. * TypedMessageConverter.cs, PeerResolverImpl.cs, PeerResolver.cs,
  1275. PeerNodeAddress.cs, HttpDigestClientCredential.cs,
  1276. ExtensionCollection.cs, IssuedTokenClientCredential.cs : new files.
  1277. * Dummy.cs : removed above.
  1278. * Binding.cs, BasicHttpBinding.cs, NetTcpBinding.cs, WSHttpBinding.cs,
  1279. WSDualHttpBinding.cs, IntermediaryBinding.cs, CustomBinding.cs :
  1280. .ctor(string).
  1281. * MessageEncodingBindingElement.cs : init XmlDictionaryReaderQuotas.
  1282. * TcpTransportBindingElement.cs,
  1283. PeerTransportBindingElement.cs : scheme.
  1284. * NetPeerTcpBinding.cs : some implementation.
  1285. * ClientCredentials.cs : Implemented some properties. It seems like
  1286. an aggregated security info.
  1287. * AsymmetricSecurityBindingElement.cs,
  1288. SymmetricSecurityBindingElement.cs : ToString().
  1289. * HttpTransportBindingElement.cs :
  1290. Removed extraneous BuildChannelFactory().
  1291. * OperationDescriptionCollection.cs : attribute fix.
  1292. * OperationContext.cs : Extensions is not that simple.
  1293. * CompositeDuplexBindingElement.cs : set_ClientBaseAddress().
  1294. 2005-11-01 Atsushi Enomoto <[email protected]>
  1295. * AsymmetricSecurityBindingElement.cs,
  1296. LocalServiceSecuritySettings.cs,
  1297. SymmetricSecurityBindingElement.cs,
  1298. ServiceCredentials.cs, LocalClientSecuritySettings.cs : new files.
  1299. * Dummy.cs : removed above.
  1300. * SecurityBindingElement.cs : added internal .ctor().
  1301. * ServiceBehaviorAttribute.cs, ServiceContractAttribute.cs,
  1302. ServiceAuthorizationBehavior.cs : tiny API fixes.
  1303. 2005-11-01 Atsushi Enomoto <[email protected]>
  1304. * ServiceSecurityContext.cs, ServiceBehaviorAttribute.cs : new files.
  1305. * Dummy.cs : removed above.
  1306. * SecurityBindingElement.cs,
  1307. ServiceAuthorizationBehavior.cs : signature fix.
  1308. 2005-10-31 Atsushi Enomoto <[email protected]>
  1309. * SecurityBindingElement.cs,
  1310. BodyWriter.cs : new files.
  1311. * Dummy.cs : removed above.
  1312. * ServiceSecurityAuditBehaviot.cs : implemented.
  1313. 2005-10-28 Atsushi Enomoto <[email protected]>
  1314. * InstanceContext.cs, ChannelFactory_1.cs, ServiceHostBase.cs,
  1315. EndpointListener.cs : now timeouts are protected internal.
  1316. * HttpTransportBindingElement.cs : use HttpListenerFactory for
  1317. BuildListenerFactory().
  1318. 2005-10-27 Atsushi Enomoto <[email protected]>
  1319. * FilterNodeQuotaExceededException.cs,
  1320. NodeQuotaExceededException.cs,
  1321. NavigatorNodeQuotaExceededException.cs : removed internal .ctor()
  1322. since it will just result in messageless exception.
  1323. 2005-10-27 Atsushi Enomoto <[email protected]>
  1324. * Dispatcher.cs :
  1325. Attach() adds the listener to ServiceHostBase.EndpointListeners.
  1326. Same for Detach(). Attach() sets supported channels (maybe the
  1327. actual player is in another place though).
  1328. Use ReadOnlyCollection<Type> for SupportedChannels.
  1329. * BindingElementCollection.cs : InsertItem() and SetItem() caused
  1330. infinite loop. Use Items.
  1331. * EndpointListener.cs : kinda implemented CreateListener(). It's still
  1332. not working due to runtime bug (not sure if I can create repro).
  1333. * Binding.cs : Name and Namespaces have their default values.
  1334. * ServiceDescription.cs : ServiceHostBase.EndpointListeners.Add() is
  1335. now done in Dispatcher.Attach().
  1336. 2005-10-27 Atsushi Enomoto <[email protected]>
  1337. * EndpointAddress.cs : == should check null.
  1338. * BindingRequirementsAttribute.cs : new file.
  1339. * Dummy.cs : removed above.
  1340. * EndpointBehaviorCollection.cs, EndpointAddress.cs,
  1341. EndpointListener.cs, ServiceEndpoint.cs : (.ctor) null arg check.
  1342. 2005-10-27 Atsushi Enomoto <[email protected]>
  1343. * Dispatcher.cs : implemented some members.
  1344. * EndpointListenerCollection.cs : now it exposes Items as "internal".
  1345. * EndpointFilterProvider.cs : InitialActions was missing.
  1346. 2005-10-27 Atsushi Enomoto <[email protected]>
  1347. * MessagePropertyDescriptionCollection.cs,
  1348. MessageHeaderDescriptionCollection.cs,
  1349. MessagePartDescriptionCollection.cs,
  1350. BehaviorCollection.cs : Fixed misunderstood GetKeyForItem().
  1351. * EndpointListener.cs : kinda asynced.
  1352. 2005-10-26 Atsushi Enomoto <[email protected]>
  1353. * BinaryMessageEncodingBindingElement.cs,
  1354. MtomMessageEncodingBindingElement.cs,
  1355. TextMessageEncodingBindingElement.cs,
  1356. MessageEncodingBindingElement.cs : implemented some members. Now
  1357. this base class takes MessageVersion in its .ctor().
  1358. * AddressingVersion.cs : Use Equals(). operator == does not work.
  1359. * ServiceDescription.cs : Open created EndpointListener at
  1360. InitializeServiceHost() (I'm not 100% sure about it).
  1361. * EndpointListener.cs : implemented some members.
  1362. 2005-10-26 Atsushi Enomoto <[email protected]>
  1363. * Binding.cs : implemented .ctor(name, ns).
  1364. * CustomBinding.cs : fixed .ctor() process.
  1365. 2005-10-26 Atsushi Enomoto <[email protected]>
  1366. * ContractDescription.cs : added duplicate contract check.
  1367. 2005-10-26 Atsushi Enomoto <[email protected]>
  1368. * ServiceHost.cs, ServiceHostBase.cs : actually OnInitialize() should
  1369. be used to trigger loader.Description.InitializeServiceHost().
  1370. * ContractDescription.cs : search ServiceContractAttribute through
  1371. interfaces as well.
  1372. * SynchronizedCollection.cs : use (consistent) InsertItem() in Add().
  1373. 2005-10-26 Atsushi Enomoto <[email protected]>
  1374. * ServiceHost.cs : hook Open event.
  1375. * TransportBindingElement.cs,
  1376. HttpTransportBindingElement.cs : fixed default values.
  1377. * BasicHttpBinding.cs : fixed default values. implemented
  1378. CreateBindingElements().
  1379. * BindingElementCollection.cs : AddRange() was not working.
  1380. 2005-10-26 Atsushi Enomoto <[email protected]>
  1381. * Binding.cs : set timeouts inside .ctor().
  1382. 2005-10-26 Atsushi Enomoto <[email protected]>
  1383. * BindingElement.cs, Binding.cs, IChannelManager.cs,
  1384. ChannelFactory_1.cs, ChannelFactory.cs :
  1385. several API fixes detected by improved corcompare.
  1386. 2005-10-25 Atsushi Enomoto <[email protected]>
  1387. * Message.cs : CreateReplyMessage() are not static.
  1388. 2005-10-25 Atsushi Enomoto <[email protected]>
  1389. * BindingElement.cs, IListener.cs, IChannelListener.cs, Binding.cs :
  1390. added missing generic class constraints.
  1391. 2005-10-25 Atsushi Enomoto <[email protected]>
  1392. * IListenerFactory.cs : class constraints were missing for generic args.
  1393. 2005-10-24 Atsushi Enomoto <[email protected]>
  1394. * ContractDescription.cs : (GetContract) by default http://tempuri.org/
  1395. is used for Namespace.
  1396. 2005-10-24 Atsushi Enomoto <[email protected]>
  1397. * ServiceAuthorizationBehavior.cs : PrincipalPermissionMode default
  1398. value is .UseWindowsGroups (funky).
  1399. 2005-10-24 Atsushi Enomoto <[email protected]>
  1400. * OperationRequirement.cs : new file.
  1401. * Dummy.cs : removed above.
  1402. * ServiceHostBase.cs : implemented EndpointListeners.
  1403. * ServiceDescription.cs : implemented InitializeServiceHost(). It is
  1404. still not incorrect.
  1405. 2005-10-24 Atsushi Enomoto <[email protected]>
  1406. * CompositeDuplexBindingElement.cs, WSDualHttpBinding.cs :
  1407. tiny API fixes.
  1408. 2005-10-23 Atsushi Enomoto <[email protected]>
  1409. * MessageVersion.cs : ditto.
  1410. 2005-10-23 Atsushi Enomoto <[email protected]>
  1411. * FaultCode.cs : fixed infinite loop.
  1412. 2005-10-23 Duncan Mak <[email protected]>
  1413. * MessageHeaders.cs (WriteHeader, WriteHeaderContents):
  1414. (WriteStartHeader): Implemented.
  1415. (Action, FaultTo, From, MessageId, RelatesTo, ReplyTo, To): Added
  1416. fields for these properties. I'm guessing that Message sets these
  1417. in the Message.Headers property.
  1418. 2005-10-23 Atsushi Enomoto <[email protected]>
  1419. * IExtensibleObject.cs, IExtension.cs, IExtensionCollection.cs :
  1420. Now that #76363 got fixed, we can fix interface signatures.
  1421. * ServiceMetadataExtension.cs : new file.
  1422. * Dummy.cs : removed above.
  1423. 2005-10-22 Duncan Mak <[email protected]>
  1424. * AddressAccessDeniedException.cs:
  1425. * AddressAlreadyInUseException.cs:
  1426. * FilterInvalidBodyAccessException.cs:
  1427. * InvalidBodyAccessException.cs:
  1428. * MessageException.cs:
  1429. * MessageIOException.cs:
  1430. * NavigatorInvalidBodyAccessException.cs:
  1431. * ProtocolException.cs:
  1432. * QuotaExceededException.cs: Fixed various signature bugs.
  1433. * EndpointNotFoundException.cs:
  1434. * InvalidMessageContractException.cs: Missed these two in the last
  1435. commit.
  1436. * EmptyFaultException.cs:
  1437. * FaultException.cs:
  1438. * UnknownFaultException.cs: Implemented these classes except for
  1439. the 'GetObjectData'. Run TestGetObjectData to see how it comes out
  1440. with XmlFormatter. We need to implement the serialization of
  1441. FaultCode and FaultDetail (as FaultCodeData and FaultCodeReason).
  1442. All Exceptions are now implemented.
  1443. 2005-10-22 Duncan Mak <[email protected]>
  1444. * AddressAccessDeniedException.cs:
  1445. * AddressAlreadyInUseException.cs:
  1446. * ChannelConnectException.cs:
  1447. * ChannelException.cs:
  1448. * ChannelIOException.cs:
  1449. * ChannelListenException.cs:
  1450. * CommunicationException.cs:
  1451. * CommunicationObjectFaultedException.cs:
  1452. * ConnectionRefusedException.cs:
  1453. * FilterInvalidBodyAccessException.cs:
  1454. * FilterNodeQuotaExceededException.cs:
  1455. * InvalidBodyAccessException.cs:
  1456. * MessageException.cs:
  1457. * MessageIOException.cs:
  1458. * MultipleFilterMatchesException.cs:
  1459. * NavigatorInvalidBodyAccessException.cs:
  1460. * NavigatorNodeQuotaExceededException.cs:
  1461. * NodeQuotaExceededException.cs:
  1462. * ProtocolException.cs:
  1463. * QuotaExceededException.cs: Added all missing Exceptions except
  1464. for those in the family of FaultException.
  1465. * FaultCode.cs: New implementation. I wrote some test cases for
  1466. this class, and this fixes some of the things in the existing implementation.
  1467. 2005-10-21 Duncan Mak <[email protected]>
  1468. * FilterTable.cs: Implemented, but for the Match* methods, I need
  1469. to look into how priority works.
  1470. 2005-10-21 Atsushi Enomoto <[email protected]>
  1471. * FaultCode.cs:
  1472. * FaultReason.cs:
  1473. * System.ServiceModel/MessageFault.cs:
  1474. * System.ServiceModel/FaultReasonText.cs: new files for MessageFault implementation.
  1475. * Dummy.cs : removed above.
  1476. * Message.cs : some overload resolution.
  1477. * MessageHeader.cs : tiny returntype fix.
  1478. 2005-10-21 Atsushi Enomoto <[email protected]>
  1479. * InstanceListenerCollection.cs : rough impl.
  1480. * InstanceContext.cs : sealed.
  1481. 2005-10-19 Atsushi Enomoto <[email protected]>
  1482. * Message.cs : filled all missing members.
  1483. * HttpTransportBindingElement.cs:
  1484. * TcpTransportBindingElement.cs:
  1485. * NamedPipetransportBindingElement.cs:
  1486. * PeerTransportBindingElement.cs:
  1487. * MessageEncodingBindingElement.cs : Now that bug #76382 is gone,
  1488. we can define BuildChannelFactory().
  1489. * IExtensionCollection.cs : tiny generic parameter name fix.
  1490. 2005-10-18 Atsushi Enomoto <[email protected]>
  1491. * DefaultCommunicationTimeouts.cs : new internal class.
  1492. * ChannelFactory_1.cs, ServiceHostBase.cs : a bit of implementations.
  1493. * OperationBehaviorAttribute.cs : implemented IOperationBehavior.
  1494. * OperationContext.cs, InstanceContext.cs : a bit of implementations.
  1495. 2005-10-17 Atsushi Enomoto <[email protected]>
  1496. * EndpointListenerReadOnlyCollection.cs : new file.
  1497. * Dummy.cs : removed above.
  1498. * EndpointListenerCollection.cs : correct inheritance.
  1499. * ChannelFactory.cs : tiny argname fix
  1500. * ChannelFactory_1.cs : implemented some .ctor()s.
  1501. * ServiceAuthorizationBehavior.cs : implemented. This shows how
  1502. IServiceBehavior works (quite simple).
  1503. 2005-10-14 Atsushi Enomoto <[email protected]>
  1504. * Dispatcher.cs : connect dispatcher and dispatchbehavior here.
  1505. * EndpointBehaviorCollection.cs : fix base class.
  1506. 2005-10-14 Duncan Mak <[email protected]>
  1507. * MessageHeaders.cs: I started implementing this awhile ago, but
  1508. it's been sitting on my machine doing nothing for a while now. So
  1509. I finished stubbing it and I'm committing it.
  1510. Remaining work:
  1511. Understand WS-Addressing and figure out how to handle
  1512. RelatesTo/ReplyTo, and what it means to that headers are
  1513. understood.
  1514. * UnderstoodHeaders.cs: Implemented.
  1515. 2005-10-14 Atsushi Enomoto <[email protected]>
  1516. * EndpointAddressFilter.cs : new file.
  1517. * Dummy.cs : removed above.
  1518. * EndpointListener.cs, DispatchBehavior.cs, ProxyBehavior.cs :
  1519. modified some impl. code to match DispatchBehavior dependency graph.
  1520. 2005-10-14 Atsushi Enomoto <[email protected]>
  1521. * EndpointFilterProvider.cs, EndpointFilter.cs : new files.
  1522. * Dummy.cs : removed above.
  1523. * EndpointListener.cs : implemented some.
  1524. * InstanceListener.cs, XPathFilter.cs : signature fixes.
  1525. * MessageOperationFormatter.cs : ditto.
  1526. 2005-10-14 Atsushi Enomoto <[email protected]>
  1527. * ContractDescription.cs : message contract support implementation
  1528. in GetContract() implementation.
  1529. 2005-10-14 Atsushi Enomoto <[email protected]>
  1530. * ContractDescription.cs : more GetContract() implementation.
  1531. 2005-10-13 Atsushi Enomoto <[email protected]>
  1532. * FaultDescription.cs, MessageDescription.cs, FaultContractAttribute.cs
  1533. OperationContractAttribute.cs, OperationDescription.cs,
  1534. ContractDescription.cs :
  1535. implemented some part of ContractDescription.GetContract().
  1536. * ServiceHost.cs : improved AddEndpoint() overload solution.
  1537. 2005-10-12 Atsushi Enomoto <[email protected]>
  1538. * ClientCredentials.cs : new (and last) public IChannelBehavior file.
  1539. * Dummy.cs : removed above.
  1540. * UriSchemeKeyedCollection.cs : removed incorrect code (almost all).
  1541. * ServiceHostBase.cs, ServiceHost.cs, OperationDescription.cs,
  1542. ContractDescription.cs : implemented some.
  1543. 2005-10-12 Atsushi Enomoto <[email protected]>
  1544. * OperationBehaviorAttribute.cs : new file.
  1545. * Dummy.cs : removed above.
  1546. * ServiceContractAttribute.cs, ActionFilterTable.cs : attribute fix
  1547. * XmlSerializerOperationBehaviro.cs : tiny fix.
  1548. 2005-10-12 Atsushi Enomoto <[email protected]>
  1549. * CompositeDuplexBindingElement.cs, SynchronizedCollection.cs
  1550. InstanceListenerCollection.cs : added more files.
  1551. * Dummy.cs : removed above.
  1552. * SynchronizedKeyedCollection.cs : roughly implemented.
  1553. * SynchronizedReadOnlyCollection.cs : tiny attribute fix.
  1554. 2005-10-12 Atsushi Enomoto <[email protected]>
  1555. * FaultDescription.cs, ContractBehaviorCollection.cs,
  1556. FaultContractAttribute.cs, MessageOperationFormatter.cs,
  1557. BindingParameterCollection.cs, OperationBehaviorCollection.cs,
  1558. FaultDescriptionCollection.cs, PrimitiveOperationFormatter.cs,
  1559. ServiceBehaviorCollection.cs, DuplexClientBase.cs : new files.
  1560. * Dummy.cs : removed above.
  1561. * CommunicationErrorEventArgs.cs, HostedBindingBehavior.cs,
  1562. ProxyBehavior.cs, MetadataDialect.cs : tiny fixes.
  1563. 2005-10-11 Atsushi Enomoto <[email protected]>
  1564. * MtomMessageEncodingBindingElement.cs :
  1565. one more missing message encoding binding element.
  1566. * MessageBodyArrayAttribute.cs, MessageDescription.cs
  1567. MessagePropertyDescriptionCollection.cs,
  1568. MessageContractMemberAttribute.cs,
  1569. MessageHeaderDescription.cs, MessagePropertyAttribute.cs,
  1570. MessageParameterAttribute.cs, MessageHeaderDescriptionCollection.cs,
  1571. MessagePartDescriptionCollection.cs, MessageBodyDescription.cs,
  1572. MessageHeaderAttribute.cs, MetadataDialect.cs,
  1573. MessagePartDescription.cs, MessageHeaderArrayAttribute.cs
  1574. MessagePropertyDescription.cs, MessageDescriptionCollection.cs :
  1575. new files for message serialization stuff.
  1576. * Dummy.cs : removed all above.
  1577. * ChannelDescription.cs, MessageBodyAttribute.cs,
  1578. MessageContractAttribute.cs : attribute fixes.
  1579. 2005-10-11 Atsushi Enomoto <[email protected]>
  1580. * Dispatcher.cs, DispatchOperation.cs : new files.
  1581. * Dummy.cs : removed above.
  1582. * GetMetadataRequestParameters.cs : serialization attributes fix.
  1583. * HostedBindingBehavior.cs : hacky impl.
  1584. * InstanceContext.cs : added missing OnBlah() methods.
  1585. 2005-10-11 Atsushi Enomoto <[email protected]>
  1586. * AspNetIntegrationRequirementsAttribute.cs, MessageProperties.cs,
  1587. TextMessageEncodingBindingElement.cs, ProxyOperation.cs,
  1588. BinaryMessageEncodingBindingElement.cs,
  1589. MessageEncodingBindingElement.cs : new files.
  1590. * Dummy.cs : removed above.
  1591. * DispatchBehavior.cs : stubbed.
  1592. * GetMetadataRequestParameters.cs : tiny API fix.
  1593. 2005-10-09 Atsushi Enomoto <[email protected]>
  1594. * ConnectionOrientedTransportBindingElement.cs,
  1595. TcpTransportBindingElement.cs, NamedPipetransportBindingElement.cs,
  1596. PeerTransportBindingElement.cs :
  1597. Now all transport but MSMQ crap are added.
  1598. * Dummy.cs : removed above.
  1599. 2005-10-09 Atsushi Enomoto <[email protected]>
  1600. * BehaviorCollection.cs, ChannelDescription.cs,
  1601. SynchronizedKeyedCollection.cs : new files.
  1602. * Dummy.cs : removed above.
  1603. * BindingElementCollection.cs : warning fix.
  1604. * ProxyBehavior.cs : API fixes.
  1605. 2005-10-09 Atsushi Enomoto <[email protected]>
  1606. * TransportBindingElement.cs, HttpTransportBindingElement.cs :
  1607. new channel files.
  1608. * Dummy.cs : removed above.
  1609. * MessageBodyAttribute.cs : default order is -1.
  1610. * GetMetadataRequest.cs : added [MessageBody]
  1611. * MessageVersion.cs : fixed name.
  1612. * ChannelFactory_1.cs, ChannelFactory.cs : some channel factory impl.
  1613. 2005-10-09 Atsushi Enomoto <[email protected]>
  1614. * BindingElement.cs : new file.
  1615. * Dummy.cs : removed above.
  1616. * Binding.cs, WSDualHttpBinding.cs, WSHttpBinding.cs,
  1617. ChannelFactory.cs, CustomBinding.cs, ViaUriBehavior.cs :
  1618. implemented a bit.
  1619. 2005-10-08 Atsushi Enomoto <[email protected]>
  1620. * WSHttpBinding.cs : new file.
  1621. * Dummy.cs : removed above.
  1622. * WSHttpBindingBase.cs :implemented some.
  1623. 2005-10-08 Atsushi Enomoto <[email protected]>
  1624. * IReplyChannel.cs, IRequestContext.cs, IRequestChannel.cs:
  1625. moved from ../System.ServiceModel.Channels.
  1626. * Dummy.cs : reflected above changes.
  1627. * BasicHttpBinding.cs : added some impl. code.
  1628. * ChannelFactory_1.cs: added missing OnInitialize().
  1629. 2005-10-08 Atsushi Enomoto <[email protected]>
  1630. * AllEnumcs.cs : all enums in one file.
  1631. * Dummy.cs : removed all enums.
  1632. * CommunicationState.cs, OperationFormatUse.cs,
  1633. OperationFormatStyle.cs : thus removed.
  1634. 2005-10-08 Atsushi Enomoto <[email protected]>
  1635. * IInputSession.cs, IInstanceContextInitializer.cs,
  1636. IRequestSessionChannel.cs,IReplySessionChannel.cs,
  1637. IStubFormatter.cs,IProxyOperationSelector.cs,
  1638. IRequestReplyMessageIntermediary.cs,IOperationInvoker.cs,
  1639. IPersistentSession.cs,IParameterInspector.cs,
  1640. IOneWayMessageAsyncIntermediary.cs,IInstanceProvider.cs,
  1641. ISessionRecovery.cs,IOutputSession.cs,IProxyFormatter.cs,
  1642. ISessionChannel.cs,IPersistentOutputSession.cs,
  1643. IInputSessionChannel.cs,IMessageProperty.cs,IInputSessionShutdown.cs,
  1644. InstanceContextIdleCallback.cs,IProxyMessageInspector.cs,
  1645. IOneWayMessageIntermediary.cs,ISharedSessionLifetime.cs,
  1646. ITransportBindingElement.cs,ITransactedTransportListenerFactory.cs,
  1647. IStubMessageInspector.cs,ISession.cs,
  1648. IRequestReplyMessageAsyncIntermediary.cs,IPersistentInputSession.cs,
  1649. IOutputSessionChannel.cs : added almost all interfaces.
  1650. * Dummy.cs : removed above ifaces.
  1651. * IChannelListener.cs, IExtensionCollection.cs,
  1652. ISecurityCapabilities.cs : fixed some signatures.
  1653. * BasicHttpBinding.cs, NetPeerTcpBinding.cs, NetTcpBinding.cs,
  1654. IntermediaryBinding.cs, WSDualHttpBinding.cs, CustomBinding.cs :
  1655. dependent fixes on those iface fixes.
  1656. 2005-10-06 Atsushi Enomoto <[email protected]>
  1657. * Dummy.cs : some stubbing in this file for config stuff.
  1658. 2005-10-05 Atsushi Enomoto <[email protected]>
  1659. * IListener.cs : fixed generic constraints.
  1660. 2005-10-05 Atsushi Enomoto <[email protected]>
  1661. * XmlSerializerFormatAttribute.cs, DataContractFormatAttribute.cs,
  1662. XmlFormatterOperationBehavior.cs, XmlSerializerOperationBehavior.cs,
  1663. OperationFormatUse.cs, IOperationBehavior.cs,
  1664. OperationFormatStyle.cs : new files
  1665. * Dummy.cs : removed above types.
  1666. * DispatchBehavior.cs, EndpointListenerCollection.cs,
  1667. InstanceListener.cs, EndpointListener.cs, IMetadataExchange.cs,
  1668. Binding.cs, OperationContractAttribute.cs, PeerSecurityBehavior.cs,
  1669. OperationDescription.cs : fixed several signatures.
  1670. 2005-10-04 Atsushi Enomoto <[email protected]>
  1671. * IListener.cs, IListenerFactory.cs : added listener supprot files.
  1672. * Dummy.cs : removed above.
  1673. 2005-10-03 Atsushi Enomoto <[email protected]>
  1674. * Dummy.cs : OperationContextScope was not removed. Fixed typo.
  1675. 2005-10-03 Atsushi Enomoto <[email protected]>
  1676. * OperationContextScope.cs, OperationContext.cs : new files.
  1677. * Dummy.cs : removed above.
  1678. * IErrorHandler.cs : signature fix.
  1679. 2005-10-03 Atsushi Enomoto <[email protected]>
  1680. * ChannelFactory_1.cs : new file for generic ChannelFactory.
  1681. * CommunicationState.cs : new file for CommunicationObject impl.
  1682. * Dummy.cs : removed above.
  1683. * ServiceMetadataBehavior.cs : stubbed up.
  1684. 2005-10-02 Atsushi Enomoto <[email protected]>
  1685. * GetMetadataRequest.cs, GetMetadataResponse.cs, MetadataBundle.cs,
  1686. MetadataDocument.cs, IMetadataExchange.cs, GetResponse.cs,
  1687. GetMetadataRequestParameters.cs, MessageBodyAttribute.cs,
  1688. GetRequest.cs, MetadataReference.cs, MetadataSection.cs,
  1689. MessageContractAttribute.cs : added ws-mex stuff.
  1690. * Dummy.cs : removed above types.
  1691. 2005-09-30 Atsushi Enomoto <[email protected]>
  1692. * IDefaultCommunicationTimeouts.cs, IDuplexClientChannel.cs,
  1693. IDuplexSessionChannel.cs, IExtension.cs, IInputChannel.cs,
  1694. IChannelBehavior.cs, IOutputChannel.cs, IDuplexSession.cs,
  1695. IClientChannel.cs, IChannelInitializer.cs, IChannelListener.cs,
  1696. IEndpointDispatcher.cs, IDispatchOperationSelector.cs,
  1697. IContractBehaviorAttribute.cs, IErrorHandler.cs,
  1698. IDuplexChannel.cs, IEndpointFilterProvider.cs : new files.
  1699. * Dummy.cs : removed new types above.
  1700. * IExtensibleObject.cs, ServiceHostBase.cs IExtensionCollection.cs:
  1701. fixed incorrect signatures.
  1702. 2005-09-30 Duncan Mak <[email protected]>
  1703. * EnvelopeVersion.cs (Namespace): Renamed from 'Uri' to be
  1704. consistent with AddressingVersion.Namespace property (they are
  1705. both internal).
  1706. 2005-09-29 Duncan Mak <[email protected]>
  1707. * EndpointAddress.cs: Added missing Attributes.
  1708. (ReadFrom): Added missing overload.
  1709. (Identity): Added missing property.
  1710. (GetSchema): Implemented.
  1711. * MatchAllFilter.cs, MatchNoneFilter.cs: Added [DataContract]
  1712. attribute.
  1713. * MessageHeader.cs: Implemented MessageHeader<T>.
  1714. 2005-09-29 Duncan Mak <[email protected]>
  1715. * ActionFilterTable (TryGetValue): Remember to assign to data,
  1716. even in the 'false' case.
  1717. * MessageBuffer.cs (WriteMessage): Write it out using a
  1718. Binary XmlDictionaryWriter.
  1719. 2005-09-29 Atsushi Enomoto <[email protected]>
  1720. * XPathFilter.cs : so, more stubs.
  1721. 2005-09-29 Duncan Mak <[email protected]>
  1722. * ActionFilterTable.cs (CreateFilterTable): Removed extraneous
  1723. method.
  1724. * AddressHeader.cs (Equals, GetAddressHeaderReader):
  1725. (GetHashCode, GetValue): Added missing methods.
  1726. * AddressHeaderCollection.cs (.ctor, FindHeader): Uncommented.
  1727. * EnvelopeVersion.cs (GetHashCode): Added missing method.
  1728. * FilterTable.cs (Remove): Removed extraneous overload.
  1729. * IChannel.cs: Updated to Sept. CTP definition.
  1730. * IChannelFactory.cs: Moved IChannelFactory<T> to here
  1731. * IChannelFactory_1.cs: from here.
  1732. * MessageBuffer.cs (WriteMessage): Added missing method.
  1733. 2005-09-29 Atsushi Enomoto <[email protected]>
  1734. * XPathFilter.cs : new file.
  1735. * Dummy.cs : removed above.
  1736. * MessageHeader.cs : fixed some members as static.
  1737. * ContractDescription.cs : added DataContract attributes.
  1738. * BindingElementCollection.cs : added SetItem().
  1739. * ChannelFactory.cs : fixed .ctor().
  1740. 2005-09-29 Atsushi Enomoto <[email protected]>
  1741. * ICommunicationObject.cs, IChannelFactory_1.cs,
  1742. OperationDescription.cs : some signature fixes.
  1743. 2005-09-29 Atsushi Enomoto <[email protected]>
  1744. * WSDualHttpBinding.cs : and actual class rename after svn mv.
  1745. 2005-09-29 Atsushi Enomoto <[email protected]>
  1746. * WSHttpDualBinding.cs, WSDualHttpBinding.cs : from former to latter.
  1747. 2005-09-29 Atsushi Enomoto <[email protected]>
  1748. * IChannelFactory_1.cs, ChannelFactory.cs :
  1749. new files for ChannelFactory.
  1750. * Dummy.cs : removed extraneous stubs.
  1751. * IChannelFactory.cs : added two more overloads.
  1752. 2005-09-29 Atsushi Enomoto <[email protected]>
  1753. * WSHttpBindingBase.cs, BindingElementCollection.cs, ClientBase.cs,
  1754. IBindingRuntimePreferences.cs, BasicHttpBinding.cs,
  1755. IBindingCapabilities.cs, NetPeerTcpBinding.cs, NetTcpBinding.cs,
  1756. Binding.cs, IntermediaryBinding.cs, ISecurityCapabilities.cs,
  1757. WSHttpDualBinding.cs, CustomBinding.cs : new files.
  1758. * Dummy.cs : removed the above types.
  1759. Added some of the missing generic interfaces.
  1760. 2005-09-29 Duncan Mak <[email protected]>
  1761. * SynchronizedReadOnlyCollection.cs: Added checks for
  1762. ArgumentNullException to the constructors.
  1763. 2005-09-29 Duncan Mak <[email protected]>
  1764. * ActionFilter.cs: Implemented, except for 'Match', which requires
  1765. MessageHeaders to be implemented.
  1766. * ActionFilterTable.cs: Implemented, except for the IFilterTable
  1767. parts.
  1768. * FilterTable.cs: Stubbed out.
  1769. * Filter.cs, MatchAllFilter.cs, MatchNoneFilter.cs:
  1770. * SeekableXPathNavigator.cs: Implemented.
  1771. 2005-09-28 Duncan Mak <[email protected]>
  1772. * SynchronizedReadOnlyCollection.cs
  1773. (IList.Contains, IList.IndexOf): Fixed the conditions for throwing
  1774. Exceptions. GMCS was allowing incorrect code (bug #76267). Removed
  1775. the test for null, as it is unnecessary (see test cases).
  1776. 2005-09-28 Duncan Mak <[email protected]>
  1777. * AddressHeaderCollection.cs:
  1778. * IChannelManager: Added using statement to
  1779. System.Collections.ObjectModel.
  1780. * SynchronizedReadOnlyCollection.cs: Implemented.
  1781. 2005-09-28 Duncan Mak <[email protected]>
  1782. * EnvelopeVersion.cs (Soap11, Soap12): Store them as singletons
  1783. instead of creating a new one everytime.
  1784. (Soap12.UltimateDestinationActorValues): Added missing
  1785. String.Empty.
  1786. * IMessageHeaderInfo.cs: Added interface.
  1787. * MessageHeader.cs: Implemented.
  1788. 2005-09-28 Duncan Mak <[email protected]>
  1789. * AddressHeader.cs (CreateAddressHeader): Implemented.
  1790. (OnWriteAddressHeaderContents): Fixed typo.
  1791. (OnWriteStartAddressHeader): Fixed visibility.
  1792. (WriterAddressHeader, WriteAddressHeaderContents): Implemented.
  1793. (WriteStartAddressHeader): Implemented.
  1794. (DefaultAddressHeader): new internal class used by
  1795. CreateAddressHeader.
  1796. * IFilterTable.cs: Added interface.
  1797. * MessageBuffer.cs: Added stubs.
  1798. 2005-09-28 Atsushi Enomoto <[email protected]>
  1799. * ServiceThrottlingBehavior.cs : moved to *.Design directory.
  1800. 2005-09-28 Duncan Mak <[email protected]>
  1801. * ServiceSecurityBehavior.cs: Fixed typo.
  1802. 2005-09-28 Atsushi Enomoto <[email protected]>
  1803. * ServiceHost.cs : now it holds ServiceLoader, and ServiceDescription
  1804. comes from the loader.
  1805. * ListenUriBehavior.cs : fixed inheritance, signature and members.
  1806. * ServiceThrottlingBehavior.cs : fixed namespace (so this file is
  1807. being moved) and implemented some props.
  1808. * ServiceDescription.cs : MonoTODO.
  1809. 2005-09-28 Atsushi Enomoto <[email protected]>
  1810. * IContractBehavior.cs, OperationDescriptionCollection.cs,
  1811. ContractDescription.cs, OperationDescription.cs,
  1812. IEndpointBehavior.cs : new files.
  1813. * Dummy.cs : removed added types above.
  1814. 2005-09-28 Atsushi Enomoto <[email protected]>
  1815. * ServiceEndpoint.cs, EndpointBehaviorCollection.cs,
  1816. IServiceBehavior.cs, DispatchBehavior.cs, ServiceMetadataBehavior.cs,
  1817. ListenUriBehavior.cs, ProxyBehavior.cs,
  1818. HostedBindingBehavior.cs, ServiceAuthorizationBehavior.cs,
  1819. ServiceSecuiryAuditBehavior.cs, ServiceEndpointCollection.cs,
  1820. ViaUriBehavior.cs, ServiceThrottlingBehavior.cs,
  1821. PeerSecurityBehavior.cs, ServiceDescription.cs : new files.
  1822. * ServiceHost.cs : added Description.
  1823. * ServiceHostBase.cs : base type fix.
  1824. 2005-09-28 Atsushi Enomoto <[email protected]>
  1825. * ServiceAuthorization.cs, ServiceThrottle.cs : new files.
  1826. * Dummy.cs : removed newly-added types.
  1827. * ServiceHost.cs, ServiceHostBase.cs : implemented a bit.
  1828. * UriSchemeKeyedCollecion.cs : copyright lines.
  1829. 2005-09-27 Atsushi Enomoto <[email protected]>
  1830. * CommunicationErrorEventArgs.cs : new file.
  1831. * CommunicationObject.cs, EndpointListener.cs,
  1832. InstanceContext.cs, ServiceHostBase.cs : signature fixes.
  1833. * Dummy.cs : removed one for new class.
  1834. 2005-09-27 Duncan Mak <[email protected]>
  1835. * IFaultContext.cs
  1836. * IFaultProvider.cs: Added these interfaces.
  1837. * MessageInterceptorEventArgs.cs:
  1838. * SessionFaultedEventArgs.cs:
  1839. * UnknownMessageReceivedEventArgs.cs: Added the EventArgs.
  1840. 2005-09-27 Duncan Mak <[email protected]>
  1841. * AddressHeader.cs:
  1842. * EndpointAddress.cs: Stubbed.
  1843. * AddressHeaderCollection.cs: Implemented, waiting for Message to
  1844. be implemented, and for the generic Collections class to be completed.
  1845. * AddressingVersion.cs:
  1846. * EnvelopeVersion.cs:
  1847. * MessageVersion.cs: Implemented.
  1848. * Dummy.cs: Added ReadOnlyCollection<T> and SynchronizedCollection<T>.
  1849. * IChannel.cs:
  1850. * IChannelFactory.cs:
  1851. * IChannelManager.cs:
  1852. * ICommunicationObject.cs: Added these interfaces.