ChangeLog 145 KB

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