ChangeLog 133 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690
  1. 2010-03-16 Jb Evain <[email protected]>
  2. * HttpRequestChannel.cs, HttpTransportBindingElement.cs: use
  3. MOONLIGHT symbol to disambiguate MonoTouch and Moonlight code.
  4. 2010-03-09 Atsushi Enomoto <[email protected]>
  5. * HttpListenerManager.cs : For ASP.NET, use correct GenericIdentity
  6. type, and use null password unless we find a chance to get password
  7. in ASP.NET HttpContext.
  8. 2010-03-03 Atsushi Enomoto <[email protected]>
  9. * HttpReplyChannel.cs, AspNetReplyChannel.cs, HttpChannelListener.cs,
  10. HttpListenerManager.cs : ongoing authentication support. It returns
  11. 401 as expected, but somehow fails to retrieve user info.
  12. 2010-02-10 Atsushi Enomoto <[email protected]>
  13. * HttpListenerManager.cs : this change (along with HttpListener
  14. implementation) somehow fixes basic auth. connection error...
  15. 2010-02-10 Atsushi Enomoto <[email protected]>
  16. * MessageHeaders.cs : add !NET_2_1.
  17. 2010-02-10 Atsushi Enomoto <[email protected]>
  18. * MessageHeader.cs, MessageHeaders.cs : add nasty workaround for
  19. typed UniqueId output.
  20. 2010-02-10 Atsushi Enomoto <[email protected]>
  21. * MessageHeader.cs : no need to treat EndpointAddress as a special
  22. case here too.
  23. 2010-02-10 Atsushi Enomoto <[email protected]>
  24. * MessageHeaders.cs : remove duplicate constant.
  25. 2010-02-10 Atsushi Enomoto <[email protected]>
  26. * MessageHeader.cs, MessageHeaders.cs: MessageHeader does not treat
  27. EndpointAddress as a special case. Instead, each MessageHeaders
  28. property should convert it to appropriate serializable objects.
  29. (Our DataContractSerializer fails to reject EndpointAddress as
  30. serializable type, so it's rather a preparation step.)
  31. 2010-02-10 Atsushi Enomoto <[email protected]>
  32. * MessageHeader.cs, Message.cs : use dictionary string whenever
  33. applicable. The binary output on #577139 is getting closer (no
  34. idea if it is really about binary output though).
  35. 2010-02-10 Atsushi Enomoto <[email protected]>
  36. * BinaryMessageEncoder.cs : moved soap_dictionary to Constants.
  37. 2010-02-05 Atsushi Enomoto <[email protected]>
  38. * HttpTransportBindingElement.cs : ... and add MONOTOUCH on #ifs.
  39. 2010-02-05 Atsushi Enomoto <[email protected]>
  40. * HttpRequestChannel.cs, HttpTransportBindingElement.cs :
  41. enable authentication schemes on monotouch.
  42. 2010-02-04 Atsushi Enomoto <[email protected]>
  43. * SvcHttpHandler.cs : a wait handle could be used for more than one
  44. requests and hence it sometimes blocked one reply channel. Now
  45. it creates a wait handle for each ASP.NET request so that such
  46. multiple use should not occur. This should fix blocking on
  47. concurrent requests (it indeed fixes as long as I can see).
  48. 2010-02-04 Atsushi Enomoto <[email protected]>
  49. * AspNetReplyChannel.cs : remove garbage output.
  50. 2010-02-04 Atsushi Enomoto <[email protected]>
  51. * SvcHttpHandler.cs : Use lock when it tries to create the service
  52. host.
  53. 2010-02-02 Atsushi Enomoto <[email protected]>
  54. * SvcHttpHandlerFactory.cs : lock when it tries to acquire
  55. HttpHandler.
  56. 2010-02-02 Atsushi Enomoto <[email protected]>
  57. * HttpListenerManager.cs : add another workaround for blocking
  58. concurrent calls.
  59. 2010-02-02 Atsushi Enomoto <[email protected]>
  60. * HttpListenerManager.cs : small refactoring.
  61. 2010-01-22 Atsushi Enomoto <[email protected]>
  62. * TcpDuplexSessionChannel.cs : added a workaround receiver delay
  63. that somehow makes callback client to not cause infinite loop.
  64. 2010-01-22 Atsushi Enomoto <[email protected]>
  65. * TcpDuplexSessionChannel.cs, PeerDuplexChannel.cs,
  66. DuplexChannelBase.cs : Receive() should rather use TryReceive().
  67. It should not be in reverse order.
  68. 2010-01-22 Atsushi Enomoto <[email protected]>
  69. * HttpReplyChannel.cs, HttpListenerManager.cs :
  70. Implement async cancellation in the expected manner (though with
  71. some hack). This mostly removed nunit blockers.
  72. 2010-01-22 Atsushi Enomoto <[email protected]>
  73. * CommunicationObject.cs : fix wrong status changes.
  74. 2010-01-20 Atsushi Enomoto <[email protected]>
  75. * AddressHeader.cs : XmlSchema.InstanceNamespace didn't exist in 2.1 :(
  76. 2010-01-20 Atsushi Enomoto <[email protected]>
  77. * AddressHeader.cs : implement remaining bits.
  78. Eliminate dependency on NetDataContractSerializer.
  79. 2010-01-20 Atsushi Enomoto <[email protected]>
  80. * CommunicationObject.cs : in Fault(), do similar work as previous
  81. change does.
  82. 2010-01-19 Atsushi Enomoto <[email protected]>
  83. * CommunicationObject.cs : when process state changes, lock the
  84. object to make sure the state transition is valid.
  85. Change OnClosed/OnClosing to do the way OnOpened/OnOpening does.
  86. 2010-01-13 Atsushi Enomoto <[email protected]>
  87. * MessageHeaders.cs : implement SetAction().
  88. 2010-01-13 Atsushi Enomoto <[email protected]>
  89. * ChannelFactoryBase.cs : fix build.
  90. 2010-01-13 Atsushi Enomoto <[email protected]>
  91. * ChannelBase.cs : cosmetic API fix for SL3.
  92. 2010-01-13 Atsushi Enomoto <[email protected]>
  93. * ChannelFactoryBase.cs :
  94. implement On{Begin/End}Close() on the generic type.
  95. 2010-01-13 Atsushi Enomoto <[email protected]>
  96. * HttpChannelFactory.cs, TcpChannelFactory.cs,
  97. ChannelFactoryBase.cs, NamedPipeChannelFactory.cs
  98. PeerChannelFactory.cs, HttpRequestChannel.cs:
  99. fix ChannelFactoryBase API; move On(Begin/End)Open() to internal
  100. type and made required changes.
  101. 2010-01-13 Atsushi Enomoto <[email protected]>
  102. * HttpCookieContainerBindingElement.cs : new.
  103. * IHttpCookieContainer.cs : fix type name.
  104. * HttpRequestChannel.cs, HttpChannelFactory.cs : support above.
  105. 2010-01-07 Atsushi Enomoto <[email protected]>
  106. * TcpBinaryFrameManager.cs : treat EOF as interrupted stream too (it
  107. does not happen when communicating with .NET client but happens with
  108. mono). Seealso FIXME comment.
  109. * TcpDuplexSessionChannel.cs : do not try to close session when it
  110. failed to read sized message. The connection is already dead.
  111. Fixed bug #567949.
  112. 2010-01-07 Atsushi Enomoto <[email protected]>
  113. * TcpDuplexSessionChannel.cs :
  114. Write EndRecord only when the connection is available.
  115. Remove hack - do let ChannelDispatcher close the channel.
  116. * TcpBinaryFrameManager.cs :
  117. The socket may be disconnected when trying to read a sized message,
  118. so check some socket exceptions.
  119. In case the client silently shuts down without EndRecord and
  120. reconnects to the server with preamble while expecting a sized
  121. message (which is so lame, but that's what .NET often does), refresh
  122. preamble and continue.
  123. This fixes some cases of bug #567949 but not all.
  124. 2010-01-06 Atsushi Enomoto <[email protected]>
  125. * BinaryMessageEncoder.cs : enable workaround buffering only when
  126. the argument stream does *not* support seek. This fixes some
  127. net.tcp connection problem.
  128. 2009-12-26 Atsushi Enomoto <[email protected]>
  129. * TcpBinaryFrameManager.cs : If preamble byte is not available from
  130. the client stream, detect it to close the reply or input channel.
  131. * TcpRequestChannel.cs : send preamble at each request time.
  132. It differentiates communication behavior on such cases that involve
  133. single open and multiple requests.
  134. * TcpReplyChannel.cs : close the channel only when the channel is
  135. oeprated to close i.e. do not close the socket every time.
  136. Process preambles on each request (the same as request channel).
  137. 2009-12-26 Atsushi Enomoto <[email protected]>
  138. * TcpBinaryFrameManager.cs : unsized envelope record may have more
  139. than one data block, so consume them accordingly. This should fix
  140. large buffer consumption.
  141. 2009-12-21 Atsushi Enomoto <[email protected]>
  142. * MessageFault.cs : support EnvelopeVersion.None as well, as almost
  143. the same as SOAP12.
  144. 2009-12-17 Atsushi Enomoto <[email protected]>
  145. * HttpRequestContext.cs : for DestinationUnreachable message, this
  146. channel returns 400 in .NET.
  147. 2009-12-16 Atsushi Enomoto <[email protected]>
  148. * BinaryMessageEncoder.cs : added workaround for strange stream
  149. consumption error raised by HttpTransport + Binary encoder example.
  150. * BinaryMessageEncodingBindingElement.cs:
  151. only SOAP 1.2 is allowed for this encoder.
  152. 2009-12-14 Atsushi Enomoto <[email protected]>
  153. * XmlReaderBodyWriter.cs : don't try to write empty xml.
  154. 2009-12-10 Atsushi Enomoto <[email protected]>
  155. * HttpRequestChannel.cs : avoid adding duplicate headers. Basically
  156. default WebHeaderCollection items are overwritten.
  157. 2009-12-10 Atsushi Enomoto <[email protected]>
  158. * HttpRequestChannel.cs : when HTTP response was error, do not try
  159. to read message but just raise an error.
  160. 2009-12-10 Atsushi Enomoto <[email protected]>
  161. * MessageHeaders.cs : null can be set as a WS-Addressing header item.
  162. 2009-12-10 Atsushi Enomoto <[email protected]>
  163. * HttpRequestChannel.cs : WebException.Response might be null.
  164. 2009-12-04 Atsushi Enomoto <[email protected]>
  165. * ReplyChannelBase.cs : added listener property.
  166. * SecurityChannelListener.cs : quick async impl, as ServiceHost has
  167. been updated to prefer async by default, a while ago.
  168. 2009-12-04 Atsushi Enomoto <[email protected]>
  169. * HttpTransportBindingElement.cs : finished all GetProperty() values.
  170. 2009-12-04 Atsushi Enomoto <[email protected]>
  171. * HttpRequestChannel.cs : disabled carelessly added
  172. "UseDefaultCredentials = false" line. It blocked basic auth.
  173. 2009-12-04 Atsushi Enomoto <[email protected]>
  174. * HttpRequestChannel.cs, HttpChannelFactory.cs,
  175. HttpChannelListener.cs, HttpListenerManager.cs :
  176. implemented http client authentication and some of corresponding
  177. service code. Only client works so far.
  178. 2009-12-03 Atsushi Enomoto <[email protected]>
  179. * HttpsTransportBindingElement.cs, HttpChannelListener.cs :
  180. added URI scheme check.
  181. 2009-12-03 Atsushi Enomoto <[email protected]>
  182. * TransportSecurityBindingElement.cs : fix 2.1 build.
  183. 2009-12-03 Atsushi Enomoto <[email protected]>
  184. * HttpsTransportBindingElement.cs :
  185. RequireClientCertificate is false by default.
  186. Remove extra #if NET_2_1.
  187. * SecurityBindingElement.cs :
  188. Implement some transport security factory methods.
  189. * TransportSecurityBindingElement.cs :
  190. It is not ISecurityCapabilities anymore.
  191. 2009-11-25 Atsushi Enomoto <[email protected]>
  192. * MessageHeaders.cs
  193. SecurityBindingElement.cs
  194. LocalClientSecuritySettings.cs
  195. TransportSecurityBindingElement.cs
  196. FaultConverter.cs : They are now part of SL3 API.
  197. 2009-11-17 Atsushi Enomoto <[email protected]>
  198. * BinaryMessageEncodingBindingElement.cs : changes for 2.1 build.
  199. 2009-11-05 Geoff Norton <[email protected]>
  200. * HttpsTransportBindingElement.cs: Implement basic https transport
  201. binding support for Moonlight and MonoTouch
  202. 2009-10-22 Atsushi Enomoto <[email protected]>
  203. * HttpListenerManager.cs : remove CWLs.
  204. 2009-10-22 Atsushi Enomoto <[email protected]>
  205. * SvcHttpHandler.cs : move back previous listener selector code in
  206. ProcessRequest(). Unlike HttpListener, ASP.NET does not refine
  207. and differentiate requests to deeper paths (such as /jsdebug), so
  208. we need such refinement here.
  209. 2009-10-22 Atsushi Enomoto <[email protected]>
  210. * HttpListenerManager.cs : dependent fix to ServiceMetadataExtension
  211. changes.
  212. 2009-10-22 Atsushi Enomoto <[email protected]>
  213. * SvcHttpHandler.cs, HttpReplyChannel.cs, AspNetReplyChannel.cs,
  214. HttpChannelListener.cs, HttpListenerManager.cs :
  215. Similar refactoring on ASP.NET side to the previous one.
  216. Added ASP.NET implementation of HttpListenerManager and use some
  217. part of it in SvcHttpHandler (ASP.NET stack does not fully make use
  218. of the manager yet).
  219. Rewrote AspNetReplyChannel to become almost the same as
  220. HttpSimpleReplyChannel, to hopefully unify them later.
  221. Now it dispatches requests to *.svc for wsdl, help and SOAP as long
  222. as ServiceThrottle has MaxConcurrentSessions=1. Also REST calls
  223. are still broken.
  224. 2009-10-20 Atsushi Enomoto <[email protected]>
  225. * HttpReplyChannel.cs, HttpChannelListener.cs, HttpListenerManager.cs:
  226. Refactoring on listener manager to correctly handle wsdl and help
  227. requests for such case that they conflict in addressing. Now it
  228. can correctly distinguish service calls, WSDL requests and help
  229. requests when all of them point to "http://localhost/foo.svc"
  230. (which is very common case that the user does not change Http*Url).
  231. 2009-10-16 Atsushi Enomoto <[email protected]>
  232. * ChannelListenerBase.cs : add Properties property to add arbitrary
  233. properties handy (only inside this assembly).
  234. 2009-10-16 Atsushi Enomoto <[email protected]>
  235. * HttpReplyChannel.cs : fix warning.
  236. 2009-10-15 Atsushi Enomoto <[email protected]>
  237. * HttpReplyChannel.cs, AspNetReplyChannel.cs : set Via property.
  238. 2009-10-15 Atsushi Enomoto <[email protected]>
  239. * HttpReplyChannel.cs : make sure to release wait lock.
  240. * HttpChannelListener.cs : session channels are not supported, so
  241. remove relevant NIEs.
  242. 2009-10-15 Sebastien Pouliot <[email protected]>
  243. * HttpRequestChannel.cs (WaitEnd): Neither Moonlight nor MonoTouch
  244. support contexts so we call the non-overloaded WaitOne method
  245. (which defaults to false).
  246. 2009-10-13 Atsushi Enomoto <[email protected]>
  247. * SvcHttpHandler.cs, AspNetReplyChannel.cs, HttpChannelListener.cs:
  248. significant rewrite to cooperate wcf handler and asp.net handler
  249. to not mix multiple WCF listener within the asp.net handler.
  250. So far it mostly works when 1) there are no ChannelDispatchers
  251. that have an identical listen Uri and 2) MaxConcurrentSessions is
  252. 1 (must be explicitly set).
  253. 2009-10-13 Atsushi Enomoto <[email protected]>
  254. * CommunicationObject.cs : give better state error description.
  255. 2009-10-09 Atsushi Enomoto <[email protected]>
  256. * CommunicationObject.cs : OnOpening() and OnOpened() require calls
  257. to base methods. This resulted in not a few changes everywhere.
  258. 2009-10-07 Atsushi Enomoto <[email protected]>
  259. * IHttpCookieContainer.cs : new 2.1-only interface (no use).
  260. 2009-10-06 Atsushi Enomoto <[email protected]>
  261. * SvcHttpHandler.cs : use file path given by the factory to
  262. construct BaseAddresses. Requests to "test.svc/jsdebug" should
  263. not be handled as request to "jsdebug" file, it's rather an
  264. "argument" to "test.svc".
  265. 2009-10-06 Atsushi Enomoto <[email protected]>
  266. * SvcHttpHandler.cs, HttpChannelListener.cs : some significant
  267. rewrite to handle shutdown situation better. The listeners should
  268. not close channels that it opened. Instead, just stop accepting
  269. further requests. Removed blocking mutex on WaitForRequest().
  270. Now xsp shuts down as expected.
  271. 2009-10-06 Atsushi Enomoto <[email protected]>
  272. * HttpReplyChannel.cs : lock list when releasing its content contexts.
  273. * AspNetReplyChannel.cs : send EndRequest() to handler when it is
  274. closing.
  275. 2009-10-06 Atsushi Enomoto <[email protected]>
  276. * SvcHttpHandlerFactory.cs : remove todo.
  277. * ReplyChannelBase.cs : add comment.
  278. 2009-10-02 Atsushi Enomoto <[email protected]>
  279. * HttpTransportBindingElement.cs, SvcHttpHandlerFactory.cs :
  280. revert the change, to use internal asp.net state again.
  281. * SvcHttpHandler.cs : add VirtualPathExtension.
  282. 2009-10-02 Atsushi Enomoto <[email protected]>
  283. * HttpReplyChannel.cs, AspNetReplyChannel.cs, AspNetRequestContext.cs:
  284. asp.net response was not written correctly.
  285. Fill HttpRequestMessageProperty to get handle WSDL requests
  286. processed in ServiceMetadataExtension without NRE.
  287. Remove wrong HttpListenerContext iteration at Abort and Close in
  288. common base class and move it to non-asp derived channel.
  289. 2009-10-02 Atsushi Enomoto <[email protected]>
  290. * SvcHttpHandler.cs : remove unused code.
  291. 2009-09-30 Jb Evain <[email protected]>
  292. * HttpRequestChannel.cs: When compiling for MonoTouch, avoid
  293. to use any of the remoting features.
  294. 2009-09-30 Atsushi Enomoto <[email protected]>
  295. * SvcHttpHandlerFactory.cs, HttpTransportBindingElement.cs :
  296. use AspNetCompatibilityEnabled.
  297. * SvcHttpHandler.cs : disable ApplyConfiguration(). It should be done
  298. at ServiceHostBase.
  299. * AspNetReplyChannel.cs : remove extra field.
  300. 2009-09-29 Atsushi Enomoto <[email protected]>
  301. * HttpReplyChannel.cs : remove extra field.
  302. 2009-09-29 Atsushi Enomoto <[email protected]>
  303. * AspNetRequestContext.cs : remove CWL.
  304. 2009-09-29 Atsushi Enomoto <[email protected]>
  305. * AspNetReplyChannel.cs, AspNetRequestContext.cs : close HttpContext
  306. only after AspNetRequestContext is closed. Do not close it
  307. immediately after receiving the context. (HttpRuntime destructs it
  308. and further uses then becomes impossible.)
  309. 2009-09-29 Atsushi Enomoto <[email protected]>
  310. * AspNetReplyChannel.cs, HttpReplyChannel.cs : add some comments.
  311. * SvcHttpHandlerFactory.cs, SvcHttpHandler.cs, HttpChannelListener.cs:
  312. Make sure that AspNetChannelListener is bound to correct
  313. SvcHttpHandler, regardless of specific request URI. It is required
  314. for both WSDL requests and RESTful binding requests.
  315. 2009-09-14 Atsushi Enomoto <[email protected]>
  316. * MessageProperties.cs : fix CopyProperties() behavior to not
  317. clear existing items. Make all properties call this[name].
  318. 2009-09-14 Atsushi Enomoto <[email protected]>
  319. * HttpTransportBindingElement.cs : fix 2.1 build.
  320. 2009-09-14 Atsushi Enomoto <[email protected]>
  321. * TransportBindingElement.cs : another GetProperty fix, iterate
  322. other binding elements.
  323. 2009-09-14 Atsushi Enomoto <[email protected]>
  324. * HttpTransportBindingElement.cs, PeerTransportBindingElement.cs :
  325. some GetProperty() implementation.
  326. 2009-09-14 Atsushi Enomoto <[email protected]>
  327. * HttpListenerManager.cs : release HttpListener and avoid extra
  328. close process more than once.
  329. 2009-09-11 Atsushi Enomoto <[email protected]>
  330. * HttpChannelListener.cs : do not iterate channel list to close
  331. channels which in turn removes them from the list while iteration.
  332. 2009-09-06 Atsushi Enomoto <[email protected]>
  333. * HttpRequestChannel.cs : Fix message version member comparison.
  334. Double-quote SOAPAction. Remove extra Exception.
  335. * HttpReplyChannel.cs : ditto for version comparison. Unquote above.
  336. * HttpRequestContext.cs : when addressing is None, remove action
  337. from the message.
  338. 2009-09-04 Atsushi Enomoto <[email protected]>
  339. * SvcHttpHandler.cs : set Uri property based on baseAddresses and
  340. path, to pick those endpoints that are added at custom factories.
  341. 2009-09-03 Atsushi Enomoto <[email protected]>
  342. * SvcHttpHandler.cs : apply configuration, and if there is still no
  343. endpoint, then add default one.
  344. 2009-09-03 Atsushi Enomoto <[email protected]>
  345. * SvcHttpHandler.cs : another URL to make relative.
  346. 2009-09-03 Atsushi Enomoto <[email protected]>
  347. * SvcHttpHandlerFactory.cs : some GetHandler changes.
  348. * SvcHttpHandler.cs : significant changes on receiver structure. Now
  349. ProcessRequest() stores pending requests (this might be extraneous,
  350. but maybe useful when it implements async handler). Also removed
  351. reply_channel field as it may become to handle multiple requests.
  352. * HttpChannelListener.cs : bind to corresponding SvcHttpHandler.
  353. * AspNetReplyChannel.cs : make it receive requests like
  354. HttpReplyChannel (for HttpListener) to make them consistent.
  355. 2009-09-03 Atsushi Enomoto <[email protected]>
  356. * AspNetRequestContext.cs, HttpRequestContext.cs :
  357. fix NRE on HttpListenerContext for AspNetRequestContext (mismatch)
  358. by splitting HttpListener-based context out from common code base.
  359. 2009-09-03 Atsushi Enomoto <[email protected]>
  360. * SvcHttpHandler.cs : use baseAddresses in ServiceHost and make URIs
  361. relative or absolute. new Uri ("/foobar") doesn't work on non-unix
  362. environment.
  363. 2009-09-02 Atsushi Enomoto <[email protected]>
  364. * SvcHttpHandlerFactory.cs : make use of BuildManager aid. Now it
  365. loads types from system assemblies appropriately.
  366. 2009-09-02 Atsushi Enomoto <[email protected]>
  367. * XmlReaderBodyWriter.cs : implement OnCreateBufferedCopy()
  368. for XmlReader input.
  369. 2009-09-02 Atsushi Enomoto <[email protected]>
  370. * HttpRequestMessageProperty.cs : fix default values.
  371. 2009-08-31 Atsushi Enomoto <[email protected]>
  372. * HttpChannelFactory.cs, HttpRequestChannel.cs,
  373. ChannelFactoryBase.cs : fix to previous one; allow null Via uri.
  374. Check ManualAddressing value and reject address-missing ones.
  375. 2009-08-31 Atsushi Enomoto <[email protected]>
  376. * HttpChannelFactory.cs : reject URI mismatch cases when required.
  377. 2009-08-26 Atsushi Enomoto <[email protected]>
  378. * PeerDuplexChannel.cs : When received Connect() from neighbor,
  379. add the peer to its internal list.
  380. Finally ChatApplication got working.
  381. 2009-08-26 Atsushi Enomoto <[email protected]>
  382. * PeerDuplexChannel.cs : since the channel factory is per instance,
  383. do not reuse factory that is tied to different callback instance.
  384. It resolved the issue that mono callback client didn't receive
  385. messages from the client itself.
  386. 2009-08-26 Atsushi Enomoto <[email protected]>
  387. * PeerDuplexChannel.cs : in the Welcome response, return the NodeId
  388. of the receiver, not the requestor. It resolved the issue that
  389. .NET client didn't send further messages to mono server.
  390. 2009-08-26 Atsushi Enomoto <[email protected]>
  391. * PeerDuplexChannel.cs : remove some comment on [MC-PRCH] behavior.
  392. * TcpDuplexSessionChannel.cs, TcpBinaryFrameManager.cs,
  393. TcpReplyChannel.cs, TcpRequestChannel.cs,
  394. NamedPipeReplyChannel.cs, NamedPipeRequestChannel.cs:
  395. rename EndRecord handling method to appropriate one.
  396. Write EndRecord from recipient too.
  397. 2009-08-24 Atsushi Enomoto <[email protected]>
  398. * PeerDuplexChannel.cs : add PeerFlooder header (see comment).
  399. Process PeerTo header to upgrade Message To header. Now mono
  400. service accepts mono client (somehow not true for .NET client).
  401. 2009-08-24 Atsushi Enomoto <[email protected]>
  402. * TcpDuplexSessionChannel.cs, TcpRequestChannel.cs,
  403. NamedPipeRequestChannel.cs : no need to add ReplyTo headers.
  404. 2009-08-24 Atsushi Enomoto <[email protected]>
  405. * PeerDuplexChannel.cs : fix PeerTo/PeerVia header namespace.
  406. 2009-08-24 Atsushi Enomoto <[email protected]>
  407. * TcpDuplexSessionChannel.cs : check channel state before processing
  408. Send and Receive.
  409. 2009-08-20 Atsushi Enomoto <[email protected]>
  410. * NamedPipeReplyChannel.cs, NamedPipeRequestChannel.cs,
  411. NamedPipeChannelFactory.cs, NamedPipeChannelListener.cs :
  412. ongoing works, not working at all yet.
  413. 2009-08-20 Atsushi Enomoto <[email protected]>
  414. * TcpChannelListener.cs, TcpReplyChannel.cs :
  415. cosmetic cleanup and corrections.
  416. 2009-08-20 Atsushi Enomoto <[email protected]>
  417. * TcpChannelFactory.cs : use expected Via uri.
  418. Remove extra NIE stuff that are implemented in base.
  419. 2009-08-20 Atsushi Enomoto <[email protected]>
  420. * TcpDuplexSessionChannel.cs : remove extra code.
  421. 2009-08-20 Atsushi Enomoto <[email protected]>
  422. * PeerDuplexChannel.cs : ongoing implementation towards get callback
  423. replies on peer connector clients (not working as duplex client
  424. callback is not working yet).
  425. 2009-08-20 Atsushi Enomoto <[email protected]>
  426. * TcpDuplexSessionChannel.cs : in callback client channels,
  427. OperationContext.IncomingMessageHeaders is null.
  428. 2009-08-20 Atsushi Enomoto <[email protected]>
  429. * MessageHeaders.cs : duplicate check was sloppy.
  430. 2009-08-18 Atsushi Enomoto <[email protected]>
  431. * Message.cs, MessageImpl.cs, BodyWriter.cs :
  432. Implement BodyWriter.OnCreateBufferedCopy() and use it.
  433. 2009-08-18 Atsushi Enomoto <[email protected]>
  434. * ReplyChannelBase.cs : initialize field.
  435. 2009-08-17 Atsushi Enomoto <[email protected]>
  436. * ReplyChannelBase.cs, DuplexChannelBase.cs, RequestChannelBase.cs:
  437. implement GetProperty<T>() and return its channel manager.
  438. 2009-08-17 Atsushi Enomoto <[email protected]>
  439. * PeerDuplexChannel.cs : ongoing implementation. Fix wrong peer
  440. destination address in Connect() request. To repeat sending
  441. request, use buffered copy. Set some peer-channel specific
  442. header items. (todo: and consume them.)
  443. 2009-08-17 Atsushi Enomoto <[email protected]>
  444. * Message.cs : state is set only after WriteBodyContents().
  445. 2009-08-17 Atsushi Enomoto <[email protected]>
  446. * MessageHeaders.cs : eliminate wrong use of
  447. ReadElementContentAsString() (it is not always simple string).
  448. 2009-08-17 Atsushi Enomoto <[email protected]>
  449. * MessageHeaders.cs : when the value is null, do not try to
  450. deserialize EndpointAddress.
  451. 2009-08-17 Atsushi Enomoto <[email protected]>
  452. * MessageHeader.cs : add Value property. (Forgot dependent change.)
  453. 2009-08-17 Atsushi Enomoto <[email protected]>
  454. * MessageHeaders.cs : GetHeader<T>() could mostly skip extra
  455. serialization and deserialization of values.
  456. 2009-08-14 Atsushi Enomoto <[email protected]>
  457. * PeerDuplexChannel.cs : handle Welcome and Refuse at client side.
  458. Now simply use connector contract.
  459. 2009-08-14 Atsushi Enomoto <[email protected]>
  460. * PeerDuplexChannel.cs : handle Disconnect(). Fix URLs a bit.
  461. 2009-08-14 Atsushi Enomoto <[email protected]>
  462. * TcpChannelListener.cs : do not try to compare dead connection's
  463. IPEndPoint (it raises an error).
  464. 2009-08-14 Atsushi Enomoto <[email protected]>
  465. * MessageHeaders.cs : allow null header value on each specific setter.
  466. 2009-08-14 Atsushi Enomoto <[email protected]>
  467. * DuplexChannelBase.cs, TcpDuplexSessionChannel.cs :
  468. get local and remote address of connected counterpart to get
  469. callback channel connected.
  470. * PeerDuplexChannel.cs : remove FIXME wrt above.
  471. 2009-08-07 Atsushi Enomoto <[email protected]>
  472. * PeerDuplexChannel.cs : add fixme comment and remove extra FIXME.
  473. 2009-08-07 Atsushi Enomoto <[email protected]>
  474. * MessageHeader.cs : fill IsReferenceParameter.
  475. 2009-08-06 Atsushi Enomoto <[email protected]>
  476. * ReplyChannelBase.cs, TcpReplyChannel.cs, HttpReplyChannel.cs:
  477. implement remaining async methods and LocalAddress.
  478. 2009-08-05 Atsushi Enomoto <[email protected]>
  479. * PeerDuplexChannel.cs : ongoing listener refactoring. Now it uses
  480. ServiceHost to process neighbor connection (not sure if this is
  481. right way to go though ...).
  482. 2009-07-31 Atsushi Enomoto <[email protected]>
  483. * PeerDuplexChannel.cs : ongoing [MC-PRCH] implementation. Rewrote
  484. connection part to use new internal IPeerConnectorContract for
  485. neighbor connection.
  486. 2009-07-31 Atsushi Enomoto <[email protected]>
  487. * ChannelListenerBase_1.cs, TcpChannelListener.cs,
  488. PeerChannelListener.cs, HttpChannelListener.cs :
  489. support ListenUri accordingly too so that it could be used when
  490. it is different from LocalAddress.Uri.
  491. 2009-07-31 Atsushi Enomoto <[email protected]>
  492. * TcpChannelFactory.cs, TcpDuplexSessionChannel.cs,
  493. TcpRequestChannel.cs : use Via uri to validate and connect.
  494. 2009-07-31 Atsushi Enomoto <[email protected]>
  495. * RequestChannelBase.cs, DuplexChannelBase.cs :
  496. Return endpoint address Uri when no explicit Via uri is specified.
  497. * ChannelFactoryBase.cs : Remove extra async close methods.
  498. Add async open methods. Reject null EndpointAddress.
  499. * PeerChannelFactory.cs : remove async open methods (now in base).
  500. 2009-07-31 Atsushi Enomoto <[email protected]>
  501. * PeerDuplexChannel.cs : set correct message endpoint (To header).
  502. 2009-07-31 Atsushi Enomoto <[email protected]>
  503. * TcpDuplexSessionChannel.cs, PeerDuplexChannel.cs,
  504. DuplexChannelBase.cs : set LocalAddress property at base.
  505. 2009-07-30 Atsushi Enomoto <[email protected]>
  506. * PeerDuplexChannel.cs : ongoing refactoring to work both as
  507. listener and client. Now it creates a listening peer node, and
  508. creates a set of TCP client channels for each peer in the mesh.
  509. (EndpointAddress must be fixed to not filter out correct inputs).
  510. 2009-07-30 Atsushi Enomoto <[email protected]>
  511. * PeerChannelListener.cs : do not accept more than one channel
  512. which results in lots of listening peer node. Only one is enough.
  513. 2009-07-30 Atsushi Enomoto <[email protected]>
  514. * DuplexChannelBase.cs : fix wrong loop implementation.
  515. 2009-07-28 Atsushi Enomoto <[email protected]>
  516. * TcpChannelListener.cs : to avoid creating two or more channels
  517. for one remote endpoint, check existing remote endpoints and
  518. ignore such connections (it must be handled in different thread
  519. fired by ChannelDispatcher loop).
  520. 2009-07-28 Atsushi Enomoto <[email protected]>
  521. * TcpReplyChannel.cs : make sure to not try to receive request when
  522. it is already closed.
  523. 2009-07-28 Atsushi Enomoto <[email protected]>
  524. * TcpChannelListener.cs, TcpDuplexSessionChannel.cs :
  525. some mannerless clients [*1] do not send EndRecord accordingly, but
  526. such channels at listener side should not be kept open. So, close
  527. disconnected channels when the listener needs to accept another
  528. one.
  529. [*1] see olive/samples/wcf/clientbase/samplecli4.cs.
  530. 2009-07-28 Atsushi Enomoto <[email protected]>
  531. * TcpDuplexSessionChannel.cs :
  532. Remove extra NIE overrides.
  533. Implement OnAbort() apart from OnClose().
  534. For duplex session channel, unlike reply channel, it must acquire
  535. TCP connection before OnOpen(), otherwise ChannelDispatcher
  536. releases the connection acceptance WaitHandle and the detected
  537. live connection may be stolen by another channel acceptor.
  538. 2009-07-28 Atsushi Enomoto <[email protected]>
  539. * HttpRequestChannel.cs : implement OnAbort().
  540. 2009-07-24 Atsushi Enomoto <[email protected]>
  541. * PeerChannelListener.cs : set source field. Remove unnecessary NIE.
  542. * DuplexChannelBase.cs : comment out some extra fields (so far).
  543. * PeerDuplexChannel.cs : pass valid EndpointAddress to PeerNodeImpl.
  544. 2009-07-24 Atsushi Enomoto <[email protected]>
  545. * PeerCustomResolverBindingElement.cs : add some null checks.
  546. 2009-07-23 Atsushi Enomoto <[email protected]>
  547. * TcpChannelListener.cs, TcpReplyChannel.cs, TcpRequestChannel.cs:
  548. Acquire TcpClient for each request/reply. Now it is fully
  549. interoperable with .NET.
  550. 2009-07-23 Atsushi Enomoto <[email protected]>
  551. * TcpReplyChannel.cs, TcpRequestChannel.cs: it somehow adds/expects
  552. ReplyTo and MessageId (though it is session-less), and it expects
  553. EndRecord at weird stage, inconsistent with [MC-NMF]...
  554. Now .NET service accepts one mono client request.
  555. 2009-07-23 Atsushi Enomoto <[email protected]>
  556. * TcpReplyChannel.cs, TcpRequestChannel.cs, TcpBinaryFrameManager.cs:
  557. Send and receive unsized message terminator at once.
  558. Send EndRecord mutually. Got one .net client request working.
  559. 2009-07-23 Atsushi Enomoto <[email protected]>
  560. * BinaryMessageEncoder.cs : revert the previous dictionary change.
  561. They are indeed used for non-in-band-dictionary messages.
  562. 2009-07-23 Atsushi Enomoto <[email protected]>
  563. * TcpDuplexSessionChannel.cs, TcpBinaryFrameManager.cs:
  564. split out binary frame manager class into separate file.
  565. 2009-07-21 Atsushi Enomoto <[email protected]>
  566. * TcpReplyChannel.cs : new reply channel implementation.
  567. * TcpChannelListener.cs : use above for streamed reply channel.
  568. * TcpDuplexSessionChannel.cs : more streaming mode support.
  569. * TcpRequestChannel.cs : a couple of updates to get it working
  570. with the reply channel above. Still some issues on .NET interop.
  571. 2009-07-21 Atsushi Enomoto <[email protected]>
  572. * RequestContext.cs : added internal derived class that implements
  573. some members.
  574. 2009-07-21 Atsushi Enomoto <[email protected]>
  575. * BinaryMessageEncoder.cs : for non-session reader and writer, do not
  576. use dictionary.
  577. 2009-07-17 Atsushi Enomoto <[email protected]>
  578. * PeerDuplexChannel.cs: add the registered node itself to peer list.
  579. (The messaging must be done as TCP request/reply pattern, so it's
  580. not working yet.)
  581. 2009-07-17 Atsushi Enomoto <[email protected]>
  582. * TcpRequestChannel.cs : new channel file (TCP for request/reply
  583. messaging pattern). The messaging part is not working yet.
  584. * TcpChannelFactory.cs : support IRequestChannel.
  585. * TcpDuplexSessionChannel.cs : add unsized message support.
  586. 2009-07-17 Atsushi Enomoto <[email protected]>
  587. * HttpRequestChannel.cs, RequestChannelBase.cs :
  588. A couple of async members are now implemented in the base class.
  589. Ditto for EndpointAddress and Via.
  590. 2009-07-10 Atsushi Enomoto <[email protected]>
  591. * PeerDuplexChannel.cs : now it implements some of node management
  592. functionality and Send operation. The receiver part is not yet.
  593. 2009-07-10 Atsushi Enomoto <[email protected]>
  594. * TcpChannelListener.cs, TcpDuplexSessionChannel.cs : do not pass
  595. timeout to channel constructor. it does not make sense.
  596. 2009-07-10 Atsushi Enomoto <[email protected]>
  597. * PeerChannelFactory.cs, PeerChannelListener.cs : add MessageEncoder
  598. as common interface member, and use binary encoder (not text).
  599. 2009-07-09 Atsushi Enomoto <[email protected]>
  600. * PeerDuplexChannel.cs : PeerNode constructor argument changes.
  601. 2009-07-08 Atsushi Enomoto <[email protected]>
  602. * PeerDuplexChannel.cs, PeerChannelListener.cs, PeerOutputChannel.cs,
  603. PeerInputChannel.cs, PeerChannelFactory.cs : those channels are
  604. going to be unified to PeerDuplexChannel. And it is likely that
  605. input and output functionalities are to be unified too.
  606. 2009-07-08 Atsushi Enomoto <[email protected]>
  607. * TcpChannelFactory.cs : (TcpChannelInfo) ease type restriction. I
  608. may have to reuse it for peer transport.
  609. * PeerChannelListener.cs : add binding member.
  610. * PeerDuplexChannel.cs : remove NIE overrides. Fill fields a bit.
  611. 2009-07-08 Atsushi Enomoto <[email protected]>
  612. * ChannelFactoryBase.cs, HttpChannelFactory.cs,
  613. PeerChannelFactory.cs : close opened channels at OnClose() as
  614. documented. Implement async methods.
  615. * PeerChannelListener.cs : removed some NIE overrides.
  616. 2009-07-02 Atsushi Enomoto <[email protected]>
  617. * DuplexChannelBase.cs : some more async methods.
  618. 2009-06-29 Atsushi Enomoto <[email protected]>
  619. * TcpDuplexSessionChannel.cs : on Abort(), do just Close() within
  620. (almost) no time.
  621. * TcpChannelListener.cs : accept multiple channels at a time.
  622. 2009-06-29 Atsushi Enomoto <[email protected]>
  623. * TcpDuplexSessionChannel.cs : do not output all (stored) writer
  624. session strings but output only those new ones in current message.
  625. This fixes inconsistent body output in repetitive use of sender.
  626. 2009-06-26 Atsushi Enomoto <[email protected]>
  627. * TcpDuplexSessionChannel.cs : handle EndRecord for repetitive
  628. operation that does not involve session.
  629. Preserve writer session as well as reader session.
  630. * MessageHeaders.cs : take name and namespace into consideration
  631. when creating a serializer.
  632. 2009-06-25 Atsushi Enomoto <[email protected]>
  633. * TcpChannelListener.cs, TcpDuplexSessionChannel.cs :
  634. Made required changes for repeated use of message exchanges.
  635. Hold binary reader session. The channels use it incrementally.
  636. Preambles are handled at Open, and EndRecords are handled at
  637. Close, Add session shutdown hook here (not working yet though).
  638. 2009-06-18 Atsushi Enomoto <[email protected]>
  639. * ChannelListenerBase_1.cs : added cancellation hook here too.
  640. HttpChannelListener.cs : use above.
  641. Do not allow parallel channel creation (this listener does not
  642. allow more than one AcceptChannel().
  643. 2009-06-18 Atsushi Enomoto <[email protected]>
  644. * ReplyChannelBase.cs, HttpReplyChannel.cs :
  645. Add cancellation hook for async TryReceiveRequest.
  646. 2009-06-18 Atsushi Enomoto <[email protected]>
  647. * HttpChannelListener.cs, HttpListenerManager.cs :
  648. slightly improved BuildChannelListener().
  649. Implement OnAbort() and differentiate it from OnClose().
  650. 2009-06-18 Atsushi Enomoto <[email protected]>
  651. * TcpDuplexSessionChannel.cs : remove NIE stubs.
  652. 2009-06-18 Atsushi Enomoto <[email protected]>
  653. * DuplexChannelBase.cs : simple async delegate calls here too.
  654. 2009-06-16 Atsushi Enomoto <[email protected]>
  655. * ReplyChannelBase.cs : cosmetic dependency reduction on listener.
  656. 2009-06-16 Atsushi Enomoto <[email protected]>
  657. * HttpReplyChannel.cs : cosometic simplification.
  658. 2009-06-16 Atsushi Enomoto <[email protected]>
  659. * HttpRequestChannel.cs : Fixed timeout handling. It was causing
  660. infinite block in 2.0 profile.
  661. 2009-06-12 Atsushi Enomoto <[email protected]>
  662. * TcpChannelListener.cs, TcpDuplexSessionChannel.cs :
  663. more careful close to avoid NRE.
  664. 2009-06-12 Atsushi Enomoto <[email protected]>
  665. * HttpChannelListener.cs : do not Close() more than once (though
  666. it is allowed to call it twice, we don't reject it; just ignore).
  667. 2009-06-12 Atsushi Enomoto <[email protected]>
  668. * CustomBinding.cs : copy timeouts from argument binding in copy ctr.
  669. 2009-06-11 Atsushi Enomoto <[email protected]>
  670. * HttpReplyChannel.cs : reject multiple WaitForRequest calls.
  671. Temporarily disable HTTP Keep-Alive since it somehow results in
  672. wrong reuse of connection (shown as NRE in HttpConnection).
  673. Make sure to close RequestContext which was created from it.
  674. * HttpRequestContext.cs : simplify.
  675. 2009-06-11 Atsushi Enomoto <[email protected]>
  676. * HttpChannelListener.cs, TcpChannelListener.cs,
  677. ChannelListenerBase_1.cs : put common internal listener base
  678. and let it handle those async stuff.
  679. 2009-06-10 Atsushi Enomoto <[email protected]>
  680. * ReplyChannelBase.cs : fix wrong null delegate check point.
  681. 2009-06-10 Atsushi Enomoto <[email protected]>
  682. * HttpReplyChannel.cs, ReplyChannelBase.cs : async operations are
  683. now implemented as virtual in base class. Remove NIEs in http.
  684. 2009-06-10 Atsushi Enomoto <[email protected]>
  685. * HttpChannelListener.cs : hack async implementation.
  686. 2009-06-08 Atsushi Enomoto <[email protected]>
  687. * HttpListenerManager.cs : oops, extra line removal.
  688. 2009-06-08 Atsushi Enomoto <[email protected]>
  689. * HttpChannelManager.cs, HttpListenerManager.cs : rename file too.
  690. 2009-06-08 Atsushi Enomoto <[email protected]>
  691. * HttpChannelManager.cs, HttpChannelListener.cs: renaming, as
  692. "ChannelManager" is confusing (there is ChannelManagerBase).
  693. 2009-06-08 Atsushi Enomoto <[email protected]>
  694. * HttpChannelManager.cs, HttpTransportBindingElement.cs,
  695. HttpReplyChannel.cs, AspNetReplyChannel.cs, HttpChannelListener.cs:
  696. they should be split into separate listener->reply channel lines
  697. (remove "if (HostingEnvironment.IsAspNet)".)
  698. 2009-06-08 Atsushi Enomoto <[email protected]>
  699. * CommunicationObject.cs : OnClosed() requires call to base method.
  700. Close() could rather abort the channel, and Abort() does not
  701. always invke OnAbort().
  702. * ChannelBase.cs : add call to base as above.
  703. 2009-06-05 Sebastien Pouliot <[email protected]>
  704. * ClientAccessPolicy.cs: Removed
  705. * CrossDomainAccessManager.cs: Removed
  706. * CrossDomainPolicy.cs: Removed
  707. * HttpRequestChannel.cs: Remove call to CrossDomainAccessManager
  708. since this is now done inside the BeginGetResponse call (outside
  709. this assembly) for Moonlight (NET_2_1)
  710. 2009-06-04 Alan McGovern <[email protected]>
  711. * HttpRequestChannel.cs : Rewrite ProcessRequest to use the async APIs
  712. instead of the sync apis. Prevents a possible deadlock condition in
  713. moonlight.
  714. 2009-06-03 Atsushi Enomoto <[email protected]>
  715. * HttpRequestChannel.cs : that SL2/ML2 does not seem to allow null
  716. callbacks, so add hacky ones.
  717. 2009-06-01 Atsushi Enomoto <[email protected]>
  718. * TcpDuplexSessionChannel.cs : WaitForMessage() should not return
  719. true when socket input is not available.
  720. 2009-05-29 Atsushi Enomoto <[email protected]>
  721. * TcpDuplexSessionChannel.cs : Moved tcp listener accept to OnOpen().
  722. I cannot precisely identify when EndRecord should be consumed,
  723. so allow it at either at the end of ReadSizedMessage() or on
  724. consuming preamble (it's likely handling EndRecord of previous
  725. message though).
  726. Now duplex IPeerResolverContract communication works between
  727. either of .NET/Mono client and .NET/Mono server.
  728. 2009-05-29 Atsushi Enomoto <[email protected]>
  729. * TcpDuplexSessionChannel.cs : looks like I have added some bogus
  730. code. Handle preamble ack on ReadSizedMessage() only at server.
  731. Consume EndRecord from server, at client side. Though it is likely
  732. changed as it's blocking when mono is at server side.
  733. 2009-05-29 Atsushi Enomoto <[email protected]>
  734. * TcpDuplexSessionChannel.cs : .NET seems to be based on somewhat
  735. different protocol than existing code with related to preamble ack.
  736. So changed it to work fine with .NET client (finally).
  737. 2009-05-28 Atsushi Enomoto <[email protected]>
  738. * MessageBufferImpl.cs : do not output Action twice.
  739. 2009-05-28 Atsushi Enomoto <[email protected]>
  740. * MessageBufferImpl.cs : it did not copy headers.
  741. * Message.cs : remove 2_1 conditional implementation for buffered
  742. copy and hence remove bogus code.
  743. 2009-05-28 Atsushi Enomoto <[email protected]>
  744. * MessageProperties.cs : copy argument is wrong.
  745. 2009-05-27 Atsushi Enomoto <[email protected]>
  746. * PeerCustomResolverBindingElement.cs : some argument check.
  747. 2009-05-27 Atsushi Enomoto <[email protected]>
  748. * BinaryMessageEncoder.cs : the serializer somehow leaves binary
  749. xml open, so close the writer as well as open elements.
  750. * TcpDuplexSessionChannel.cs : clear write buffer on each operation.
  751. Do not output EndRecord and SizedMessage at a time.
  752. 2009-05-26 Atsushi Enomoto <[email protected]>
  753. * TcpDuplexSessionChannel.cs : there was a miscalculation on the
  754. length of the SizedMessage in the output.
  755. 2009-05-26 Atsushi Enomoto <[email protected]>
  756. * CommunicationObject.cs : use sane default timeout.
  757. * PeerCustomResolverBindingElement.cs : check timeout arg sanity.
  758. * TcpDuplexSessionChannel.cs : ditto.
  759. 2009-05-26 Atsushi Enomoto <[email protected]>
  760. * TcpDuplexSessionChannel.cs : It seems that buffered stream channel
  761. only accepts buffered messages, so do as such for write buffers.
  762. Add RelatesTo header.
  763. 2009-05-26 Atsushi Enomoto <[email protected]>
  764. * DuplexSessionChannelBase.cs, DuplexChannelBase.cs:
  765. rename from former to latter.
  766. 2009-05-25 Atsushi Enomoto <[email protected]>
  767. * TcpDuplexSessionChannel.cs : reader does not always return full
  768. buffer (depending on the stream).
  769. 2009-05-25 Atsushi Enomoto <[email protected]>
  770. * PeerDuplexChannel.cs, PeerOutputChannel.cs : use new PeerNode.ctor.
  771. 2009-05-25 Atsushi Enomoto <[email protected]>
  772. * PeerCustomResolverBindingElement.cs : (Resolve) returned addresses
  773. could be null.
  774. 2009-05-22 Atsushi Enomoto <[email protected]>
  775. * ChannelManagerBase.cs : there was annoying non-2.1 stuff.
  776. 2009-05-22 Atsushi Enomoto <[email protected]>
  777. * TcpChannelListener.cs, TcpChannelFactory.cs : get reader quotas.
  778. 2009-05-22 Atsushi Enomoto <[email protected]>
  779. * ChannelManagerBase.cs : fix wrong session channel detection.
  780. 2009-05-22 Atsushi Enomoto <[email protected]>
  781. * BinaryMessageEncoderFactory.cs, BinaryMessageEncoder.cs
  782. This encoder factory implements CreateSessionEncoder() and binary
  783. encoder does support session transmit, in different media type.
  784. * ChannelManagerBase.cs : added utility method to create appropriate
  785. encoder.
  786. * HttpChannelFactory.cs, HttpChannelListener.cs,
  787. MsmqChannelFactory.cs, MsmqChannelListener.cs,
  788. PeerChannelFactory.cs, PeerChannelListener.cs,
  789. TcpChannelFactory.cs, TcpChannelListener.cs : use above.
  790. 2009-05-22 Atsushi Enomoto <[email protected]>
  791. * TcpDuplexSessionChannel.cs : add ReplyTo header.
  792. 2009-05-21 Atsushi Enomoto <[email protected]>
  793. * DuplexSessionBase.cs : new file, for session implementation.
  794. * TcpDuplexSessionChannel.cs, PeerDuplexChannel.cs,
  795. DuplexSessionChannelBase.cs : changed sync/async implementation
  796. pattern. Now async methods call sync methods using delegates.
  797. 2009-05-21 Atsushi Enomoto <[email protected]>
  798. * InputChannelBase.cs, TransportBindingElement.cs, RequestContext.cs:
  799. a few minor API fixes.
  800. 2009-05-21 Atsushi Enomoto <[email protected]>
  801. * MessageEncoderFactory.cs : implement CreateSessionEncoder().
  802. 2009-05-19 Atsushi Enomoto <[email protected]>
  803. * TcpDuplexSessionChannel.cs : add To header.
  804. 2009-05-19 Atsushi Enomoto <[email protected]>
  805. * MessageFault.cs : fix several SOAP12 fault deserialization in xml
  806. parsing.
  807. 2009-05-18 Atsushi Enomoto <[email protected]>
  808. * FaultConverter.cs : avoid NRE for null IncomingMessageHeaders.
  809. 2009-05-15 Atsushi Enomoto <[email protected]>
  810. * MessageFault.cs : Reason is mandatory. raise XmlException, and
  811. CommunicationException in each CreateFault().
  812. 2009-05-15 Atsushi Enomoto <[email protected]>
  813. * TcpDuplexSessionChannel.cs : on listener side, get TcpClient at
  814. Open(). Some (but not all yet) continuous communication works now.
  815. Use ProtocolException. Remove dummy binary session string.
  816. 2009-05-14 Atsushi Enomoto <[email protected]>
  817. * TcpDuplexSessionChannel.cs : more [MC-NMF] implementation. Moved
  818. sending/receiving SizedMessageRecord parts to manager class.
  819. Handle writer session, though it is likely broken at dictionary
  820. writer part (no string is written so far).
  821. * BinaryMessageEncoder.cs : add writer session and rename reader
  822. session.
  823. 2009-05-14 Atsushi Enomoto <[email protected]>
  824. * TcpDuplexSessionChannel.cs : more [MC-NMF] implementation. Via uri
  825. is mandatory in initiator preamble packet. Handle Fault reply in
  826. initiator preamble.
  827. 2009-05-14 Atsushi Enomoto <[email protected]>
  828. * TcpDuplexSessionChannel.cs : ongoing refactoring to collect [MC-NMF]
  829. based communication under TcpBinaryFrameManager class.
  830. 2009-05-13 Jb Evain <[email protected]>
  831. * MessageHeader.cs: use a SL friendly way of creating an XmlReader
  832. from a StringReader.
  833. 2009-05-13 Atsushi Enomoto <[email protected]>
  834. * MessageImpl.cs, MessageHeader.cs : eliminate xlinq in 2.1, and
  835. actually eliminate DOM-based implementation too in 2.0.
  836. 2009-04-28 Atsushi Enomoto <[email protected]>
  837. * TcpDuplexSessionChannel.cs : implement in-band dictionary support
  838. in [MC-NMF] and [MC-NBFSE], used in duplex channels. Added some
  839. comments for magic numbers based on [MC-NMF].
  840. 2009-04-28 Atsushi Enomoto <[email protected]>
  841. * BinaryMessageEncoder.cs : implement part of in-band dictionary
  842. support for [MC-NBFSE] record in [MC-NMF], in this class.
  843. 2009-04-28 Atsushi Enomoto <[email protected]>
  844. * BinaryMessageEncodingBindingElement.cs : clear extra public members.
  845. 2009-04-27 Atsushi Enomoto <[email protected]>
  846. * TcpDuplexSessionChannel.cs : implemented some channel methods.
  847. 2009-04-27 Atsushi Enomoto <[email protected]>
  848. * BinaryMessageEncoder.cs : use XmlDictionary specified as [MC-NBFS].
  849. 2009-04-27 Atsushi Enomoto <[email protected]>
  850. * ChannelManagerBase.cs : implement Open/CloseTimeout correctly.
  851. 2009-04-23 Atsushi Enomoto <[email protected]>
  852. * BinaryMessageEncoder.cs : use quotas in binding element.
  853. Implement WriteMessage().
  854. 2009-04-22 Atsushi Enomoto <[email protected]>
  855. * PeerCustomResolverBindingElement.cs : do initialize field.
  856. 2009-04-21 Atsushi Enomoto <[email protected]>
  857. * PeerCustomResolverBindingElement.cs :
  858. implement full custom resolver.
  859. 2009-04-21 Atsushi Enomoto <[email protected]>
  860. * PeerDuplexChannel.cs, PeerChannelListener.cs,
  861. PeerOutputChannel.cs, PeerCustomResolverBindingElement.cs,
  862. PeerChannelFactory.cs : ongoing p2p channel implementation.
  863. 2009-04-21 Atsushi Enomoto <[email protected]>
  864. * PnrpPeerResolverBindingElement.cs : sync with PeerResolver changes.
  865. 2009-04-21 Atsushi Enomoto <[email protected]>
  866. * BinaryMessageEncodingBindingElement.cs, ChannelBase.cs,
  867. ChannelFactoryBase.cs, WindowsStreamSecurityBindingElement.cs :
  868. implement GetProperty<T>(). Return documented objects or null.
  869. 2009-04-20 Atsushi Enomoto <[email protected]>
  870. * PeerChannelFactory.cs, PeerChannelListener.cs,
  871. PeerCustomResolverBindingElement.cs, PeerDuplexChannel.cs
  872. PeerInputChannel.cs, PeerOutputChannel.cs :
  873. new; ongoing peer transport implementation.
  874. * DuplexSessionChannelBase.cs, InputChannelBase.cs
  875. MsmqOutputChannel.cs, OutputChannelBase.cs,
  876. PeerResolverBindingElement.cs, PeerTransportBindingElement.cs,
  877. PnrpPeerResolverBindingElement.cs, TcpDuplexSessionChannel.cs :
  878. several internal changes (either required or for simplification)
  879. for ongoing peer transport implementation.
  880. 2009-04-08 Atsushi Enomoto <[email protected]>
  881. * PeerTransportBindingElement.cs : ListenIPAddress is IPAddress.
  882. 2009-04-07 Atsushi Enomoto <[email protected]>
  883. * TcpTransportBindingElement.cs : check build-ability before
  884. actually building channels.
  885. * ConnectionOrientedTransportBindingElement.cs : fixed build-ability
  886. conditions according to MSDN.
  887. 2009-03-05 Atsushi Enomoto <[email protected]>
  888. * MessageHeader.cs, MessageHeaders.cs, MessageImpl.cs :
  889. handle headers in SL2. Slightly changed 3.0 code too.
  890. 2009-03-04 Atsushi Enomoto <[email protected]>
  891. * HttpRequestChannel.cs : use cross domain access manager.
  892. 2009-02-27 Atsushi Enomoto <[email protected]>
  893. * Message.cs : (in CreateBufferedCopy) do not pass the entire
  894. message as BodyWriter.
  895. (in GetReaderAtBodyContents) just write body contents.
  896. * MessageImpl.cs : do not try to read body at ctor (fixed tons
  897. of test failures).
  898. Add some state check in GetReaderAtBodyContents().
  899. * XmlReaderBodyWriter.cs : avoid possible extra xmldecl onto output.
  900. 2009-02-18 Atsushi Enomoto <[email protected]>
  901. * Message.cs : do not forget to flush.
  902. * HttpRequestChannel.cs : give more exact error info.
  903. 2009-02-18 Atsushi Enomoto <[email protected]>
  904. * Message.cs, MessageBufferImpl.cs, XmlReaderBodyWriter.cs :
  905. make buffered copy in ML2 really buffered.
  906. 2009-02-12 Atsushi Enomoto <[email protected]>
  907. * Message.cs : if there is no header item to write, do not write
  908. SOAP header element.
  909. 2009-01-22 Alan McGovern <[email protected]>
  910. * MessageHeaders.cs : List<T>.RemoveAll(Predicate<T>) doesn't exist in Silverlight.
  911. Rewrite to avoid usage of it.
  912. 2009-01-14 Atsushi Enomoto <[email protected]>
  913. * ChannelParameterCollection.cs : implement, rather than NIE.
  914. 2008-05-22 Noam Lampert <[email protected]>
  915. * MessageFault.cs: Correctly serialize ExceptionDetails. Expose SimpleMessageFault to allow
  916. internal users to know the type of the detail.
  917. 2008-05-20 Noam Lampert <[email protected]>
  918. * Message.c: Use private setter for state private variable to ease debugging.
  919. Modify ToString not to change the state, as it is called quite often by VS debugger
  920. 2008-04-21 Roei Erez <[email protected]>
  921. * HttpChannleManager: Fix for multithreaded use.
  922. * HttpReplyChannel: Fix crash during sutdown.
  923. 2008-04-17 Igor Zelmanovich <[email protected]>
  924. * HttpChannleManager: ensure trailing slash in uri.
  925. 2008-04-17 Vladimir Krasnov <[email protected]>
  926. * added: HttpChannleManager,
  927. * HttpChannelListener: added use of HttpChannelManager
  928. 2008-04-17 Vladimir Krasnov <[email protected]>
  929. * MessageEncodingBindingElement.cs: fixed ctor
  930. 2008-04-17 Vladimir Krasnov <[email protected]>
  931. * XmlReaderBodyWriter.cs: fixed ctor, skip xml declaration
  932. 2008-04-17 Vladimir Krasnov <[email protected]>
  933. * HttpReplyChannel.cs: fixed TryReceiveRequest, fix message header To
  934. 2008-04-17 Vladimir Krasnov <[email protected]>
  935. * MessageFault.cs: fixed CreateFault11, implemented "detail"
  936. 2008-04-17 Noam Lampert <[email protected]>
  937. * HttpReplyChannel.cs: fix API - Fix crash during service shutdown.
  938. 2008-04-13 Igor Zelmanovich <[email protected]>
  939. * BindingElementCollection.cs: fix API - .ctor's signature.
  940. 2008-04-10 Eyal Alaluf <[email protected]>
  941. * XmlSerializerBodyWriter.cs: Removed.
  942. 2008-03-25 Vladimir Krasnov <[email protected]>
  943. * MessageFault.cs: fixed WriteReason, .net XmlWriter compatible
  944. 2008-02-20 Atsushi Enomoto <[email protected]>
  945. * DuplexSessionChannelBase.cs : made it non-session (more reusable).
  946. * TcpChannelFactory.cs, TcpChannelListener.cs :
  947. unify factory and listener into TcpChannelInfo for use in
  948. TCP channel implementation. Do not store stream in the listener.
  949. Factory now uses BinaryMessageEncoder.
  950. * TcpDuplexSessionChannel.cs : changes explained above, and now it
  951. holds TcpClient that the listener has accepted.
  952. tcp-transport-binding-element sample now communicates (though
  953. only when both sides are mono: there seems binary mismatch).
  954. 2008-02-20 Atsushi Enomoto <[email protected]>
  955. * TcpTransportBindingElement.cs, TcpConnectionPoolSettings.cs :
  956. clone connection pool settings too.
  957. * NamedPipetransportBindingElement.cs,
  958. NamedPipeConnectionPoolSettings.cs : let's clean them up too (not
  959. being likely implemented though).
  960. 2008-02-20 Atsushi Enomoto <[email protected]>
  961. * ConnectionOrientedTransportBindingElement.cs,
  962. TcpTransportBindingElement.cs : some API updates.
  963. Initialize default values.
  964. * TcpConnectionPoolSettings.cs : new file.
  965. 2008-02-18 Atsushi Enomoto <[email protected]>
  966. * ServiceHostParser.cs, SvcHttpHandlerFactory.cs, SvcHttpHandler.cs:
  967. added support for "factory" attribute.
  968. 2008-02-15 Atsushi Enomoto <[email protected]>
  969. * HttpRequestContent.cs : consider HttpResponseMessageProperty.
  970. 2008-02-15 Atsushi Enomoto <[email protected]>
  971. * HttpRequestChannel.cs : pass response ContentType to ReadMessage().
  972. 2008-02-15 Atsushi Enomoto <[email protected]>
  973. * HttpRequestChannel.cs : create WebRequest against To message header
  974. item (if exists).
  975. Consider HttpRequestMessageProperty.
  976. Do not output body when suppressed or the method is GET.
  977. 2008-02-15 Atsushi Enomoto <[email protected]>
  978. * HttpChannelListener.cs : BindingContext may not have listenUri
  979. at its .ctor() step.
  980. 2008-02-08 Atsushi Enomoto <[email protected]>
  981. * BindingContext.cs : RemainingBindingElements is not just a dummy
  982. collection but is actually user-controlled.
  983. 2008-02-08 Atsushi Enomoto <[email protected]>
  984. * TcpChannelFactory.cs, TcpChannelListener.cs,
  985. HttpChannelFactory.cs, HttpChannelListener.cs,
  986. MsmqChannelFactory.cs, MsmqChannelListener.cs,
  987. TextMessageEncodingBindingElement.cs,
  988. BinaryMessageEncodingBindingElement.cs,
  989. MtomMessageEncodingBindingElement.cs :
  990. message encoder should be retrieved only through public API.
  991. * BindingContext.cs : so my old guess was wrong.
  992. See also: http://blogs.msdn.com/drnick/archive/2006/05/10/594134.aspx
  993. 2008-02-05 Atsushi Enomoto <[email protected]>
  994. * HttpTransportBindingElement.cs : implemented copy constructor.
  995. 2007-08-20 Atsushi Enomoto <[email protected]>
  996. * HttpRequestChannel.cs, HttpReplyChannel.cs : treat SOAPAction HTTP
  997. header when AddressingVersion is None.
  998. 2007-08-20 Atsushi Enomoto <[email protected]>
  999. * MessageHeaders.cs : AddressingVersion.None rejects some WSA
  1000. property setters.
  1001. 2007-08-19 Atsushi Enomoto <[email protected]>
  1002. * OneWayBindingElementImporter.cs
  1003. CompositeDuplexBindingElementImporter.cs : new files.
  1004. 2007-08-17 Atsushi Enomoto <[email protected]>
  1005. * MessageHeaders.cs : due to the DataContractSerializer.ReadObject()
  1006. semantic change, its bool parameter must be false, not true.
  1007. 2007-07-13 Atsushi Enomoto <[email protected]>
  1008. * InputChannelBase.cs, MsmqChannelListener.cs, MsmqInputChannel.cs :
  1009. new files. Msmq transport listener Implementation.
  1010. * MsmqOutputChannel.cs : implemented Send(). Not sure if it works
  1011. (wait for System.Messaging impl.)
  1012. * HttpReplyChannel.cs : added comment
  1013. 2007-07-06 Atsushi Enomoto <[email protected]>
  1014. * MsmqChannelFactory.cs MsmqOutputChannel.cs OutputChannelBase.cs :
  1015. new files. internal stuff for msmq channel.
  1016. * BinaryMessageEncoder.cs : added another .ctor().
  1017. * MsmqTransportBindingElement.cs :
  1018. implemented [Can]BuildChannelFactory().
  1019. 2007-07-06 Atsushi Enomoto <[email protected]>
  1020. * MsmqBindingElementBase.cs MsmqTransportBindingElement.cs :
  1021. initialize some fields.
  1022. 2007-07-05 Atsushi Enomoto <[email protected]>
  1023. * MsmqBindingElementBase.cs MsmqMessageProperty.cs
  1024. MsmqTransportBindingElement.cs ITransactedBindingElement.cs :
  1025. couple of msmq stubs.
  1026. 2007-04-02 Atsushi Enomoto <[email protected]>
  1027. * SecureMessageGenerator.cs : SecurityContextToken support (though
  1028. it is still regarded as invalid by WCF).
  1029. 2007-03-13 Atsushi Enomoto <[email protected]>
  1030. * WSSecurityMessageHeader.cs, SecureMessageGenerator.cs :
  1031. make header.Contents.Add() more strict.
  1032. Use HasAsymmetricKey to determine whether to use asymmetric algorithm
  1033. or not.
  1034. Added some hack to allow ssl token external mode.
  1035. Commented out such lines that always premised asymmtric key.
  1036. 2007-03-08 Atsushi Enomoto <[email protected]>
  1037. * TransactionFlowBindingElement.cs : forgot necessary Clone().
  1038. 2007-03-08 Atsushi Enomoto <[email protected]>
  1039. * MessageSecurityBindingSupport.cs : support check to create
  1040. authenticator is now done in both initiator/recipient sides.
  1041. * SecurityRequestContext.cs : don't encrypt WS-Trust RSTR.
  1042. 2007-03-07 Atsushi Enomoto <[email protected]>
  1043. * MessageSecurityBindingSupport.cs : for now, comment out the code
  1044. that makes authenticator creation optional.
  1045. * SecurityRequestContext.cs : don't decrypt message when it is
  1046. WS-Trust messages. Also, do not secure SOAP Fault (it is likely
  1047. to fail).
  1048. * SecurityChannelListener.cs : GetProperty<T>() now returns
  1049. MessageSecurityBindingSupport when requested. It is used by
  1050. EndpointDispatcher to check if it supports WS-Trust negotiation.
  1051. * ChannelListenerBase.cs :
  1052. removed extra TODO and field. Implemented GetProperty<T>().
  1053. * Message.cs : In CreateMessage() for SOAP Fault, create
  1054. SimpleMessage with IsFault = true.
  1055. 2007-03-07 Atsushi Enomoto <[email protected]>
  1056. * SecurityRequestContext.cs : try to reply fault with the inner
  1057. channel when an error occurred internally.
  1058. * FaultConverter.cs : implemented based on OperationContext (at normal
  1059. state it does not seem to create messages, so I implemented it this
  1060. way).
  1061. 2007-03-07 Atsushi Enomoto <[email protected]>
  1062. * TransportBindingElement.cs : implemented GetProperty<T>().
  1063. * TransactionFlowBindingElement.cs : on building factory or listener,
  1064. reject channel types that cannot build.
  1065. * SecurityBindingElement.cs : added some TODO comments.
  1066. * HttpTransportBindingElement.cs : GetProperty<T>() should rather
  1067. delegate to base, not BindingContext.
  1068. * SecurityRequestContext.cs : somewhat late decryption.
  1069. 2007-03-06 Atsushi Enomoto <[email protected]>
  1070. * MessageSecurityBindingSupport.cs,
  1071. AsymmetricSecurityBindingElement.cs,
  1072. SymmetricSecurityBindingElement.cs :
  1073. renamed *SecurityBindingElementSupport to *SecurityCapabilities and
  1074. implemented ISecurityCapabilities on them. Now those binding
  1075. elements support GetProperty<ISecurityCapabilities>().
  1076. 2007-03-05 Atsushi Enomoto <[email protected]>
  1077. * SecurityBindingElement.cs : SetIssuerBindingContextIfRequired()
  1078. will work only for predefined parameter types.
  1079. 2007-03-01 Atsushi Enomoto <[email protected]>
  1080. * MessageSecurityBindingSupport.cs :
  1081. Set proper MessageDirection to the requirement after creation.
  1082. split CreateTokenAuthenticator() as MessageDirection is different.
  1083. Removed extra creation of requirement.
  1084. 2007-03-01 Atsushi Enomoto <[email protected]>
  1085. * MessageSecurityBindingSupport.cs : token authenticator is not
  1086. always created on channel-opening stage.
  1087. * SecurityBindingElement.cs : use SslSecurityTokenParameters for
  1088. Sslnego binding factory method.
  1089. 2007-02-28 Atsushi Enomoto <[email protected]>
  1090. * SecureMessageGenerator.cs : inconsistent ReferenceList has caused
  1091. signature velification failure.
  1092. 2007-02-27 Atsushi Enomoto <[email protected]>
  1093. * SecureMessageGenerator.cs : encrypt signature confirmations only
  1094. when they are required.
  1095. 2007-02-27 Atsushi Enomoto <[email protected]>
  1096. * SecureMessageGenerator.cs : SignatureConfirmation must be encrypted
  1097. when [Signature Protection is true i.e. when we use
  1098. SignBeforeEncryptAndEncryptSignature.
  1099. With this change finally samplesvc.cs/samplecli.cs became
  1100. interoperable(!)
  1101. 2007-02-27 Atsushi Enomoto <[email protected]>
  1102. * SecureMessageDecryptor.cs : signature verification was not done
  1103. for endorsing supporting tokens.
  1104. * SecureMessageGenerator.cs : moved SignatureConfirmation position
  1105. in the security header. Don't output empty ReferenceList.
  1106. 2007-02-27 Atsushi Enomoto <[email protected]>
  1107. * SecureMessageGenerator.cs : signingToken was added before being
  1108. initialized and thus caused NRE.
  1109. 2007-02-27 Atsushi Enomoto <[email protected]>
  1110. * WSSecurityMessageHeader.cs, SecureMessageDecryptor.cs,
  1111. SecureMessageGenerator.cs : use SHA1 instead of HMACSHA1. Now we
  1112. don't need workaround for symmetric key restoration.
  1113. 2007-02-27 Atsushi Enomoto <[email protected]>
  1114. * WSSecurityMessageHeader.cs, SecureMessageDecryptor.cs,
  1115. SecureMessageGenerator.cs :
  1116. Avoid extra reference search from the request's ReferenceList.
  1117. create HMACSHA1 always with the key to compute hash (I'm not sure
  1118. it is correct; it is rather to adjust all hash consistent.)
  1119. 2007-02-27 Atsushi Enomoto <[email protected]>
  1120. * SecureMessageDecryptor.cs : verify that endorsing supporting tokens
  1121. actually endorsed the primary signature.
  1122. * SecureMessageGenerator.cs : implemented endorsing of the primary
  1123. signature. So, now supporting tokens are fully implemented.
  1124. 2007-02-27 Atsushi Enomoto <[email protected]>
  1125. * MessageSecurityBindingSupport.cs : so, those supporting tokens are
  1126. totally signing tokens.
  1127. * SecureMessageGenerator.cs : Endorsing tokens should also be
  1128. included in the message. They are just not signed.
  1129. 2007-02-26 Atsushi Enomoto <[email protected]>
  1130. * SecureMessageGenerator.cs : support signing and encryption of
  1131. supporting tokens. Some required refactory to do it.
  1132. * MessageSecurityBindingSupport.cs : added EncryptedData member.
  1133. 2007-02-26 Atsushi Enomoto <[email protected]>
  1134. * SecureMessageDecryptor.cs : fix exception message.
  1135. * WSSecurityMessageHeader.cs, WSSignedXml.cs, WSEncryptedXml.cs :
  1136. XmlNamespaceManager is not required for GetIdElement().
  1137. 2007-02-22 Atsushi Enomoto <[email protected]>
  1138. * SecureMessageDecryptor.cs, WSSecurityMessageHeader.cs :
  1139. moved decryption part from former file to latter file, to reuse
  1140. SignedXml instance (though now I doubt how it actually was good)
  1141. which in turn required to replace EncryptedData in
  1142. WSSecurityMessageHeader with decrypted one.
  1143. * WSEncryptedXml.cs : similar to WSSignedXml.cs, to handle wsu:Id.
  1144. 2007-02-21 Atsushi Enomoto <[email protected]>
  1145. * SecureMessageGenerator.cs : when we create DerivedKeyToken, those
  1146. EncryptedData should contain KeyInfo as it is not obvious which key
  1147. is used there. .net<->mono DerivedKeyToken introp is done.
  1148. * SecureMessageDecryptor.cs : check derived key requirement.
  1149. Reduce dom-dependent parts.
  1150. 2007-02-21 Atsushi Enomoto <[email protected]>
  1151. * WSSecurityMessageHeader.cs : ReferenceList needs to be bound to
  1152. the related DerivedKeyToken (if any).
  1153. * SecureMessageGenerator.cs : largely done with DerivedKeyToken
  1154. support. Some refactoring to distinguish deried-token-related
  1155. variables.
  1156. * SecureMessageDecryptor.cs : removed its own support for derived
  1157. key tokens. Now it fully works with DerivedKeySecurityToken.
  1158. 2007-02-21 Atsushi Enomoto <[email protected]>
  1159. * WSSecurityMessageHeader.cs, SecureMessageDecryptor.cs,
  1160. SecureMessageDecryptor.cs :
  1161. Implemented increment token reading in o:Security, as
  1162. DerivedKeyToken could reference to existing wrapped key.
  1163. Removed WsscDerivedKeyToken and all relevant code.
  1164. * SecureMessageGenerator.cs : replaced WsscDerivedKeyToken with
  1165. DerivedKeySecurityToken.
  1166. 2007-02-16 Atsushi Enomoto <[email protected]>
  1167. * SecureMessageGenerator.cs : it was setting security tokens into
  1168. incorrect SecurityMessageProperty.
  1169. Use correct WrappedKeySecurityToken for EncryptedKeySHA1.
  1170. Now it uses SecurityRequestContext instead of just primary key.
  1171. * SecureMessageDecryptor.cs : removed extra lines. Limit workarounds
  1172. to symmetric reply decryption, which is the only trouble case.
  1173. Do not create another SignedXml.
  1174. * WSSecurityMessageHeader.cs : SignedXml processing changes above.
  1175. 2007-02-15 Atsushi Enomoto <[email protected]>
  1176. * SecureMessageDecryptor.cs : Now it uses union token resolver and
  1177. the resolver works with in-progress token reading in o:Security.
  1178. * WSSecurityMessageHeader.cs : now it does not read EncryptedKey
  1179. as EncryptedKeyIdentifierClause. It is rather a SecurityToken.
  1180. * SecureMessageGenerator.cs : cosmetic refactoring.
  1181. 2007-02-14 Atsushi Enomoto <[email protected]>
  1182. * WSSecurityMessageHeader.cs : read EncryptedKeyIdentifierClause
  1183. instead of EncryptedKey.
  1184. 2007-02-13 Atsushi Enomoto <[email protected]>
  1185. * MessageSecurityBindingSupport.cs : SigningToken and EncryptionToken
  1186. should not be always prepared at channel Open(). It also caused
  1187. that extra token requirements.
  1188. * SecureMessageGenerator.cs : use correct key clause for encryption.
  1189. * SecureMessageDecryptor.cs : reduce extra key acquisition.
  1190. 2007-02-06 Atsushi Enomoto <[email protected]>
  1191. * MessageSecurityBindingSupport.cs : added CreateTokenAuthenticator()
  1192. for supporting 'supporting tokens' .
  1193. * SecureMessageGenerator.cs : Supporting token creation is done only
  1194. at initiator (not sure if it is supposed that, but for now it is).
  1195. Removed extraneous CollectSupportingTokens().
  1196. * SecureMessageDecryptor.cs : implemented supporting token
  1197. authentication (partly). "Signed" supporting tokens are expected
  1198. to work fine.
  1199. 2007-02-06 Atsushi Enomoto <[email protected]>
  1200. * SecureMessageGenerator.cs :
  1201. make SignBeforeEncryptAndEncryptSignature working.
  1202. 2007-02-06 Atsushi Enomoto <[email protected]>
  1203. * SecureMessageGenerator.cs : EncryptedKeySHA1 needs key hash, not
  1204. the key itself. ProtectionToken is WrappedKey.
  1205. * SecureMessageDecryptor.cs : now it is internal encrypted key clause,
  1206. not EncryptedKeyIdentifierClause which is not for embedded key.
  1207. * MessageProperties.cs : Fixed copy direction in CopyProperties().
  1208. 2007-02-05 Atsushi Enomoto <[email protected]>
  1209. * MessageSecurityBindingSupport.cs : added DefaultKeyWrapAlgorithm
  1210. to switch asymmetric and symmetric. Not used yet.
  1211. * SecurityRequestChannel.cs : now it pass the request security
  1212. property to reply receiver so that it could use the primary key
  1213. used at request phase.
  1214. * SecurityRequestContext.cs : now it pass the context itself to
  1215. reply sender so that it could embed related MessageID.
  1216. * SecureMessageGenerator.cs : ongoing changes to support symmetric
  1217. binding element. Add RelatesTo output and remove MessageID when
  1218. replying to the sender. Added some hacks to get symmetric binding
  1219. (kind of) working.
  1220. * SecureMessageDecryptor.cs : ditto. Handle embedded encryption key
  1221. in SecurityTokenReference (it also involved existing encrypted key
  1222. retrieval). In reply receiver, reuse the key that was used at
  1223. request phase. It needs significant token resolution refactoring.
  1224. 2007-02-02 Atsushi Enomoto <[email protected]>
  1225. * MessageSecurityBindingSupport.cs : cosmetic refactoring.
  1226. * SecureMessageDecryptor.cs : store token and its authentication
  1227. policies into the security property, and reuse it on reply.
  1228. Some code refactoring; there is at most one o:Security to solve at
  1229. one endpoint (depends on Actor). Some attempt to use correct
  1230. token parameters (but for now I have only samples that use x509).
  1231. * SecureMessageGenerator.cs : For replying message, use initiator's
  1232. signing token as the encryption token. Simply reuse security
  1233. property from the input message.
  1234. I have some nasty workaround at decryptor for initiator that could
  1235. not retrieve decryption key.
  1236. 2007-02-02 Atsushi Enomoto <[email protected]>
  1237. * SecureMessageGenerator.cs, SecurityChannelListener.cs,
  1238. SecurityRequestContext.cs, MessageSecurityBindingSupport.cs:
  1239. several refactoring on token acquisition. Large part of
  1240. MessageSecurityBindingSupport code is unified.
  1241. 2007-02-02 Atsushi Enomoto <[email protected]>
  1242. * MessageProperties.cs : Security property should be one of the items.
  1243. Actually many other properties should be similar as well.
  1244. * MessageImpl.cs, MessageBufferImpl.cs, Message.cs :
  1245. when copying a message, copy properties as well.
  1246. * SecurityRequestContext.cs : on replying, pass input
  1247. SecurityMessageProperty to the security generator.
  1248. * SecureMessageGenerator.cs : both of above, for SignatureConfirmation
  1249. support.
  1250. * WSSecurityMessageHeader.cs : fixed lazy .ctor() that did nothing.
  1251. 2007-02-01 Atsushi Enomoto <[email protected]>
  1252. * WSSignedXml.cs:
  1253. MessageHeader.cs, Message.cs, WSSecurityMessageHeader.cs,
  1254. SecureMessageDecryptor.cs, SecureMessageGenerator.cs:
  1255. use new WSSignedXml instead of SignedXml, and remove coexisting
  1256. Id and wsu:Id. Now we can live only with wsu:Id and therefore
  1257. - our reply messages could be consumed by .NET, and
  1258. - .NET signature could be verified.
  1259. 2007-02-01 Atsushi Enomoto <[email protected]>
  1260. * SecureMessageDecryptor.cs : The signing key must be passed as
  1261. CheckSignature() argument, not SigningKey.
  1262. 2007-01-31 Atsushi Enomoto <[email protected]>
  1263. * MessageImpl.cs : don't read attribute after ReadStartElement().
  1264. 2007-01-31 Atsushi Enomoto <[email protected]>
  1265. * MessageSecurityBindingSupport.cs : some Release() refactoring.
  1266. * SecureMessageGenerator.cs : use correct signing key clause for
  1267. SecurityTokenReferenceKeyInfo to be serialized.
  1268. * SecureMessageDecryptor.cs : now it can try to parse signature.
  1269. 2007-01-31 Atsushi Enomoto <[email protected]>
  1270. Ongoing changes to support signature confirmation
  1271. * SecureMessageGenerator.cs :
  1272. Don't output ReplyTo onto reply message.
  1273. Write SignatureConfirmation if needed.
  1274. * SecureMessageDecryptor.cs :
  1275. Some refactoring for header cunsumption. Added commented-out
  1276. signature verification part (not working yet, on client side due
  1277. to incorrect reply from service and insufficient clause reader).
  1278. * WSSecurityMessageHeader.cs :
  1279. Added SignatureConfirmation support.
  1280. KeyInfoClause for o:SecurityTokenReference should be replaced with
  1281. SecurityTokenReferenceKeyInfo.
  1282. 2007-01-29 Atsushi Enomoto <[email protected]>
  1283. * SecureMessageGenerator.cs : support Timestamp signature.
  1284. Removed unused code, and extra argument in CreateReference().
  1285. * WSSecurityMessageHeader.cs : Timestamp also needs Id for SignedXml.
  1286. 2007-01-29 Atsushi Enomoto <[email protected]>
  1287. * SecureMessageGenerator.cs :
  1288. Several fixes to make asymmetric binding working:
  1289. - Differentiate signing and encryption token in several areas.
  1290. - Fixed signing keyinfo.
  1291. Use SenderIdPrefix.
  1292. Added initial SecurityMessageProperty handling, not sure if it is
  1293. appropriate here though.
  1294. * HttpRequestChannel.cs : (some debugging lines)
  1295. 2007-01-26 Atsushi Enomoto <[email protected]>
  1296. Woohoo! Here is a very basic WS-Security compliant message which could
  1297. be allowed by Indigo.
  1298. * MessageHeader.cs : added Id support for writing.
  1299. * Message.cs : added internal BodyId for signature reference.
  1300. * MessageImpl.cs : write Body Id if required.
  1301. * SecureMessageGenerator.cs : Before signing, the target elements must
  1302. be given wsu:Id. Since I still use System.Security.dll, I need some
  1303. trick for signing (I give both Id and wsu:Id, former to sign and
  1304. latter to be consumed). Maybe I will have to replace xmldsig/xmlenc
  1305. implementation later. Now singning mechanism works except for
  1306. wsu:Timestamp (which is kind of mandatory).
  1307. I can's still consume replies from Indigo but it's a big progress :)
  1308. 2007-01-26 Atsushi Enomoto <[email protected]>
  1309. * MessageHeaderInfo.cs : added internal Id.
  1310. * MessageHeader.cs : read and write wsu:Id.
  1311. * Message.cs : output wsu namespace if Id exists in any header.
  1312. * HttpReplyChannel.cs : (some debugging lines.)
  1313. * SecureMessageDecryptor.cs : (remove debugging lines.)
  1314. * MessageImpl.cs : removed obsolete code.
  1315. * WSSecurityMessageHeader.cs : output "o" prefix.
  1316. * SecureMessageGenerator.cs : replaced XmlElement-based header
  1317. signing with MessageHeader-based signing, to support Id correctly.
  1318. 2007-01-15 Atsushi Enomoto <[email protected]>
  1319. * SecureMessageGenerator.cs : some more refactoring and code comments.
  1320. * MessageSecurityUtility.cs : made decryptor into an instance class,
  1321. like I've done for SecureMessageGenerator.
  1322. * SecurityRequestContext.cs, SecurityRequestChannel.cs :
  1323. dependent changes for above.
  1324. 2007-01-12 Atsushi Enomoto <[email protected]>
  1325. * SecureMessageGenerator.cs : fixed derived keysize. derived key was
  1326. causing NRE due to the lack of token reference.
  1327. No need to pass doc to SignedXml.ctor() anymore.
  1328. Moved ReferenceList before the signature(s).
  1329. 2007-01-12 Atsushi Enomoto <[email protected]>
  1330. * SecureMessageGenerator.cs : add wsu:Timestamp to signing target.
  1331. Moved signing key generation code to non-HMACSHA1 signing part.
  1332. Don't try to sign wss:Security.
  1333. Pass document itself to SignedXml.ctor().
  1334. Use temporary DataObjects to avoid adding Ids (not sure what is the
  1335. expected processing yet).
  1336. * WSSecurityMessageHeader.cs : to support timestamp signing, add
  1337. WriteTo() method in WsuTimestamp.
  1338. 2007-01-12 Atsushi Enomoto <[email protected]>
  1339. * SecureMessageGenerator.cs : wrong key was used for signing.
  1340. Omit KeyInfo for now - it seems that .net (sometimes?) omits it.
  1341. 2007-01-11 Atsushi Enomoto <[email protected]>
  1342. * SecureMessageGenerator.cs :
  1343. Now ID generation process does not modify input message.
  1344. Moved derived key generation part into (virtual) signing loop.
  1345. MessagePartSpecification support for signing is done.
  1346. 2007-01-11 Atsushi Enomoto <[email protected]>
  1347. * SecureMessageGenerator.cs : some reordering to handle signing and
  1348. encryption with supporting tokens. Fixed XPath query bug for
  1349. soap header contents (we want s:Header/*, not s:Header).
  1350. 2007-01-11 Atsushi Enomoto <[email protected]>
  1351. * MessageSecurityBindingSupport.cs : more refactoring.
  1352. Made it abstract and added Initiator- and Recipient- classes.
  1353. Several members were moved to those derived types.
  1354. * AsymmetricSecurityBindingElement.cs,
  1355. SymmetricSecurityBindingElement.cs
  1356. SecurityChannelFactory.cs, SecurityChannelListener.cs,
  1357. SecurityRequestChannel.cs, SecurityOutputChannel.cs,
  1358. SecurityRequestContext.cs, SecureMessageGenerator.cs :
  1359. All dependent changes by above. Removed ISecurityChannelSource
  1360. which became useless.
  1361. 2007-01-11 Atsushi Enomoto <[email protected]>
  1362. * SecureMessageGenerator.cs : encryption parts should exist too.
  1363. * AsymmetricSecurityBindingElement.cs
  1364. SymmetricSecurityBindingElement.cs,
  1365. MessageSecurityBindingSupport.cs : some refactoring.
  1366. Split MessageSecurityBindingSupport into security binding element
  1367. specific parts and made MessageSecurityBindingSupport concrete.
  1368. It is likely split again, next time based on initiator/recipient.
  1369. 2007-01-11 Atsushi Enomoto <[email protected]>
  1370. * MessageSecurityUtility.cs, SecureMessageGenerator.cs :
  1371. split encryptor part in the former file into latter file, and
  1372. make it nonstatic.
  1373. * SecurityRequestChannel.cs, SecurityOutputChannel.cs,
  1374. SecurityRequestContext.cs : apply the change above.
  1375. 2007-01-11 Atsushi Enomoto <[email protected]>
  1376. * MessageSecurityBindingSupport.cs :
  1377. Fixed incorrect TrgGetValue() use.
  1378. Added CollectRecipientSupportingTokens().
  1379. 2007-01-11 Atsushi Enomoto <[email protected]>
  1380. * MessageSecurityUtility.cs: acctually ReferenceList was inside
  1381. EncryptedKey. So, when a key itself is used to encrypt data,
  1382. ReferenceList is contained by itself.
  1383. * MessageSecurityBindingSupport.cs :
  1384. added CollectInitiatorSupportingTokens().
  1385. 2007-01-10 Atsushi Enomoto <[email protected]>
  1386. * MessageSecurityUtility.cs: it should support ReferenceList-less
  1387. messages.
  1388. 2007-01-10 Atsushi Enomoto <[email protected]>
  1389. * WSSecurityMessageHeader.cs : reverted previous unnecessary change.
  1390. * MessageSecurityUtility.cs : there already was uuid.
  1391. 2007-01-09 Atsushi Enomoto <[email protected]>
  1392. * MessageSecurityUtility.cs : replaced EncryptedKey with
  1393. WrappedKeySecurityToken, which seems to be in actual use in .net.
  1394. * WSSecurityMessageHeader.cs : added internal Guid so that it
  1395. could be shared between header items.
  1396. 2006-12-14 Atsushi Enomoto <[email protected]>
  1397. * HttpRequestContext.cs, TextMessageEncoder.cs :
  1398. some null arg check.
  1399. 2006-12-08 Atsushi Enomoto <[email protected]>
  1400. * MessageSecurityUtility.cs : reducing DOM dependency. Use KeyInfoNode
  1401. for SecurityTokenReference resolution.
  1402. 2006-12-08 Atsushi Enomoto <[email protected]>
  1403. * MessageSecurityUtility.cs : fixed EncryptedData decryption to
  1404. consider DerivedKeyTokens correctly.
  1405. When creating LocalId, don't add '#' here.
  1406. 2006-12-07 Atsushi Enomoto <[email protected]>
  1407. * MessageSecurityUtility.cs :
  1408. handle key mapping for each wsse:Security.
  1409. 2006-12-07 Atsushi Enomoto <[email protected]>
  1410. * WSSecurityMessageHeader.cs : use prefix "c" for ws-secureconv.
  1411. 2006-12-06 Atsushi Enomoto <[email protected]>
  1412. * WSSecurityMessageHeader.cs : write top-level ReferenceList in
  1413. wsse:Security.
  1414. * MessageSecurityUtility.cs :
  1415. Now ReferenceList is placed under wsse:Security as WS-Security 1.1
  1416. suggests, and it is used to dereference decryption targets.
  1417. Now it premises multiple wsse:Security elements to read.
  1418. 2006-12-06 Atsushi Enomoto <[email protected]>
  1419. * WSSecurityMessageHeader.cs : don't write o:SecurityTokenReference
  1420. manually (and actually the namespace URI was wrong).
  1421. 2006-12-06 Atsushi Enomoto <[email protected]>
  1422. * WSSecurityMessageHeader.cs : improved DerivedKeyToken writing
  1423. and reading.
  1424. * MessageSecurityUtility.cs : DerivedKeyToken creation.
  1425. 2006-12-06 Atsushi Enomoto <[email protected]>
  1426. * SecurityBindingElement.cs,
  1427. SymmetricSecurityBindingElement.cs,
  1428. AsymmetricSecurityBindingElement.cs :
  1429. implemented SetKeyDerivation().
  1430. 2006-12-06 Atsushi Enomoto <[email protected]>
  1431. * MessageSecurityUtility.cs : don't add KeyInfoClause to EncryptedKey
  1432. more than once.
  1433. 2006-12-06 Atsushi Enomoto <[email protected]>
  1434. * MessageBufferImpl.cs : XmlReader-based buffer is not possible, so
  1435. don't use it.
  1436. 2006-12-05 Atsushi Enomoto <[email protected]>
  1437. * MessageSecurityUtility.cs : u:Timestamp will be encrypted/signed,
  1438. thus move it in front of encryption/signing.
  1439. 2006-12-04 Atsushi Enomoto <[email protected]>
  1440. * TransactionFlowBindingElement.cs : OnOpen()/OnClose() should not
  1441. check state by themselves (btw it's not really working).
  1442. * HttpChannelListener.cs : If the url does not end with '/' add it
  1443. so that it could be fed to HttpListener.
  1444. 2006-12-04 Atsushi Enomoto <[email protected]>
  1445. * HttpChannelFactory.cs : check scheme on CreateChannel.
  1446. * MessageHeader.cs : finish IsMessageVersionSupported().
  1447. 2006-12-04 Atsushi Enomoto <[email protected]>
  1448. * FaultConverter.cs : new file, not used yet though.
  1449. 2006-10-21 Atsushi Enomoto <[email protected]>
  1450. * SvcHttpHandler.cs : set GET URL to ServiceMetadataBehavior.
  1451. 2006-10-20 Atsushi Enomoto <[email protected]>
  1452. * SvcHttpHandler.cs : once AspNetReplyChannel get working with HTTP
  1453. GET as well as HttpReplyChannel, configuration would be ready now.
  1454. 2006-10-18 Ankit Jain <[email protected]>
  1455. * TextMessageEncoder.cs (MediaType): Use 'application/soap+xml' for
  1456. EnvelopeVersion.Soap12 and 'text/xml' for others.
  1457. * HttpReplyChannel.cs (TryReceiveRequest): Revert earlier patch for GET
  1458. handling.
  1459. Strip '?' from the query string.
  1460. 2006-10-13 Ankit Jain <[email protected]>
  1461. * MessageVersion.cs (None): Set AddressingVersion.None
  1462. 2006-10-12 Atsushi Enomoto <[email protected]>
  1463. * SvcHttpHandler.cs : added config-based endpoint addition code.
  1464. Though due to some weird bug in mono-core it does not seem to work,
  1465. so commented out for now.
  1466. * HttpReplyChannel.cs : handle wsdl query parameter. btw creating
  1467. mex request message might just be wrong.
  1468. Use expected MessageVersion by the channel.
  1469. * AspNetReplyChannel.cs : ditto. Plus, HTTP GET support.
  1470. 2006-10-12 Atsushi Enomoto <[email protected]>
  1471. * MessageSecurityBindingSupport.cs : added DefaultSignatureAlgorithm
  1472. which differs depending on whether it is asymmetric or symmetric.
  1473. * SecurityRequestChannel.cs, SecurityRequestContext.cs :
  1474. simplify SecureMessage() and DecryptMessage() arguments (just
  1475. take MessageSecurityBindingSupport instead of several parameters).
  1476. * MessageSecurityUtility.cs :
  1477. - simplify SecureMessage() and DecryptMessage() arguments (just
  1478. take MessageSecurityBindingSupport instead of several parameters).
  1479. - Take token inclusion mode into account. Don't include them when
  1480. it is not expected. Also, change the token reference style.
  1481. - add wsa:MessageID to the headers.
  1482. - For hmac-sha1 signing (default for symmetric binding), use
  1483. symmetric key created for encryption as well to create HMACSHA1.
  1484. - add Id to wsu:Timestamp.
  1485. - start to handle SecurityMessageProperty.
  1486. * WSSecurityMessageHeader.cs :
  1487. Added Id to WsuTimestamp. Also use prefixes for its XML output.
  1488. Changed date format.
  1489. 2006-10-06 Atsushi Enomoto <[email protected]>
  1490. * CommunicationObject.cs : reject faulted state on Open()/Close().
  1491. * MessageHeaders.cs : removed extra fields.
  1492. 2006-10-06 Ankit Jain <[email protected]>
  1493. * HttpReplyChannel.cs (TryReceiveRequest): Handle HTTP GET.
  1494. 2006-10-05 Atsushi Enomoto <[email protected]>
  1495. * MessageSecurityUtility.cs, SecurityRequestContext.cs :
  1496. added some FIXMEs and additional arg.
  1497. 2006-10-05 Atsushi Enomoto <[email protected]>
  1498. * MessageSecurityUtility.cs : remove duplicate Action header.
  1499. 2006-10-05 Atsushi Enomoto <[email protected]>
  1500. * MessageFault.cs : partly implemented CreateFault(Message, int).
  1501. * Message.cs, MessageImpl.cs, MessageBufferImpl.cs :
  1502. handle IsFault correctly in each implementation.
  1503. 2006-10-04 Ankit Jain <[email protected]>
  1504. * HttpRequestChannel.cs (ProcessRequest): Read till the end.
  1505. 2006-10-04 Ankit Jain <[email protected]>
  1506. * HttpRequestChannel.cs (ProcessRequest): Temporary workaround for a bug
  1507. in WebConnectionStream.
  1508. 2006-10-04 Ankit Jain <[email protected]>
  1509. * MessageHeaders.cs (To): Use GetHeader<string> till
  1510. DataContractSerializer gets ISerializable support.
  1511. * CustomBinding.cs (.ctor): Get scheme from TransportBindingElement.
  1512. 2006-10-04 Ankit Jain <[email protected]>
  1513. * ServiceHostParser.cs (Parse):
  1514. (Split): Add some error checks.
  1515. 2006-10-03 Atsushi Enomoto <[email protected]>
  1516. * SslStreamSecurityBindingElement.cs : updated API to Sep. CTP.
  1517. * StreamUpgradeAcceptor.cs : Fix AcceptUpgrade().
  1518. * SslStreamSecurityUpgradeProvider.cs,
  1519. SslStreamSecurityUpgradeAcceptor.cs :
  1520. new files for Ssl upgrade provider implementation.
  1521. * MessageSecurityUtility.cs :
  1522. Create proper C14NTransform. Don't use enveloped signature
  1523. transform but sign every significant bits. On securing messages
  1524. use ChannelProtectionRequirements.
  1525. * SecurityRequestContext.cs : pass ChannelProtectionRequirements to
  1526. SecureMessage().
  1527. * MessageEncoder.cs : fix API (missing constraint).
  1528. * WSSecurityMessageHeader.cs : it is MustUnderstand.
  1529. * StreamUpgradeProvider.cs : API fix and implemented .ctor().
  1530. * AsymmetricSecurityBindingElement.cs : default protection order is
  1531. SignBeforeEncryptAndEncryptSignature.
  1532. 2006-09-29 Ankit Jain <[email protected]>
  1533. * SvcHttpHandlerFactory.cs (GetTypeFromSvc): Extract and move code to
  1534. ServicHostParser and use that here.
  1535. (PrivateBinPath): New.
  1536. (GetTypeFromBin): New. Load assembly from PrivateBinPath.
  1537. (RemovedCallback): Remove and close the SvcHttpHandler when its
  1538. corresponding file (.svc) changes.
  1539. * SvcHttpHandler.cs (Close): New. Close the ServiceHost.
  1540. * ServiceHostParser.cs : New.
  1541. * CachingCompiler.cs : New. Code extracted from
  1542. System.Web.Compilation.CachingCompiler
  1543. * CompilationException.cs : New. From System.Web.Compilation
  1544. * HtmlizedException.cs : New. Likewise.
  1545. 2006-09-29 Atsushi Enomoto <[email protected]>
  1546. * MessageSecurityBindingSupport.cs : For client side, it is always
  1547. InitiatorServiceModelSecurityTokenRequirement which should be
  1548. created. Fixed wrong client encryption key acquisition.
  1549. 2006-09-29 Atsushi Enomoto <[email protected]>
  1550. * SecurityChannelListener.cs, SecurityRequestContext.cs,
  1551. MessageSecurityBindingSupport.cs : made similar changes as factories
  1552. to listener so that session channels and input channels would work.
  1553. Added authenticator creation.
  1554. 2006-09-29 Atsushi Enomoto <[email protected]>
  1555. * Binding.cs : added missing members.
  1556. 2006-09-28 Atsushi Enomoto <[email protected]>
  1557. * SecurityRequestChannel.cs, SecurityOutputChannel.cs,
  1558. MessageSecurityUtility.cs, MessageSecurityBindingSupport.cs :
  1559. reduce code duplication between request and output channels.
  1560. The common parts are now in MessageSecurityBindingSupport.
  1561. Now reduced several arguments in SecureMessage() for client.
  1562. 2006-09-28 Atsushi Enomoto <[email protected]>
  1563. * ChannelFactoryBase.cs : implemented ValidateCreateChannel().
  1564. 2006-09-28 Atsushi Enomoto <[email protected]>
  1565. * AsymmetricSecurityBindingElement.cs,
  1566. SecurityChannelListener.cs,
  1567. SecurityRequestContext.cs,
  1568. SymmetricSecurityBindingElement.cs,
  1569. SecurityRequestChannel.cs,
  1570. SecurityOutputChannel.cs,
  1571. SecurityChannelFactory.cs,
  1572. MessageSecurityBindingSupport.cs : 1) Refactoring.
  1573. IMessageSecurityBindingSupport now becomes a class and contains
  1574. all the members which resided in ISecurityChannelSource.
  1575. Now it takes more constructor params.
  1576. Made dependent changes on all sources above.
  1577. 2) Added SecurityTokenAuthenticator creation in
  1578. SecurityRequestChannel (SecurityOutputChannel should do the same).
  1579. 2006-09-27 Atsushi Enomoto <[email protected]>
  1580. * SecurityRequestChannel.cs : ongoing improvements on conditional
  1581. key creation. Actually there must be some part that creates an
  1582. authenticator (WinFX does that).
  1583. 2006-09-27 Ankit Jain <[email protected]>
  1584. Add suport for handling .svc files.
  1585. * SvcHttpHandlerFactory.cs: New.
  1586. * SvcHttpHandler.cs: New.
  1587. * HttpChannelListener.cs (PopulateChannel): Use AspNetReplyChannel if in
  1588. asp.net environment.
  1589. (OnOpen): Do nothing in asp.net environment.
  1590. (OnClose): Likewise.
  1591. * HttpReplyChannel.cs (HttpRequestContext): Move to ..
  1592. * HttpRequestContext.cs: .. here.
  1593. * AspNetReplyChannel.cs: New.
  1594. * AspNetRequestContext.cs: New.
  1595. 2006-09-26 Atsushi Enomoto <[email protected]>
  1596. * MessageSecurityUtility.cs :
  1597. Significantly rewritten decryption parts to respect ReferenceList
  1598. to decrypt (so no workaround anymore).
  1599. Now e:ReferenceList inside o:Security is treated as the referenced
  1600. EncryptedType items are encrypted by 1) the derived key which is
  1601. immediately in front of it, or 2) the default key (it is according
  1602. to WS-SecureConversation section 9.1). Thus removed immediately
  1603. previous hack to auto-fill wsu:Id attributes.
  1604. On securing a message, generate correct Id and add DataReference
  1605. to ReferenceList properly.
  1606. 2006-09-26 Atsushi Enomoto <[email protected]>
  1607. * WSSecurityMessageHeader.cs : handle ReferenceList. It is being
  1608. practically used.
  1609. 2006-09-26 Atsushi Enomoto <[email protected]>
  1610. * WSSecurityMessageHeader.cs : handle DerivedKeyToken as a header content.
  1611. Actually WSSecurityTokenSerializer should be able to consume it, but after
  1612. spending a lot of time I still cannot successfully read it on WinFX.
  1613. Skip ReferenceList for now.
  1614. * MessageSecurityUtility.cs :
  1615. Replaced some string literals with constants.
  1616. Added some workaround for DerivedKeyToken retrieval.
  1617. WinFX somehow sends incomplete ISO10126 padding which contains
  1618. bigger number than the key size and is rejected by EncryptedXml,
  1619. so added DecryptLax() which processes such ones in PaddingMode.None
  1620. to workaround it (only for cross-connection between mono and winfx).
  1621. Added some incomplete implicit wsu:Id processing.
  1622. Don't try to replace SignedXml with EncryptedData. It is not added
  1623. to the document tree.
  1624. 2006-09-25 Atsushi Enomoto <[email protected]>
  1625. * MessageSecurityUtility.cs : support message signature encryption. Some
  1626. more refactoring.
  1627. 2006-09-22 Atsushi Enomoto <[email protected]>
  1628. * SecurityBindingElement.cs : implement Clone(). Remove some MonoTODOs.
  1629. 2006-09-22 Atsushi Enomoto <[email protected]>
  1630. * MessageSecurityUtility.cs : fix warnings.
  1631. 2006-09-22 Atsushi Enomoto <[email protected]>
  1632. * MessageSecurityUtility.cs : actually there would be more than one
  1633. EncryptedData. Decrypt all.
  1634. 2006-09-22 Atsushi Enomoto <[email protected]>
  1635. * MessageSecurityUtility.cs : supply correct URIs in SecureMessage().
  1636. Use ISO10126 padding mode (it is not required but in manner).
  1637. 2006-09-21 Atsushi Enomoto <[email protected]>
  1638. * MessageSecurityUtility.cs : now that EncryptedXml decryption bug is
  1639. fixed, remove 16 bytes workaround (we still need encryption bugfix in
  1640. that class to make it work fine with mono client).
  1641. Removed buggy lines that reset decryption key to AES.
  1642. Modified GetKey() argument to take EncryptedData/EncryptedKey element.
  1643. * WSSecurityMessageHeader.cs :
  1644. (SecurityTokenReferenceKeyInfo) support LoadXml.
  1645. 2006-09-20 Atsushi Enomoto <[email protected]>
  1646. * TransactionMessageProperty.cs : new file.
  1647. 2006-09-20 Atsushi Enomoto <[email protected]>
  1648. * ChannelPoolSettings.cs, OneWayBindingElement.cs : build fix, as
  1649. gmcs happened to report wrong code.
  1650. 2006-09-19 Atsushi Enomoto <[email protected]>
  1651. * SecurityChannelFactory.cs, SecurityChannelListener.cs :
  1652. .ctor() now requires ChannelProtectionRequirements which will be
  1653. supplied via BindingParameterCollection.
  1654. * SymmetricSecurityBindingElement.cs,
  1655. AsymmetricSecurityBindingElement.cs : thus add
  1656. ChannelProtectionRequirement parameter to factory/listener.
  1657. * SecurityRequestChannel.cs : use recipient token requirement to
  1658. create an encryption token. Thus differentiate the logic from
  1659. signing (initiator) token.
  1660. 2006-09-19 Atsushi Enomoto <[email protected]>
  1661. * SymmetricSecurityChannelFactory.cs, SecurityChannelFactory.cs :
  1662. renamed former to latter.
  1663. * SymmetricSecurityChannelListener.cs, SecurityChannelListener.cs :
  1664. ditto.
  1665. 2006-09-19 Atsushi Enomoto <[email protected]>
  1666. * MessageSecurityBindingSupport.cs : new internal types to commonize
  1667. AsymmetricSecurityBindingElement and SymmetricSecurityBindingElement
  1668. and thus make internal factory and listener reusable.
  1669. * SymmetricSecurityChannelFactory.cs, SecurityRequestContext.cs,
  1670. SecurityRequestChannel.cs, SecurityOutputChannel.cs,
  1671. SymmetricSecurityChannelListener.cs : rewrote dependent parts on
  1672. SymmetricSecurityBindingElement, using the new types above.
  1673. * SymmetricSecurityBindingElement.cs :
  1674. Use SymmetricMessageSecurityBindingSupport.
  1675. * AsymmetricSecurityBindingElement.cs :
  1676. thus implemented, using AsymmetricMessageSecurityBindingSupport.
  1677. 2006-09-19 Atsushi Enomoto <[email protected]>
  1678. * ChannelFactoryBase.cs : more RC1 update.
  1679. 2006-09-19 Atsushi Enomoto <[email protected]>
  1680. * MessageEncoder.cs, BinaryMessageEncoder.cs, MtomMessageEncoder.cs,
  1681. TextMessageEncoder.cs : updated ReadMessage() API to RC1.
  1682. * ChannelListenerBase.cs, ChannelListenerBase_1.cs,
  1683. ChannelBase.cs : RC1 API updates.
  1684. * MessageImpl.cs : implemented Properties.
  1685. * HttpReplyChannel.cs : added HttpRequestMessageProperty support.
  1686. 2006-09-18 Ankit Jain <[email protected]>
  1687. * MessageHeaders.cs (MessageId):
  1688. (RelatesTo): UniqueId is not serializable, serialize it as a string.
  1689. 2006-09-17 Atsushi Enomoto <[email protected]>
  1690. * ChannelParameterCollection.cs : new file.
  1691. * LayeredOutputChannel.cs, SecurityOutputChannel.cs :
  1692. new files for IOutputChannel implementation.
  1693. * OneWayBindingElement.cs : hacky implementation.
  1694. * SymmetricSecurityChannelFactory.cs : support IOutputChannel.
  1695. * MessageSecurityUtility.cs : now create identifier from the security
  1696. token and the token parameters which is added as an argument.
  1697. * SecurityRequestContext.cs,
  1698. SecurityRequestChannel.cs : SecureMessage() argument changes.
  1699. Set MessageSecurityVersion (SecurityTokenVersion) to the token
  1700. requirement.
  1701. 2006-09-17 Atsushi Enomoto <[email protected]>
  1702. * HttpRequestChannel.cs : close the HttpWebRequest.
  1703. 2006-09-17 Atsushi Enomoto <[email protected]>
  1704. * HttpRequestChannel.cs,
  1705. HttpChannelFactory.cs : implement async request/reply.
  1706. * HttpChannelFactory.cs :
  1707. verify factory state when creating a channel.
  1708. 2006-09-17 Atsushi Enomoto <[email protected]>
  1709. * MessageEncoder.cs, TextMessageEncoder.cs, MtomMessageEncoder.cs,
  1710. BinaryMessageEncoder.cs : added message version mismatch check.
  1711. 2006-09-15 Atsushi Enomoto <[email protected]>
  1712. * SymmetricSecurityChannelListener.cs, SecurityRequestContext.cs :
  1713. Making incomplete changes to handle different tokens for encryption
  1714. and signature.
  1715. * SymmetricSecurityChannelFactory.cs, SecurityRequestChannel.cs :
  1716. split channel implementation classes out to the latter file.
  1717. * MessageSecurityUtility.cs : seems like there is
  1718. TimeStampValidityDuration property, so use it (incomplete; a server
  1719. needs another love).
  1720. 2006-09-12 Atsushi Enomoto <[email protected]>
  1721. * MessageSecurityUtility.cs, SymmetricSecurityChannelFactory.cs,
  1722. SecurityRequestContext.cs : now that we have key identifier clause
  1723. and working ResolveKeyIdentifierClause(), just create keys inside
  1724. SecureMessage(). Add KeyInfo to the xmldsig.
  1725. 2006-09-12 Atsushi Enomoto <[email protected]>
  1726. * SymmetricSecurityChannelFactory.cs, SecurityRequestContext.cs :
  1727. pass SecurityKeyIdentifierClause to SecureMessage().
  1728. * SecurityBindingElement.cs : set X509ReferenceStyle as Thumbprint
  1729. for IssuedToken binding element.
  1730. * SymmetricSecurityChannelListener.cs : removed hack to just create
  1731. X509 security token, and implemented correct token creation.
  1732. * WSSecurityMessageHeader.cs : added new KeyInfoClause type that
  1733. wraps SecurityTokenReference element.
  1734. * MessageSecurityUtility.cs : use the above.
  1735. 2006-09-08 Atsushi Enomoto <[email protected]>
  1736. * MessageSecurityUtility.cs : raise MessageSecurityException when it
  1737. could not find a security header.
  1738. * SymmetricSecurityChannelFactory.cs : now it also supports
  1739. IRequestSessionChannel. Extracted SecurityRequestChannel out from
  1740. the factory type.
  1741. 2006-09-08 Atsushi Enomoto <[email protected]>
  1742. * SecurityRequestContext.cs : moved securing message part to
  1743. MessageSecurityUtility.cs.
  1744. * MessageSecurityUtility.cs : the change above.
  1745. use DateTime.Now for timestamp basis. Don't append signature to
  1746. the document. Instead it is added to the header. Capture body
  1747. content instead of the body itself.
  1748. * SymmetricSecurityChannelFactory.cs : decrypt reply message to
  1749. be processed by upper layers.
  1750. 2006-09-08 Atsushi Enomoto <[email protected]>
  1751. * MessageSecurityUtility.cs, WSSecurityMessageHeader.cs,
  1752. SymmetricSecurityChannelListener.cs,
  1753. SymmetricSecurityChannelFactory.cs, SecurityRequestContext.cs :
  1754. more refactoring. Request serialization became much more conformant
  1755. and add required header items.
  1756. Security Token retrieval is needed to send it in the request.
  1757. Fixed wrong key encryption.
  1758. 2006-09-07 Atsushi Enomoto <[email protected]>
  1759. * SecurityRequestContext.cs : the workaround was not functional.
  1760. 2006-09-07 Atsushi Enomoto <[email protected]>
  1761. * SecurityRequestContext.cs : some more refactoring. Use EncryptedXml
  1762. API, especially ReplaceData(), instead of native crypto stuff.
  1763. * WSSecurityMessageHeader.cs : handle dsig:Signature as well (for
  1764. MessageProtectionOrder.SignBeforeEncrypt).
  1765. 2006-09-07 Atsushi Enomoto <[email protected]>
  1766. * SecurityRequestContext.cs : label should be combined of both
  1767. the client's and the server's.
  1768. 2006-09-06 Atsushi Enomoto <[email protected]>
  1769. * SecurityRequestContext.cs : enable key derivation (though for now
  1770. GenerateDerivedKey() is unimplemented). Create meaningful,
  1771. decrypted request message to be consumed by the upper layer.
  1772. 2006-09-06 Atsushi Enomoto <[email protected]>
  1773. * SecurityRequestContext.cs : implement Close() and Reply().
  1774. ongoing implementation of Reply(TimeSpan).
  1775. * MessageSecurityUtility.cs : new file to collect utility methods.
  1776. * SymmetricSecurityChannelFactory.cs : moved securing message code
  1777. to the above file.
  1778. * SymmetricSecurityChannelListener.cs : tiny renaming.
  1779. 2006-09-06 Atsushi Enomoto <[email protected]>
  1780. * SecurityRequestContext.cs : security header is also stored.
  1781. removed NotImpl.
  1782. * WSSecurityMessageHeader.cs : read EncryptedKey and EncryptedData
  1783. as well.
  1784. 2006-09-06 Atsushi Enomoto <[email protected]>
  1785. * SymmetricSecurityChannelFactory.cs : tiny progress on securing
  1786. message.
  1787. 2006-09-05 Atsushi Enomoto <[email protected]>
  1788. * SymmetricSecurityChannelFactory.cs : specify KeyUsage.Exchange
  1789. so that it retrieves the security key in that manner.
  1790. 2006-09-05 Atsushi Enomoto <[email protected]>
  1791. * Binding.cs : MessageVersion is null when there is no
  1792. MessageEncodingBindingElement.
  1793. * Message.cs : null arg check.
  1794. 2006-09-05 Atsushi Enomoto <[email protected]>
  1795. * ChannelPoolSettings.cs, OneWayBindingElement.cs : new files.
  1796. 2006-09-04 Atsushi Enomoto <[email protected]>
  1797. * SymmetricSecurityChannelListener.cs, SecurityRequestContext.cs,
  1798. LayeredReplyChannel.cs, LayeredCommunicationObject.cs,
  1799. LayeredRequestChannel.cs : some refactoring.
  1800. * SymmetricSecurityChannelFactory.cs :
  1801. ongoing secure message creation implementation.
  1802. 2006-09-01 Atsushi Enomoto <[email protected]>
  1803. * SymmetricSecurityBindingElement.cs :
  1804. pass specific ServiceCredentialsSecurityTokenManager type to
  1805. SymmetricSecurityChannelListener as it needs ServiceCertificate.
  1806. * SymmetricSecurityChannelListener.cs :
  1807. get service certificate. It's a temporary hack.
  1808. Move RequestContext code to below.
  1809. * SecurityRequestContext.cs : new file.
  1810. * WSSecurityMessageHeader.cs : implementing Read(), but to finish
  1811. it I have to finish decryption of the incoming message.
  1812. 2006-08-31 Atsushi Enomoto <[email protected]>
  1813. * MessageImpl.cs : don't write attributes on the first body content
  1814. element *on soap Body element*.
  1815. * MessageBufferImpl.cs : don't throw ArgumentNullException.
  1816. ObjectDisposedException is appropriate.
  1817. * MessageHeader.cs : (RawMessageHeader) don't write element itself
  1818. in OnWriteHeader*Contents*().
  1819. 2006-08-31 Atsushi Enomoto <[email protected]>
  1820. * WSSecurityMessageHeader.cs : new file.
  1821. * SymmetricSecurityChannelFactory.cs :
  1822. moved WSSecurityHeader and related types to the above.
  1823. * SymmetricSecurityChannelListener.cs :
  1824. reject SOAP-env-less message.
  1825. 2006-08-31 Atsushi Enomoto <[email protected]>
  1826. * SecurityChannelListener.cs, SymmetricSecurityChannelListener.cs :
  1827. renamed former to latter.
  1828. * SymmetricSecurityChannelFactory.cs :
  1829. create requirements every time. It is also likely that I need
  1830. another requirement instance to get service credentials here.
  1831. 2006-08-30 Atsushi Enomoto <[email protected]>
  1832. * SymmetricSecurityBindingElement.cs : make BuildChannelListener()
  1833. similar to BuildChannelFactory() (set credentials, issuer binding
  1834. context etc.).
  1835. * SecurityChannelListener.cs :
  1836. more ongoing security support implementation.
  1837. * SymmetricSecurityChannelFactory.cs :
  1838. moved GetSecurityKey() to SymmetricSecurityRequestChannel.
  1839. 2006-08-29 Atsushi Enomoto <[email protected]>
  1840. * SecurityChannelListener.cs, SymmetricSecurityBindingElement.cs :
  1841. Renamed SecurityChannelListener to SymmetricSecurityChannelListener.
  1842. Implementation is underway.
  1843. * LayeredReplyChannel.cs :
  1844. like LayeredRequestChannel, use ChannelListenerBase to provide
  1845. default timeouts.
  1846. 2006-08-29 Atsushi Enomoto <[email protected]>
  1847. * MessageHeader.cs : added another implementation type that uses
  1848. XmlElement, for buffering purpose.
  1849. * MessageImpl.cs : Header item types are user-driven by
  1850. MessageHeader.GetHeader<T>(int), so at storing phase just store
  1851. nodes as XmlElement.
  1852. * MessageHeaders.cs : avoid dumping XmlNode to string to create
  1853. another XmlReader.
  1854. 2006-08-28 Atsushi Enomoto <[email protected]>
  1855. * SymmetricSecurityBindingElement.cs : find ClientCredentials from
  1856. BindingParameterCollection, not from binding element properties.
  1857. 2006-08-28 Atsushi Enomoto <[email protected]>
  1858. * SecurityChannelFactory.cs, SymmetricSecurityChannelFactory.cs :
  1859. renamed former to latter.
  1860. 2006-08-25 Atsushi Enomoto <[email protected]>
  1861. * SecurityBindingElement.cs : SetIssuerBindingContext should also
  1862. work for SslSecurityTokenParameters.
  1863. 2006-08-24 Atsushi Enomoto <[email protected]>
  1864. * SecurityBindingElement.cs :
  1865. Added SetIssuerBindingContextIfRequired().
  1866. * SecurityChannelFactory.cs :
  1867. Changed .ctor() arg again, just to receive binding element.
  1868. * SymmetricSecurityBindingElement.cs :
  1869. Call SetIssuerBindingContextIfRequired() in BuildChannelFactory().
  1870. SymmetricSecurityChannelFactory .ctor() arg changes.
  1871. "ProtectionTokenParameters" is not passed now.
  1872. 2006-08-23 Atsushi Enomoto <[email protected]>
  1873. * SymmetricSecurityBindingElement.cs : requirements should be
  1874. filled at InitializeSecurityTokenParameters as long as possible.
  1875. SymmetricSecurityChannelFactory<T> now does not receive
  1876. requirements (it now creates one inside it) at .ctor().
  1877. * SecurityChannelFactory.cs : remove requirement argument.
  1878. 2006-08-23 Atsushi Enomoto <[email protected]>
  1879. * SymmetricSecurityBindingElement.cs : implemented copy constructor.
  1880. 2006-08-22 Atsushi Enomoto <[email protected]>
  1881. * SymmetricSecurityBindingElement.cs :
  1882. MessageSecurityVersion property is of type SecurityTokenVersion.
  1883. * SecurityBindingElement.cs :
  1884. Implemented CreateSecureConversationBindingElement().
  1885. For CreateIssuedTokenBindingElement(), ProtectionTokenParameters is
  1886. the argument IssuedSecurityTokenParameters itself.
  1887. 2006-08-22 Atsushi Enomoto <[email protected]>
  1888. * SymmetricSecurityBindingElement.cs :
  1889. CreateSecurityTokenManager() can be directly used now.
  1890. Use CallInitializeSecurityTokenRequirement() to fill requirement
  1891. properties.
  1892. 2006-08-16 Atsushi Enomoto <[email protected]>
  1893. * ChannelFactoryBase.cs : GetProperty() is virtual.
  1894. 2006-08-14 Atsushi Enomoto <[email protected]>
  1895. * SymmetricSecurityBindingElement.cs : in BuildChannelFactory(),
  1896. create token manager, token parameters and token requirements,
  1897. and fill some requirements.
  1898. * TransportBindingElement.cs, HttpTransportBindingElement.cs,
  1899. TextMessageEncodingBindingElement.cs : workaround to not throw NIE.
  1900. * BindingContext.cs : implemented RemainingBindingElements.
  1901. kill "no remaining binding element" error in GetInnerProperty()
  1902. * SecurityChannelFactory.cs : now it became
  1903. SymmetricSecurityChannelFactory, thus soon to be renamed.
  1904. Several ongoing actual security resolution is on.
  1905. 2006-08-11 Atsushi Enomoto <[email protected]>
  1906. * CommunicationObject.cs :
  1907. add GetCommunicationObjectType() and use it.
  1908. * ChannelFactoryBase.cs, ChannelListenerBase_1.cs :
  1909. use ThrowIfDisposedOrNotOpen().
  1910. * LayeredCommunicationObject.cs : have similar ThrowIf...() methods
  1911. to CommunicationObject. Make it IDisposable.
  1912. * LayeredRequestChannel.cs : use above.
  1913. * SecurityChannelFactory.cs : removed state check as it is done at
  1914. above class.
  1915. 2006-08-10 Atsushi Enomoto <[email protected]>
  1916. * SecurityBindingElement.cs : (CanBuildChannelFactory and
  1917. CanBuildChannelListener) directly dispatch to BindingContext.
  1918. * SymmetricSecurityBindingElement.cs : require protection token
  1919. parameters before building a channel or a listener.
  1920. * ChannelFactoryBase.cs : raise an error when a channel is being
  1921. created without opening the factory.
  1922. * ChannelListenerBase_1.cs : ditto for the listener.
  1923. * SecurityChannelFactory.cs : before sending a request, it must be
  1924. opened.
  1925. 2006-08-07 Atsushi Enomoto <[email protected]>
  1926. * MessageBufferImpl.cs : initialize fields.
  1927. workaround BufferSize just to return 0.
  1928. * MessageImpl.cs : for BodyWriter, don't use DefaultMessageBuffer
  1929. which does not support multi time write.
  1930. * Message.cs : implemented State.
  1931. 2006-08-07 Atsushi Enomoto <[email protected]>
  1932. * Message.cs : OnGetBodyAttribute() cannot return anything unless it
  1933. is consuming XmlReader.
  1934. Implemented OnCreateBufferedCopy(), to return XPathMessageBuffer.
  1935. * MessageBuffer.cs : implemented CreateNavigator().
  1936. * MessageBufferImpl.cs : added XPathMessageBuffer class.
  1937. I kinda know that MS heavily depends on binary XmlReader and may have
  1938. XPathNavigator implementation based on the binary stuff, but at
  1939. least for now we have almost no motivation to mimick it.
  1940. 2006-08-07 Atsushi Enomoto <[email protected]>
  1941. * SecurityChannelFactory.cs : a bit more of security header code.
  1942. 2006-08-04 Atsushi Enomoto <[email protected]>
  1943. * SymmetricSecurityBindingElement.cs :
  1944. set default MessageProtectionOrder in every construction.
  1945. 2006-08-03 Atsushi Enomoto <[email protected]>
  1946. * LayeredRequestChannel.cs, SecurityChannelFactory.cs :
  1947. changed to require ChannelFactoryBase to support default timeout.
  1948. Made some methods non-virtual. Preparing code to add security
  1949. headers (empty yet).
  1950. * SecurityBindingElement.cs : implemented several factory methods
  1951. that return SymmetricSecurityBindingElement.
  1952. 2006-08-02 Atsushi Enomoto <[email protected]>
  1953. * IStreamUpgradeBindingElement.cs,
  1954. StreamUpgradeBindingElement.cs : renamed from former to latter.
  1955. 2006-08-02 Atsushi Enomoto <[email protected]>
  1956. * IStreamUpgradeBindingElement.cs : API update, soon to be renamed.
  1957. 2006-07-31 Ankit Jain <[email protected]>
  1958. * MessageHeaders.cs (From): Use Constants.WSA1
  1959. (MessageId): Implement the same pattern as other properties (From etc).
  1960. 2006-07-28 Atsushi Enomoto <[email protected]>
  1961. * LocalClientSecuritySettings.cs : initialize IdentityVerifier as well.
  1962. * SecurityBindingElement.cs : some cosmetic changes.
  1963. 2006-07-28 Atsushi Enomoto <[email protected]>
  1964. * SecurityBindingElement.cs : LocalClientSettings and
  1965. LocalServiceSettings returns an instance for each.
  1966. * LocalClientSecuritySettings.cs : initialized fields.
  1967. 2006-07-28 Atsushi Enomoto <[email protected]>
  1968. * LocalClientSecuritySettings.cs : moved from S.SM.Description, and
  1969. kinda implemented Clone() just with MemberwiseClone().
  1970. 2006-07-27 Ankit Jain <[email protected]>
  1971. * MessageHeaders.cs (set_To): Use Uri.AbsoluteUri .
  1972. * MessageHeader.cs (knownTypes): New. Known type array containing
  1973. EndpointAddress10.
  1974. (CreateHeader): Use knownTypes with the DataContractSerializer .ctor
  1975. 2006-07-21 Atsushi Enomoto <[email protected]>
  1976. * LayeredRequestChannel.cs, LayeredReplyChannel.cs,
  1977. LayeredCommunicationObject.cs,
  1978. SecurityChannelFactory.cs, SecurityChannelListener.cs :
  1979. new files to support security channels, though right now they
  1980. just pass inner channels through.
  1981. * SymmetricSecurityBindingElement.cs : use above.
  1982. 2006-07-21 Atsushi Enomoto <[email protected]>
  1983. * AsymmetricSecurityBindingElement.cs,
  1984. SymmetricSecurityBindingElement.cs :
  1985. Default SecurityTokenParameters is null.
  1986. 2006-07-20 Atsushi Enomoto <[email protected]>
  1987. * AsymmetricSecurityBindingElement.cs : remove NotImpl for now.
  1988. 2006-07-20 Atsushi Enomoto <[email protected]>
  1989. * Message.cs : When EnvelopeVersion is None, don't write SOAP
  1990. envelope.
  1991. * MessageHeader.cs : don't write headers when EnvelopeVersion is None.
  1992. * MessageHeaders.cs : When EnvelopeVersion is None, don't output
  1993. headers. When AddressingVersion is None, don't output addressing
  1994. headers as well, except for Action which is still needed by
  1995. service dispatcher.
  1996. 2006-07-20 Atsushi Enomoto <[email protected]>
  1997. * MessageHeaders.cs : changed specific properties to find it from
  1998. headers as Action property does (local variables won't be set by
  1999. setter). Cache serializers. Check null serializer arguments.
  2000. For EndpointAddress, GetHeader<T>() shouldn't use serializer.
  2001. 2006-07-19 Atsushi Enomoto <[email protected]>
  2002. * MessageHeader.cs : WriteTo() should treat EndpointAddress to not
  2003. use XmlObjectSerializer (since it is not data contract type).
  2004. 2006-07-18 Atsushi Enomoto <[email protected]>
  2005. * MessageImpl.cs : Improved ReadHeaders().
  2006. For certain header items, use EndpointAddress.ReadFrom().
  2007. 2006-07-18 Atsushi Enomoto <[email protected]>
  2008. * AsymmetricSecurityBindingElement.cs :
  2009. it is not ISecurityCapabilities anymore.
  2010. 2006-07-18 Atsushi Enomoto <[email protected]>
  2011. * MessageVersion.cs : added None.
  2012. 2006-07-14 Atsushi Enomoto <[email protected]>
  2013. * Message.cs : GetReaderAtBodyContents() implementation using
  2014. writer methods.
  2015. 2006-07-13 Atsushi Enomoto <[email protected]>
  2016. * Message.cs : CreateMessage(version,action,xmlReader) incorrectly
  2017. used MessageVersion.Default.
  2018. 2006-07-12 Duncan Mak <[email protected]>
  2019. * MessageBuffer.cs (MessageContentType): Return
  2020. "application/soap+msbin1".
  2021. * MessageImpl.cs (EmptyMessage.OnCreateBufferedCopy):
  2022. (SimpleMessage.OnCreateBufferedCopy):
  2023. (XmlReaderMessage.OnCreateBufferedCopy): Hook up with the new
  2024. MessageBuffer implementations.
  2025. * MessageBufferImpl.cs: Concrete implmentations for MessageBuffer.
  2026. (DefaultMessageBuffer): Used by EmptyMessage and SimpleMessage.
  2027. (XmlReaderMessageBuffer): Used by XmlReaderMessage.
  2028. 2006-07-12 Atsushi Enomoto <[email protected]>
  2029. * MessageImpl.cs : Action should be added in request messages. Omit
  2030. it only in reply message, thus moved to dispatcher logic.
  2031. 2006-07-12 Ankit Jain <[email protected]>
  2032. * HttpRequestChannel.cs (HttpRequestChannel.Request): Workaround for a
  2033. bug in WebConnectionStream.
  2034. * MessageHeaders.cs (MessageHeaders.From):
  2035. (MessageHeaders.ReplyTo):
  2036. (MessageHeaders.To): Add the corresponding MessageHeader on set.
  2037. 2006-07-11 Atsushi Enomoto <[email protected]>
  2038. * MessageImpl.cs : when AddressingVersion is None (e.g. POX), don't
  2039. add SOAP Action to the response at any time.
  2040. 2006-07-10 Atsushi Enomoto <[email protected]>
  2041. * SymmetricSecurityBindingElement.cs,
  2042. SecurityBindingElement.cs : They are not ISecurityCapabilities now.
  2043. Implemented .ctor() and some properties.
  2044. 2006-07-10 Atsushi Enomoto <[email protected]>
  2045. * TransactionFlowBindingElement.cs : new file.
  2046. * HttpTransportBindingElement.cs : added missing KeepAliveEnabled.
  2047. 2006-07-06 Atsushi Enomoto <[email protected]>
  2048. * MessageFault.cs :
  2049. DefaultAction vanished. CreateFault() now takes bufferSize arg.
  2050. * MessageHeaders.cs : ArgumentException -> MessageHeaderException.
  2051. * AddressingVersion.cs : added None. Equals() and GetHashCode()
  2052. vanished (there is anyways no way to instantiate this type).
  2053. * MessageVersion.cs : added Soap11 and Soap12.
  2054. * TextMessageEncoder.cs : silly quotation mark wrapper disappeared
  2055. in June CTP. goodie.
  2056. 2006-07-05 Atsushi Enomoto <[email protected]>
  2057. * MtomMessageEncoder.cs, BinaryMessageEncoder.cs, Message.cs :
  2058. removed some vanished CreateMessage() overloads.
  2059. 2006-07-05 Atsushi Enomoto <[email protected]>
  2060. * CustomBinding.cs, HttpsTransportBindingElement.cs,
  2061. HttpTransportBindingElement.cs :
  2062. They are not ISecurityCapabilities anymore.
  2063. Modified code to match June CTP behavior.
  2064. 2006-07-05 Atsushi Enomoto <[email protected]>
  2065. * StreamSecurityUpgradeProvider.cs : Identity -> EndpointIdentity.
  2066. 2006-07-05 Atsushi Enomoto <[email protected]>
  2067. * EmptyFaultException.cs : removed unused code.
  2068. * IRequestContext.cs, RequestContext.cs : renamed former to latter.
  2069. 2006-07-05 Atsushi Enomoto <[email protected]>
  2070. * LayeredChannelFactory.cs : removed obsolete class.
  2071. * ChannelFactoryBase.cs, HttpChannelFactory.cs,
  2072. ChannelListenerBase.cs, HttpChannelListener.cs,
  2073. HttpReplyChannel.cs, ChannelManagerBase.cs :
  2074. all those changes were brought by ChannelManagerBase changes.
  2075. 2006-07-05 Atsushi Enomoto <[email protected]>
  2076. * ReplyChannelBase.cs, HttpChannelFactory.cs, ChannelBase.cs
  2077. CommunicationObject.cs, HttpChannelListener.cs,
  2078. ChannelFactoryBase.cs :
  2079. CommunicationObject abstract changes brought this madness.
  2080. 2006-07-05 Atsushi Enomoto <[email protected]>
  2081. * BindingContext.cs : listenUri address parameters could be null in
  2082. June CTP.
  2083. 2006-07-05 Atsushi Enomoto <[email protected]>
  2084. * IRequestContext.cs :
  2085. Now it became a class. File renaming will follow soon.
  2086. * IChannelFactory.cs, IInputChannel.cs, IReplyChannel.cs,
  2087. IDuplexChannel.cs, IDuplexSessionChannel.cs,
  2088. IOutputChannel.cs, IOutputSessionChannel.cs,
  2089. IRequestChannel.cs, IRequestSessionChannel.cs :
  2090. They are not IDisposable anymore.
  2091. For IReplyChannel, IRequestContext -> RequestContext.
  2092. * IChannelListener.cs : removed Identity. Added GetProperty().
  2093. * ChannelListenerBase.cs, ChannelListenerBase.cs,
  2094. ReplyChannelBase.cs, HttpReplyChannel.cs :
  2095. Several members disappeared, and dependent changes.
  2096. * HttpTransportBindingElement.cs,
  2097. HttpChannelListener.cs, :
  2098. ChannelListenerBase.SharedChannelListener vanished.
  2099. 2006-07-05 Atsushi Enomoto <[email protected]>
  2100. * MessageEncodingBindingElement.cs
  2101. MtomMessageEncodingBindingElement.cs,
  2102. TextMessageEncodingBindingElement.cs,
  2103. BinaryMessageEncodingBindingElement.cs :
  2104. June CTP updates: AddressingVersion -> MessageVersion.
  2105. * Binding.cs : June CTP. MessageVersion is added.
  2106. * ChannelBase.cs, BindingContext.cs, IChannel.cs
  2107. ChannelListenerBase_1.cs,
  2108. ChannelListenerBase.cs, IChannelListener.cs,
  2109. IChannelFactory.cs,
  2110. ChannelFactoryBase.cs, ChannelManagerBase.cs :
  2111. June CTP. Several interface changes.
  2112. * HttpTransportBindingElement.cs : June CTP. HttpMappingMode is gone.
  2113. * IChannelManager.cs, LayeredChannelListener.cs,
  2114. GenericWrapperChannelFactory.cs,
  2115. GenericWrapperChannelListener.cs : They are not used anymore.
  2116. 2006-07-04 Atsushi Enomoto <[email protected]>
  2117. * MtomMessageEncoder.cs, BinaryMessageEncoder.cs :
  2118. sync fix with June CTP API updates.
  2119. 2006-07-03 Ankit Jain <[email protected]>
  2120. * MessageEncodingBindingElementConverter.cs:
  2121. * StandardBindingConverter.cs:
  2122. * TransportBindingElementConverter.cs:
  2123. * TransactionFlowBindingElementConverter.cs:
  2124. * ReliableSessionBindingElementConverter.cs:
  2125. * SecurityBindingElementConverter.cs:
  2126. Rename *Converter.cs to *Importer.cs
  2127. * TransferMode.cs: Move to System.ServiceModel
  2128. 2006-06-22 Atsushi Enomoto <[email protected]>
  2129. * CommunicationObject.cs : make sure to change State before
  2130. OnClosing/OnClosed/OnOpening/OnOpened when they are overriden.
  2131. 2006-06-20 Atsushi Enomoto <[email protected]>
  2132. * Message.cs : output WSAddressing xmlns only when Action is
  2133. specified (To should be affected, but seems like it is ignored).
  2134. 2006-06-20 Atsushi Enomoto <[email protected]>
  2135. * MessageImpl.cs : don't set Action when it is null.
  2136. 2006-06-12 Ankit Jain <[email protected]>
  2137. * TransportBindingElementConverter.cs (ImportEndpoint): Implement.
  2138. 2006-05-29 Atsushi Enomoto <[email protected]>
  2139. * SecurityBindingElement.cs, SecurityBindingElementConverter.cs :
  2140. some updated API fixes.
  2141. 2006-05-29 Atsushi Enomoto <[email protected]>
  2142. * EnvelopeVersion.cs : moved back to S.SM.
  2143. 2006-05-29 Atsushi Enomoto <[email protected]>
  2144. * IBindingManualAddressing.cs : vanished in beta2.
  2145. * HostedTransportConfiguration.cs, EnvelopeVersion.cs,
  2146. LocalClientSecuritySettings.cs, LocalServiceSecuritySettings.cs :
  2147. namespace changes.
  2148. * SecurityBindingElement.cs :
  2149. SecurityStandardsManager -> SecurityTokenSerializer.
  2150. 2006-05-29 Atsushi Enomoto <[email protected]>
  2151. * XmlSerializerBodyWriter.cs : new file to handle
  2152. TypedMessageConverter.ToMessage().
  2153. 2006-04-26 Ankit Jain <[email protected]>
  2154. * TransportBindingElementConverter.cs (BeforeImport): Remove
  2155. NotImplementedException.
  2156. (ImportContract): Likewise.
  2157. * CustomBinding.cs (.ctor): Use scheme from the binding parameter.
  2158. 2006-04-14 Atsushi Enomoto <[email protected]>
  2159. * HttpRequestChannel.cs, HttpChannelFactory.cs : message encoder
  2160. being used was not reflecting that of Binding elements.
  2161. 2006-04-07 Atsushi Enomoto <[email protected]>
  2162. * HttpReplyChannel.cs : when SOAP action is not set as a header item,
  2163. just assume that it is in the message.
  2164. 2006-04-06 Atsushi Enomoto <[email protected]>
  2165. * HttpReplyChannel.cs : actually HTTP header item might be null.
  2166. 2006-04-06 Atsushi Enomoto <[email protected]>
  2167. * HttpReplyChannel.cs : under SOAP 1.1 SOAP Action is sent as HTTP
  2168. header.
  2169. 2006-04-06 Atsushi Enomoto <[email protected]>
  2170. * TextMessageEncoder.cs : for SOAP 1.1 content type is text/xml.
  2171. 2006-04-06 Atsushi Enomoto <[email protected]>
  2172. * MessageFault.cs : Fixed SOAP12 reason output.
  2173. 2006-04-05 Atsushi Enomoto <[email protected]>
  2174. * HttpReplyChannel.cs : no need to set response ContentEncoding since
  2175. MessageEncoder.ContentType explicitly contains encoding.
  2176. * AddressingVersion.cs : added ActionNotSupported property. Not sure
  2177. if it is SOAP version dependent.
  2178. 2006-03-23 Atsushi Enomoto <[email protected]>
  2179. * HttpReplyChannel.cs : actually I could just workaround bug #77816.
  2180. 2006-03-16 Atsushi Enomoto <[email protected]>
  2181. * HttpChannelFactory.cs BindingContext.cs
  2182. HttpChannelListener.cs HttpTransportBindingElement.cs :
  2183. Now BindingContext holds MessageEncoder, and non-custom
  2184. channel factory/listener should use it.
  2185. * MtomMessageEncodingBindingElement.cs
  2186. TextMessageEncodingBindingElement.cs
  2187. BinaryMessageEncodingBindingElement.cs : BuildChannelFactory()/
  2188. -Listener() now sets internal BindingContext.MessageEncoder.
  2189. Fixed some public API.
  2190. 2006-03-15 Atsushi Enomoto <[email protected]>
  2191. * BindingContext.cs : CanBuildChannelXXX() should not raise error
  2192. for insufficient elements.
  2193. * DispatchRuntime.cs : OperationDescription name is not action. So
  2194. OperationSelector is created by name, not by action.
  2195. * TextMessageEncodingBindingElement.cs : Feb. CTP API fixes.
  2196. 2006-03-14 Atsushi Enomoto <[email protected]>
  2197. * MessageFaultBodyWriter.cs
  2198. XmlReaderBodyWriter.cs
  2199. XmlObjectSerializerBodyWriter.cs : made internal.
  2200. * SecurityBindingElement.cs
  2201. AsymmetricSecurityBindingElement.cs
  2202. SymmetricSecurityBindingElement.cs : API fixes.
  2203. * TransportBindingElementConverter.cs : ditto.
  2204. * TextMessageEncodingBindingElement.cs : added set_AddressingVersion.
  2205. * WindowsStreamSecurityBindingElement.cs
  2206. SslStreamSecurityBindingElement.cs
  2207. TransportSecurityBindingElement.cs : new files.
  2208. 2006-03-14 Atsushi Enomoto <[email protected]>
  2209. * MessageImpl.cs : according to the W3C REC, mustUnderstand when
  2210. reading can be any xs:boolean value.
  2211. 2006-03-14 Atsushi Enomoto <[email protected]>
  2212. * Message.cs MessageImpl.cs : more sorting out the role of each
  2213. write method.
  2214. * MessageHeader.cs : use envelope namespace, not addressing namespace.
  2215. 2006-03-14 Atsushi Enomoto <[email protected]>
  2216. * Message.cs : don't write body contents if it is empty.
  2217. Moved WriteStartElement(,"Header",) to OnWriteStartHeaders().
  2218. * MessageImpl.cs : implemented XmlReaderMessage.OnWriteBodyContents().
  2219. * TextMessageEncoder.cs : WriteMessage() should close XmlWriter.
  2220. * HttpRequestChannel.cs : close request stream before GetResponse().
  2221. 2006-03-13 Atsushi Enomoto <[email protected]>
  2222. * TextMessageEncoderFactory.cs
  2223. TextMessageEncoder.cs : encoder does not hold reference to the
  2224. factory anymore. Use MessageVersion property in CreateMssage().
  2225. * HttpChannelListener.cs : now it holds message encoder.
  2226. * HttpReplyChannel.cs : now it uses listener's shared message encoder.
  2227. * MessageImpl.cs : header is optional.
  2228. * EnvelopeVersion.cs : namespace URI is missing.
  2229. 2006-03-10 Atsushi Enomoto <[email protected]>
  2230. * CustomBinding.cs : removed Initialize().
  2231. * Message.cs : renamed ForwardingMessage -> XmlReaderMessage.
  2232. * MessageImpl.cs : renamed ForwardingMessage to XmlReaderMessage (used
  2233. by Message.CreateMessage(MessageVersion,XmlReader,int) and
  2234. implemented Headers, IsEmpty and GetReaderAtBodyContents().
  2235. 2006-03-08 Atsushi Enomoto <[email protected]>
  2236. * MessageHeaders.cs : implemented GetReaderAtHeader() and Action (it
  2237. could be also added by Add() method and could be reset by Remove()).
  2238. * MessageImpl.cs : implemented more. As noted above, Now we don't
  2239. have to add Action header explicitly.
  2240. * MessageHeader.cs : recovered Writer methods and ToString() from
  2241. commented old version. Use prefixes for writing.
  2242. Use WriteObjectContent() rather than WriteObject() (it needs
  2243. DataContractSerializer fix btw).
  2244. 2006-03-08 Atsushi Enomoto <[email protected]>
  2245. * MessageHeader.cs : added missing IsReferenceParameter.
  2246. * MessageHeaderInfo.cs : added missing IsReferenceParameter.
  2247. * MessageHeaders.cs : avoid NullRef when actors is null.
  2248. * MessageImpl.cs : (MessageImplBase) add Action header in .ctor().
  2249. (ForwardingMessage) reader consumer is being added (not done).
  2250. * MtomMessageEncodingBindingElement.cs : simply use Mtom factory.
  2251. * MtomMessageEncoder.cs : updated ContentType value to Feb. CTP.
  2252. * HttpRequestChannel.cs : this channel automatically call Open()
  2253. when Request() is called. Set content length for request.
  2254. Use MessageEncoder's ContentType to also handle charset.
  2255. 2006-03-07 Atsushi Enomoto <[email protected]>
  2256. * MessageImpl.cs : make them internal.
  2257. * HttpReplyChannel.cs : set HttpListenerResponse properties correctly.
  2258. 2006-03-07 Atsushi Enomoto <[email protected]>
  2259. * ChannelManagerBase.cs : cleanup MonoTODO and unused field.
  2260. * HttpChannelListener.cs : removed commented line.
  2261. * RequestChannelBase.cs : new base class for request channel classes.
  2262. * ChannelListenerBase.cs : OnEndClose() is rather NotImplemented yet.
  2263. * HttpReplyChannel.cs : WaitHandle accepts limited timeout value.
  2264. * Message.cs : default IsEmpty and IsFault false by default.
  2265. * LayeredChannelListener.cs : removed Uri (no chance to set).
  2266. * ChannelBase.cs : reimplemented timeout properties.
  2267. * HttpRequestChannel.cs : now it is mostly based on
  2268. RequestChannelBase. Some more attempt to implement Request().
  2269. 2006-03-07 Atsushi Enomoto <[email protected]>
  2270. * Binding.cs CustomBinding.cs : removed OnApplyConfiguration() and
  2271. OnInitialize(). Added more BuildChannelListener() overloads.
  2272. 2006-03-06 Atsushi Enomoto <[email protected]>
  2273. * Binding.cs : added some more missing members especially to support
  2274. listener creation.
  2275. * HttpChannelListener.cs : Uri should not be null.
  2276. * HttpTransportBindingElement.cs : implemented
  2277. CanBuildChannelFactory() and CanBuildChannelListener().
  2278. * ServiceHostBase.cs : make Initialize() practically work at OnOpen().
  2279. 2006-03-06 Atsushi Enomoto <[email protected]>
  2280. * Binding.cs : updated default namespace property value to Feb. CTP.
  2281. 2006-03-03 Atsushi Enomoto <[email protected]>
  2282. * AddressHeader.cs : avoid null reference when value is null.
  2283. * BindingContext.cs : check null ListenUri args.
  2284. 2006-03-03 Atsushi Enomoto <[email protected]>
  2285. * MessageFault.cs : Fixed default action name. Null arg check.
  2286. 2006-03-03 Atsushi Enomoto <[email protected]>
  2287. * BindingElement.cs : Dequeue elements in BindingContext directly.
  2288. * BindingContext.cs : Added GetProperty<T>().
  2289. * GenericWrapperChannelFactory.cs GenericWrapperChannelListener.cs :
  2290. Now we don't need these extra classes, so marked as deprecated.
  2291. 2006-03-03 Atsushi Enomoto <[email protected]>
  2292. * Binding.cs : null arg check.
  2293. * AddressingVersion.cs : fixed constants to pass the tests.
  2294. * BindingElement.cs : tiny meessage fix.
  2295. 2006-03-02 Atsushi Enomoto <[email protected]>
  2296. * MessageEncodingBindingElement.cs
  2297. BinaryMessageEncodingBindingElement.cs
  2298. TextMessageEncodingBindingElement.cs
  2299. MtomMessageEncodingBindingElement.cs
  2300. MessageEncodingBindingElementConverter.cs : several API fixes.
  2301. * BindingElement.cs : now if we use generic wrapper it causes
  2302. infinite loop, so for now replace it with most-possible-but-
  2303. untested logic.
  2304. 2006-03-02 Atsushi Enomoto <[email protected]>
  2305. (back to normal "record-ChangeLogs" mode after the big API change mess)
  2306. * HttpTransportBindingElement.cs : fixed minor API differences.
  2307. 2006-02-23 Atsushi Enomoto <[email protected]>
  2308. * AsymmetricSecurityBindingElement.cs SecurityBindingElement.cs
  2309. SymmetricSecurityBindingElement.cs :
  2310. Dependent fixes for System.IdentityModel reorgainzation.
  2311. 2006-02-23 Atsushi Enomoto <[email protected]>
  2312. * InputChannelBase.cs.notused IInputSession.cs IOutputSession.cs
  2313. IProxyFormatter.cs WSHttpBindingBase.cs
  2314. PnrpPeerResolverBindingElement.cs IMessageHeaderInfo.cs
  2315. MessageInterceptorEventArgs.cs WSHttpBinding.cs
  2316. WSFederationBinding.cs ISessionChannel.cs
  2317. CompositeDuplexBindingElement.cs MessageVersion.cs
  2318. MessageHeader.cs IRequestSessionChannel.cs
  2319. BindingElementCollection.cs IReplySessionChannel.cs
  2320. MessageProperties.cs IDuplexClientChannel.cs
  2321. IInputSessionChannel.cs MessageImpl.cs IDuplexSessionChannel.cs
  2322. TcpTransportBindingElement.cs EmptyFaultException.cs
  2323. IBindingRuntimePreferences.cs AddressHeaderCollection.cs
  2324. IStubFormatter.cs AsymmetricSecurityBindingElement.cs
  2325. ConnectionOrientedTransportBindingElement.cs
  2326. IProxyOperationSelector.cs MessageBuffer.cs IChannel.cs
  2327. PeerResolverBindingElement.cs Message.cs
  2328. HttpsTransportBindingElement.cs BindingElement.cs
  2329. NamedPipetransportBindingElement.cs IBindingManualAddressing.cs
  2330. MessageFaultBodyWriter.cs IReplyChannel.cs
  2331. IBindingCapabilities.cs AddressHeader.cs IInputChannel.cs
  2332. IMessageProperty.cs IOutputChannel.cs NetPeerTcpBinding.cs
  2333. IRequestContext.cs IInputSessionShutdown.cs
  2334. SecurityBindingElement.cs PeerTransportBindingElement.cs
  2335. IDuplexSession.cs IChannelInitializer.cs
  2336. IProxyMessageInspector.cs IChannelListener.cs NetTcpBinding.cs
  2337. AddressingVersion.cs FaultException.cs
  2338. IRequestChannel.cs MtomMessageEncodingBindingElement.cs
  2339. TransportBindingElement.cs BinaryMessageEncodingBindingElement.cs
  2340. TextMessageEncodingBindingElement.cs IChannelFactory.cs Binding.cs
  2341. ITransportBindingElement.cs IChannelManager.cs MessageFault.cs
  2342. MessageHeaders.cs IStubMessageInspector.cs UnderstoodHeaders.cs
  2343. BindingParameterCollection.cs IInstanceProvider.cs
  2344. WSDualHttpBinding.cs ISession.cs IErrorHandler.cs
  2345. MessageEncodingBindingElement.cs HttpTransportBindingElement.cs
  2346. IDuplexChannel.cs CustomBinding.cs IOutputSessionChannel.cs
  2347. MessageContractAttribute.cs SymmetricSecurityBindingElement.cs :
  2348. moved from System.ServiceModel due to the API changes.
  2349. 2006-02-23 Atsushi Enomoto <[email protected]>
  2350. * ChannelFactoryBase.cs ChannelListenerBase.cs HttpChannelFactory.cs
  2351. HttpChannelListener.cs HttpRequestChannel.cs
  2352. LayeredChannelListener.cs PeerMessagePropagationFilter.cs
  2353. PeerNode.cs ReplyChannelBase.cs :
  2354. Feb. CTP API changes - chapter 1.
  2355. 2006-02-15 Atsushi Enomoto <[email protected]>
  2356. * ChannelBase.cs : OnOpen() and OnClosed() do nothing.
  2357. * ReplyChannelBase.cs : now it is based on ChannelBase.
  2358. * ChannelListenerBase_1.cs : use DefaultCommunicationTimeouts.Instance
  2359. and check null argument in .ctor().
  2360. * HttpReplyChannel.cs : several changes.
  2361. Non-async members are mostly implemented.
  2362. * HttpChannelListener.cs : no need to receive
  2363. IDefaultCommunicationTimeouts.
  2364. * HttpRequestChannel.cs : maxSizeOfHeaders is used in MessageHeaders
  2365. to allocate buffer array and int.MaxValue causes OutOfMemory.
  2366. 2006-02-15 Atsushi Enomoto <[email protected]>
  2367. * ClientFramingDecoderState.cs : added missing enum.
  2368. * HttpRequestMessageProperty.cs HttpResponseMessageProperty.cs :
  2369. added missing bits.
  2370. * ChannelBase.cs, LayeredChannelListener.cs : tiny API fixes.
  2371. 2006-02-15 Atsushi Enomoto <[email protected]>
  2372. * HttpChannelListener.cs : Added GetChannels() and OnClose().
  2373. AcceptChannel() has some code now but it needs more love.
  2374. 2006-02-14 Atsushi Enomoto <[email protected]>
  2375. * CommunicationObject.cs : Close() does not call Begin/EndClose().
  2376. * ChannelManagerBase.cs : implemented AbortChannel and CloseChannel.
  2377. * ChannelListenerBase.cs : implemented OnAbort and OnClose.
  2378. 2006-02-10 Atsushi Enomoto <[email protected]>
  2379. * HttpRequestChannel.cs : close the streams.
  2380. * HttpListener.cs
  2381. HttpChannelListener.cs : renamed from former to latter.
  2382. 2006-02-09 Atsushi Enomoto <[email protected]>
  2383. * ReplyChannelBase.cs : new file for IReplyChannel implementations.
  2384. * HttpReplyChannel.cs : new file for HTTP IReplyChannel.
  2385. * HttpListenerFactory.cs : removed obsolete file.
  2386. * HttpListener.cs : hacky WaitForChannel and AcceptChannel.
  2387. * ChannelListenerBase_1.cs : implemented virtual stuff.
  2388. * CommunicationObject.cs : Open() should not call BeginOpen() and
  2389. EndOpen(). Instead, invoke events individually.
  2390. * ChannelListenerBase.cs : its Open() is WaitForChannel().
  2391. 2006-02-08 Atsushi Enomoto <[email protected]>
  2392. * HttpRequestChannel.cs : call Flush() after serializing message
  2393. into HTTP stream.
  2394. 2006-02-08 Atsushi Enomoto <[email protected]>
  2395. * HttpRequestChannel.cs : implemented pretty hacky Request().
  2396. 2006-02-02 Atsushi Enomoto <[email protected]>
  2397. * HttpRequestChannel.cs : Manager is HttpChannelFactory.
  2398. 2006-02-01 Atsushi Enomoto <[email protected]>
  2399. * ChannelFactoryBase.cs : removed some NotImplementedException for
  2400. further internal implementation.
  2401. 2006-01-26 Atsushi Enomoto <[email protected]>
  2402. * HttpRequestChannel.cs : new file. mostly not implemented.
  2403. * HttpChannelFactory.cs : Implemented CanCreateChannel().
  2404. Partly implemented CreateChannel().
  2405. 2006-01-26 Atsushi Enomoto <[email protected]>
  2406. * HttpChannelFactory.cs : (.ctor())
  2407. Don't take ChannelBuildContext.
  2408. 2005-11-21 Atsushi Enomoto <[email protected]>
  2409. * StreamSecurityUpgradeInitiator.cs PeerMessageOrigination.cs
  2410. ChannelBase.cs StreamSecurityUpgradeAcceptor.cs
  2411. PeerMessagePropagation.cs : updated to Nov. CTP.
  2412. 2005-11-21 Atsushi Enomoto <[email protected]>
  2413. * ChannelListenerBase.cs, ChannelManagerBase.cs,
  2414. ChannelListenerBase_1.cs, LayeredChannelListener.cs,
  2415. StreamSecurityUpgradeAcceptor.cs,
  2416. StreamSecurityUpgradeInitiator.cs :
  2417. Updated to Nov. CTP API.
  2418. 2005-11-21 Atsushi Enomoto <[email protected]>
  2419. Now we can rename ListenerFactoryBase.cs to ChannelListenerBase.cs.
  2420. 2005-11-21 Atsushi Enomoto <[email protected]>
  2421. renamed ChannelListenerBase.cs to ChannelListenerBase_1.cs.
  2422. 2005-11-21 Atsushi Enomoto <[email protected]>
  2423. * ChannelBase.cs : tiny filename fix.
  2424. * ChannelListenerBase.cs : added more .ctor()s.
  2425. 2005-11-21 Atsushi Enomoto <[email protected]>
  2426. * HttpListenerFactory.cs LayeredChannelListener.cs HttpListener.cs
  2427. ListenerFactoryBase.cs ChannelListenerBase.cs :
  2428. updated IListener related stuff to Nov. CTP.
  2429. file renaming will come soon.
  2430. 2005-11-21 Atsushi Enomoto <[email protected]>
  2431. * ListenerBase.cs, ChannelListenerBase.cs :
  2432. moved from former to latter.
  2433. * LayeredListenerFactory.cs, LayeredChannelListener.cs :
  2434. moved from former to latter.
  2435. 2005-11-20 Atsushi Enomoto <[email protected]>
  2436. * SessionFaultedException.cs : removed in Nov. CTP
  2437. 2005-11-20 Atsushi Enomoto <[email protected]>
  2438. * CommunicationObject.cs : updated to Nov. CTP.
  2439. * SessionFaultedException.cs : removed (in Nov. CTP)
  2440. 2005-11-03 Atsushi Enomoto <[email protected]>
  2441. * TextMessageEncoder.cs : kinda implemented (untested; Message is not
  2442. working).
  2443. 2005-11-03 Atsushi Enomoto <[email protected]>
  2444. * MtomMessageEncoder.cs, BinaryMessageEncoderFactory.cs,
  2445. TextMessageEncoderFactory.cs, BinaryMessageEncoder.cs,
  2446. TextMessageEncoder.cs, MtomMessageEncoderFactory.cs : new files.
  2447. * MessageEncoder.cs : largely implemented.
  2448. 2005-11-02 Atsushi Enomoto <[email protected]>
  2449. * IRequestReplyCorrelator.cs : new file.
  2450. 2005-11-02 Atsushi Enomoto <[email protected]>
  2451. * CommunicationObject.cs : OnClose() and OnError() are not virtual.
  2452. * DirectionalAction.cs : implemented IComparable<DirectionalAction>.
  2453. * MessageEncoder.cs : added misssing ToString().
  2454. 2005-11-02 Atsushi Enomoto <[email protected]>
  2455. * ChannelBehaviorCollection.cs : moved to sys.sm.
  2456. 2005-10-28 Atsushi Enomoto <[email protected]>
  2457. * HttpListenerFactory.cs, HttpListener.cs : new files.
  2458. * ListenerFactoryBase.cs, ChannelManagerBase.cs,
  2459. CommunicationObject.cs, ChannelFactoryBase.cs,
  2460. StreamUpgradeProvider.cs, ChannelBase.cs : timeouts are now
  2461. protected internal.
  2462. * CommunicationObject.cs : Aborted is bool. Added InternalClose()
  2463. * ListenerFactoryBase.cs : kinda implemented GetListeners().
  2464. 2005-10-26 Atsushi Enomoto <[email protected]>
  2465. * ListenerFactoryBase.cs : some implementation.
  2466. 2005-10-26 Atsushi Enomoto <[email protected]>
  2467. * CommunicationObject.cs : more state fixes.
  2468. 2005-10-26 Atsushi Enomoto <[email protected]>
  2469. * CommunicationObject.cs : some state machine fixes.
  2470. 2005-10-26 Atsushi Enomoto <[email protected]>
  2471. * PeerNode.cs, ChannelManagerBase.cs :
  2472. several API fixes detected by improved corcompare.
  2473. 2005-10-25 Atsushi Enomoto <[email protected]>
  2474. * LayeredListenerFactory.cs : added missing generic class constraint.
  2475. 2005-10-25 Atsushi Enomoto <[email protected]>
  2476. * ListenerFactoryBase.cs,
  2477. ListenerBase.cs : class constraints were missing for generic args.
  2478. 2005-10-24 Atsushi Enomoto <[email protected]>
  2479. * StreamUpgradeInitiator.cs : tiny API fix.
  2480. 2005-10-23 Atsushi Enomoto <[email protected]>
  2481. * PeerMessagePropagationFilter.cs : tiny build fix.
  2482. 2005-10-23 Atsushi Enomoto <[email protected]>
  2483. * HttpRequestMessageProperty.cs, HttpResponseMessageProperty.cs :
  2484. added Name. fixed StatusCode type.
  2485. * StreamSecurityUpgradeInitiator.cs, StreamUpgradeAcceptor.cs,
  2486. PeerNode.cs, StreamSecurityUpgradeAcceptor.cs,
  2487. StreamUpgradeProvider.cs, StreamUpgradeInitiator.cs,
  2488. DirectionalAction.cs, HostedTransportConfiguration.cs,
  2489. StreamSecurityUpgradeProvider.cs, SessionFaultedException.cs,
  2490. PeerMessagePropagationFilter.cs : added missing files.
  2491. * Dummy.cs : removed. MSMQ stuff can be added later.
  2492. 2005-10-21 Atsushi Enomoto <[email protected]>
  2493. * DeliveryStatus.cs, DeliveryFailure.cs,
  2494. HttpRequestMessageProperty.cs, PeerMessageOrigination.cs,
  2495. PeerMessagePropagation.cs, HttpResponseMessageProperty.cs :
  2496. new files.
  2497. * Dummy.cs : removed above.
  2498. 2005-10-18 Atsushi Enomoto <[email protected]>
  2499. * ChannelFactoryBase.cs : tiny .ctor() delegation fix.
  2500. 2005-10-09 Atsushi Enomoto <[email protected]>
  2501. * MessageEncoderFactory.cs, LayeredListenerFactory.cs,
  2502. MessageEncoder.cs, BufferManager.cs : new files.
  2503. * Dummy.cs : removed above.
  2504. 2005-10-09 Atsushi Enomoto <[email protected]>
  2505. * ChannelBase.cs, ChannelBehaviorCollection.cs : new channel files.
  2506. * Dummy.cs : removed above.
  2507. * CommunicationObject.cs, ListenerFactoryBase.cs : added missing bits.
  2508. 2005-10-09 Atsushi Enomoto <[email protected]>
  2509. * HttpChannelFactory.cs : new file.
  2510. 2005-10-08 Atsushi Enomoto <[email protected]>
  2511. * IReplyChannel.cs, IRequestContext.cs, IRequestChannel.cs:
  2512. moved to ../System.ServiceModel (correct location).
  2513. * ChannelFactoryBase.cs, LayeredChannelFactory.cs, TransferMode.cs:
  2514. new files for channels.
  2515. * Dummy.cs : reflected above changes.
  2516. * ChannelManagerBase.cs : added a bit of code and todos.
  2517. 2005-10-04 Atsushi Enomoto <[email protected]>
  2518. * ChannelManagerBase.cs, ListenerBase.cs, ListenerFactoryBase.cs :
  2519. added listener support files.
  2520. * Dummy.cs : removed above.
  2521. 2005-10-03 Atsushi Enomoto <[email protected]>
  2522. * IReplyChannel.cs, IRequestContext.cs, IRequestChannel.cs :
  2523. added request/reply channel interfaces.
  2524. * Dummy.cs : removed above.
  2525. * CommunicationObject.cs : FIXME comments.
  2526. 2005-10-03 Atsushi Enomoto <[email protected]>
  2527. * CommunicationObject.cs : implemented some members.
  2528. 2005-09-29 Atsushi Enomoto <[email protected]>
  2529. * CommunicationObject.cs : some signature fixes.