ChangeLog 134 KB

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