ChangeLog 146 KB

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