ChangeLog 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331
  1. 2009-04-20 Atsushi Enomoto <[email protected]>
  2. * PeerChannelFactory.cs, PeerChannelListener.cs,
  3. PeerCustomResolverBindingElement.cs, PeerDuplexChannel.cs
  4. PeerInputChannel.cs, PeerOutputChannel.cs :
  5. new; ongoing peer transport implementation.
  6. * DuplexSessionChannelBase.cs, InputChannelBase.cs
  7. MsmqOutputChannel.cs, OutputChannelBase.cs,
  8. PeerResolverBindingElement.cs, PeerTransportBindingElement.cs,
  9. PnrpPeerResolverBindingElement.cs, TcpDuplexSessionChannel.cs :
  10. several internal changes (either required or for simplification)
  11. for ongoing peer transport implementation.
  12. 2009-04-08 Atsushi Enomoto <[email protected]>
  13. * PeerTransportBindingElement.cs : ListenIPAddress is IPAddress.
  14. 2009-04-07 Atsushi Enomoto <[email protected]>
  15. * TcpTransportBindingElement.cs : check build-ability before
  16. actually building channels.
  17. * ConnectionOrientedTransportBindingElement.cs : fixed build-ability
  18. conditions according to MSDN.
  19. 2009-03-05 Atsushi Enomoto <[email protected]>
  20. * MessageHeader.cs, MessageHeaders.cs, MessageImpl.cs :
  21. handle headers in SL2. Slightly changed 3.0 code too.
  22. 2009-03-04 Atsushi Enomoto <[email protected]>
  23. * HttpRequestChannel.cs : use cross domain access manager.
  24. 2009-02-27 Atsushi Enomoto <[email protected]>
  25. * Message.cs : (in CreateBufferedCopy) do not pass the entire
  26. message as BodyWriter.
  27. (in GetReaderAtBodyContents) just write body contents.
  28. * MessageImpl.cs : do not try to read body at ctor (fixed tons
  29. of test failures).
  30. Add some state check in GetReaderAtBodyContents().
  31. * XmlReaderBodyWriter.cs : avoid possible extra xmldecl onto output.
  32. 2009-02-18 Atsushi Enomoto <[email protected]>
  33. * Message.cs : do not forget to flush.
  34. * HttpRequestChannel.cs : give more exact error info.
  35. 2009-02-18 Atsushi Enomoto <[email protected]>
  36. * Message.cs, MessageBufferImpl.cs, XmlReaderBodyWriter.cs :
  37. make buffered copy in ML2 really buffered.
  38. 2009-02-12 Atsushi Enomoto <[email protected]>
  39. * Message.cs : if there is no header item to write, do not write
  40. SOAP header element.
  41. 2009-01-22 Alan McGovern <[email protected]>
  42. * MessageHeaders.cs : List<T>.RemoveAll(Predicate<T>) doesn't exist in Silverlight.
  43. Rewrite to avoid usage of it.
  44. 2009-01-14 Atsushi Enomoto <[email protected]>
  45. * ChannelParameterCollection.cs : implement, rather than NIE.
  46. 2008-05-22 Noam Lampert <[email protected]>
  47. * MessageFault.cs: Correctly serialize ExceptionDetails. Expose SimpleMessageFault to allow
  48. internal users to know the type of the detail.
  49. 2008-05-20 Noam Lampert <[email protected]>
  50. * Message.c: Use private setter for state private variable to ease debugging.
  51. Modify ToString not to change the state, as it is called quite often by VS debugger
  52. 2008-04-21 Roei Erez <[email protected]>
  53. * HttpChannleManager: Fix for multithreaded use.
  54. * HttpReplyChannel: Fix crash during sutdown.
  55. 2008-04-17 Igor Zelmanovich <[email protected]>
  56. * HttpChannleManager: ensure trailing slash in uri.
  57. 2008-04-17 Vladimir Krasnov <[email protected]>
  58. * added: HttpChannleManager,
  59. * HttpChannelListener: added use of HttpChannelManager
  60. 2008-04-17 Vladimir Krasnov <[email protected]>
  61. * MessageEncodingBindingElement.cs: fixed ctor
  62. 2008-04-17 Vladimir Krasnov <[email protected]>
  63. * XmlReaderBodyWriter.cs: fixed ctor, skip xml declaration
  64. 2008-04-17 Vladimir Krasnov <[email protected]>
  65. * HttpReplyChannel.cs: fixed TryReceiveRequest, fix message header To
  66. 2008-04-17 Vladimir Krasnov <[email protected]>
  67. * MessageFault.cs: fixed CreateFault11, implemented "detail"
  68. 2008-04-17 Noam Lampert <[email protected]>
  69. * HttpReplyChannel.cs: fix API - Fix crash during service shutdown.
  70. 2008-04-13 Igor Zelmanovich <[email protected]>
  71. * BindingElementCollection.cs: fix API - .ctor's signature.
  72. 2008-04-10 Eyal Alaluf <[email protected]>
  73. * XmlSerializerBodyWriter.cs: Removed.
  74. 2008-03-25 Vladimir Krasnov <[email protected]>
  75. * MessageFault.cs: fixed WriteReason, .net XmlWriter compatible
  76. 2008-02-20 Atsushi Enomoto <[email protected]>
  77. * DuplexSessionChannelBase.cs : made it non-session (more reusable).
  78. * TcpChannelFactory.cs, TcpChannelListener.cs :
  79. unify factory and listener into TcpChannelInfo for use in
  80. TCP channel implementation. Do not store stream in the listener.
  81. Factory now uses BinaryMessageEncoder.
  82. * TcpDuplexSessionChannel.cs : changes explained above, and now it
  83. holds TcpClient that the listener has accepted.
  84. tcp-transport-binding-element sample now communicates (though
  85. only when both sides are mono: there seems binary mismatch).
  86. 2008-02-20 Atsushi Enomoto <[email protected]>
  87. * TcpTransportBindingElement.cs, TcpConnectionPoolSettings.cs :
  88. clone connection pool settings too.
  89. * NamedPipetransportBindingElement.cs,
  90. NamedPipeConnectionPoolSettings.cs : let's clean them up too (not
  91. being likely implemented though).
  92. 2008-02-20 Atsushi Enomoto <[email protected]>
  93. * ConnectionOrientedTransportBindingElement.cs,
  94. TcpTransportBindingElement.cs : some API updates.
  95. Initialize default values.
  96. * TcpConnectionPoolSettings.cs : new file.
  97. 2008-02-18 Atsushi Enomoto <[email protected]>
  98. * ServiceHostParser.cs, SvcHttpHandlerFactory.cs, SvcHttpHandler.cs:
  99. added support for "factory" attribute.
  100. 2008-02-15 Atsushi Enomoto <[email protected]>
  101. * HttpRequestContent.cs : consider HttpResponseMessageProperty.
  102. 2008-02-15 Atsushi Enomoto <[email protected]>
  103. * HttpRequestChannel.cs : pass response ContentType to ReadMessage().
  104. 2008-02-15 Atsushi Enomoto <[email protected]>
  105. * HttpRequestChannel.cs : create WebRequest against To message header
  106. item (if exists).
  107. Consider HttpRequestMessageProperty.
  108. Do not output body when suppressed or the method is GET.
  109. 2008-02-15 Atsushi Enomoto <[email protected]>
  110. * HttpChannelListener.cs : BindingContext may not have listenUri
  111. at its .ctor() step.
  112. 2008-02-08 Atsushi Enomoto <[email protected]>
  113. * BindingContext.cs : RemainingBindingElements is not just a dummy
  114. collection but is actually user-controlled.
  115. 2008-02-08 Atsushi Enomoto <[email protected]>
  116. * TcpChannelFactory.cs, TcpChannelListener.cs,
  117. HttpChannelFactory.cs, HttpChannelListener.cs,
  118. MsmqChannelFactory.cs, MsmqChannelListener.cs,
  119. TextMessageEncodingBindingElement.cs,
  120. BinaryMessageEncodingBindingElement.cs,
  121. MtomMessageEncodingBindingElement.cs :
  122. message encoder should be retrieved only through public API.
  123. * BindingContext.cs : so my old guess was wrong.
  124. See also: http://blogs.msdn.com/drnick/archive/2006/05/10/594134.aspx
  125. 2008-02-05 Atsushi Enomoto <[email protected]>
  126. * HttpTransportBindingElement.cs : implemented copy constructor.
  127. 2007-08-20 Atsushi Enomoto <[email protected]>
  128. * HttpRequestChannel.cs, HttpReplyChannel.cs : treat SOAPAction HTTP
  129. header when AddressingVersion is None.
  130. 2007-08-20 Atsushi Enomoto <[email protected]>
  131. * MessageHeaders.cs : AddressingVersion.None rejects some WSA
  132. property setters.
  133. 2007-08-19 Atsushi Enomoto <[email protected]>
  134. * OneWayBindingElementImporter.cs
  135. CompositeDuplexBindingElementImporter.cs : new files.
  136. 2007-08-17 Atsushi Enomoto <[email protected]>
  137. * MessageHeaders.cs : due to the DataContractSerializer.ReadObject()
  138. semantic change, its bool parameter must be false, not true.
  139. 2007-07-13 Atsushi Enomoto <[email protected]>
  140. * InputChannelBase.cs, MsmqChannelListener.cs, MsmqInputChannel.cs :
  141. new files. Msmq transport listener Implementation.
  142. * MsmqOutputChannel.cs : implemented Send(). Not sure if it works
  143. (wait for System.Messaging impl.)
  144. * HttpReplyChannel.cs : added comment
  145. 2007-07-06 Atsushi Enomoto <[email protected]>
  146. * MsmqChannelFactory.cs MsmqOutputChannel.cs OutputChannelBase.cs :
  147. new files. internal stuff for msmq channel.
  148. * BinaryMessageEncoder.cs : added another .ctor().
  149. * MsmqTransportBindingElement.cs :
  150. implemented [Can]BuildChannelFactory().
  151. 2007-07-06 Atsushi Enomoto <[email protected]>
  152. * MsmqBindingElementBase.cs MsmqTransportBindingElement.cs :
  153. initialize some fields.
  154. 2007-07-05 Atsushi Enomoto <[email protected]>
  155. * MsmqBindingElementBase.cs MsmqMessageProperty.cs
  156. MsmqTransportBindingElement.cs ITransactedBindingElement.cs :
  157. couple of msmq stubs.
  158. 2007-04-02 Atsushi Enomoto <[email protected]>
  159. * SecureMessageGenerator.cs : SecurityContextToken support (though
  160. it is still regarded as invalid by WCF).
  161. 2007-03-13 Atsushi Enomoto <[email protected]>
  162. * WSSecurityMessageHeader.cs, SecureMessageGenerator.cs :
  163. make header.Contents.Add() more strict.
  164. Use HasAsymmetricKey to determine whether to use asymmetric algorithm
  165. or not.
  166. Added some hack to allow ssl token external mode.
  167. Commented out such lines that always premised asymmtric key.
  168. 2007-03-08 Atsushi Enomoto <[email protected]>
  169. * TransactionFlowBindingElement.cs : forgot necessary Clone().
  170. 2007-03-08 Atsushi Enomoto <[email protected]>
  171. * MessageSecurityBindingSupport.cs : support check to create
  172. authenticator is now done in both initiator/recipient sides.
  173. * SecurityRequestContext.cs : don't encrypt WS-Trust RSTR.
  174. 2007-03-07 Atsushi Enomoto <[email protected]>
  175. * MessageSecurityBindingSupport.cs : for now, comment out the code
  176. that makes authenticator creation optional.
  177. * SecurityRequestContext.cs : don't decrypt message when it is
  178. WS-Trust messages. Also, do not secure SOAP Fault (it is likely
  179. to fail).
  180. * SecurityChannelListener.cs : GetProperty<T>() now returns
  181. MessageSecurityBindingSupport when requested. It is used by
  182. EndpointDispatcher to check if it supports WS-Trust negotiation.
  183. * ChannelListenerBase.cs :
  184. removed extra TODO and field. Implemented GetProperty<T>().
  185. * Message.cs : In CreateMessage() for SOAP Fault, create
  186. SimpleMessage with IsFault = true.
  187. 2007-03-07 Atsushi Enomoto <[email protected]>
  188. * SecurityRequestContext.cs : try to reply fault with the inner
  189. channel when an error occurred internally.
  190. * FaultConverter.cs : implemented based on OperationContext (at normal
  191. state it does not seem to create messages, so I implemented it this
  192. way).
  193. 2007-03-07 Atsushi Enomoto <[email protected]>
  194. * TransportBindingElement.cs : implemented GetProperty<T>().
  195. * TransactionFlowBindingElement.cs : on building factory or listener,
  196. reject channel types that cannot build.
  197. * SecurityBindingElement.cs : added some TODO comments.
  198. * HttpTransportBindingElement.cs : GetProperty<T>() should rather
  199. delegate to base, not BindingContext.
  200. * SecurityRequestContext.cs : somewhat late decryption.
  201. 2007-03-06 Atsushi Enomoto <[email protected]>
  202. * MessageSecurityBindingSupport.cs,
  203. AsymmetricSecurityBindingElement.cs,
  204. SymmetricSecurityBindingElement.cs :
  205. renamed *SecurityBindingElementSupport to *SecurityCapabilities and
  206. implemented ISecurityCapabilities on them. Now those binding
  207. elements support GetProperty<ISecurityCapabilities>().
  208. 2007-03-05 Atsushi Enomoto <[email protected]>
  209. * SecurityBindingElement.cs : SetIssuerBindingContextIfRequired()
  210. will work only for predefined parameter types.
  211. 2007-03-01 Atsushi Enomoto <[email protected]>
  212. * MessageSecurityBindingSupport.cs :
  213. Set proper MessageDirection to the requirement after creation.
  214. split CreateTokenAuthenticator() as MessageDirection is different.
  215. Removed extra creation of requirement.
  216. 2007-03-01 Atsushi Enomoto <[email protected]>
  217. * MessageSecurityBindingSupport.cs : token authenticator is not
  218. always created on channel-opening stage.
  219. * SecurityBindingElement.cs : use SslSecurityTokenParameters for
  220. Sslnego binding factory method.
  221. 2007-02-28 Atsushi Enomoto <[email protected]>
  222. * SecureMessageGenerator.cs : inconsistent ReferenceList has caused
  223. signature velification failure.
  224. 2007-02-27 Atsushi Enomoto <[email protected]>
  225. * SecureMessageGenerator.cs : encrypt signature confirmations only
  226. when they are required.
  227. 2007-02-27 Atsushi Enomoto <[email protected]>
  228. * SecureMessageGenerator.cs : SignatureConfirmation must be encrypted
  229. when [Signature Protection is true i.e. when we use
  230. SignBeforeEncryptAndEncryptSignature.
  231. With this change finally samplesvc.cs/samplecli.cs became
  232. interoperable(!)
  233. 2007-02-27 Atsushi Enomoto <[email protected]>
  234. * SecureMessageDecryptor.cs : signature verification was not done
  235. for endorsing supporting tokens.
  236. * SecureMessageGenerator.cs : moved SignatureConfirmation position
  237. in the security header. Don't output empty ReferenceList.
  238. 2007-02-27 Atsushi Enomoto <[email protected]>
  239. * SecureMessageGenerator.cs : signingToken was added before being
  240. initialized and thus caused NRE.
  241. 2007-02-27 Atsushi Enomoto <[email protected]>
  242. * WSSecurityMessageHeader.cs, SecureMessageDecryptor.cs,
  243. SecureMessageGenerator.cs : use SHA1 instead of HMACSHA1. Now we
  244. don't need workaround for symmetric key restoration.
  245. 2007-02-27 Atsushi Enomoto <[email protected]>
  246. * WSSecurityMessageHeader.cs, SecureMessageDecryptor.cs,
  247. SecureMessageGenerator.cs :
  248. Avoid extra reference search from the request's ReferenceList.
  249. create HMACSHA1 always with the key to compute hash (I'm not sure
  250. it is correct; it is rather to adjust all hash consistent.)
  251. 2007-02-27 Atsushi Enomoto <[email protected]>
  252. * SecureMessageDecryptor.cs : verify that endorsing supporting tokens
  253. actually endorsed the primary signature.
  254. * SecureMessageGenerator.cs : implemented endorsing of the primary
  255. signature. So, now supporting tokens are fully implemented.
  256. 2007-02-27 Atsushi Enomoto <[email protected]>
  257. * MessageSecurityBindingSupport.cs : so, those supporting tokens are
  258. totally signing tokens.
  259. * SecureMessageGenerator.cs : Endorsing tokens should also be
  260. included in the message. They are just not signed.
  261. 2007-02-26 Atsushi Enomoto <[email protected]>
  262. * SecureMessageGenerator.cs : support signing and encryption of
  263. supporting tokens. Some required refactory to do it.
  264. * MessageSecurityBindingSupport.cs : added EncryptedData member.
  265. 2007-02-26 Atsushi Enomoto <[email protected]>
  266. * SecureMessageDecryptor.cs : fix exception message.
  267. * WSSecurityMessageHeader.cs, WSSignedXml.cs, WSEncryptedXml.cs :
  268. XmlNamespaceManager is not required for GetIdElement().
  269. 2007-02-22 Atsushi Enomoto <[email protected]>
  270. * SecureMessageDecryptor.cs, WSSecurityMessageHeader.cs :
  271. moved decryption part from former file to latter file, to reuse
  272. SignedXml instance (though now I doubt how it actually was good)
  273. which in turn required to replace EncryptedData in
  274. WSSecurityMessageHeader with decrypted one.
  275. * WSEncryptedXml.cs : similar to WSSignedXml.cs, to handle wsu:Id.
  276. 2007-02-21 Atsushi Enomoto <[email protected]>
  277. * SecureMessageGenerator.cs : when we create DerivedKeyToken, those
  278. EncryptedData should contain KeyInfo as it is not obvious which key
  279. is used there. .net<->mono DerivedKeyToken introp is done.
  280. * SecureMessageDecryptor.cs : check derived key requirement.
  281. Reduce dom-dependent parts.
  282. 2007-02-21 Atsushi Enomoto <[email protected]>
  283. * WSSecurityMessageHeader.cs : ReferenceList needs to be bound to
  284. the related DerivedKeyToken (if any).
  285. * SecureMessageGenerator.cs : largely done with DerivedKeyToken
  286. support. Some refactoring to distinguish deried-token-related
  287. variables.
  288. * SecureMessageDecryptor.cs : removed its own support for derived
  289. key tokens. Now it fully works with DerivedKeySecurityToken.
  290. 2007-02-21 Atsushi Enomoto <[email protected]>
  291. * WSSecurityMessageHeader.cs, SecureMessageDecryptor.cs,
  292. SecureMessageDecryptor.cs :
  293. Implemented increment token reading in o:Security, as
  294. DerivedKeyToken could reference to existing wrapped key.
  295. Removed WsscDerivedKeyToken and all relevant code.
  296. * SecureMessageGenerator.cs : replaced WsscDerivedKeyToken with
  297. DerivedKeySecurityToken.
  298. 2007-02-16 Atsushi Enomoto <[email protected]>
  299. * SecureMessageGenerator.cs : it was setting security tokens into
  300. incorrect SecurityMessageProperty.
  301. Use correct WrappedKeySecurityToken for EncryptedKeySHA1.
  302. Now it uses SecurityRequestContext instead of just primary key.
  303. * SecureMessageDecryptor.cs : removed extra lines. Limit workarounds
  304. to symmetric reply decryption, which is the only trouble case.
  305. Do not create another SignedXml.
  306. * WSSecurityMessageHeader.cs : SignedXml processing changes above.
  307. 2007-02-15 Atsushi Enomoto <[email protected]>
  308. * SecureMessageDecryptor.cs : Now it uses union token resolver and
  309. the resolver works with in-progress token reading in o:Security.
  310. * WSSecurityMessageHeader.cs : now it does not read EncryptedKey
  311. as EncryptedKeyIdentifierClause. It is rather a SecurityToken.
  312. * SecureMessageGenerator.cs : cosmetic refactoring.
  313. 2007-02-14 Atsushi Enomoto <[email protected]>
  314. * WSSecurityMessageHeader.cs : read EncryptedKeyIdentifierClause
  315. instead of EncryptedKey.
  316. 2007-02-13 Atsushi Enomoto <[email protected]>
  317. * MessageSecurityBindingSupport.cs : SigningToken and EncryptionToken
  318. should not be always prepared at channel Open(). It also caused
  319. that extra token requirements.
  320. * SecureMessageGenerator.cs : use correct key clause for encryption.
  321. * SecureMessageDecryptor.cs : reduce extra key acquisition.
  322. 2007-02-06 Atsushi Enomoto <[email protected]>
  323. * MessageSecurityBindingSupport.cs : added CreateTokenAuthenticator()
  324. for supporting 'supporting tokens' .
  325. * SecureMessageGenerator.cs : Supporting token creation is done only
  326. at initiator (not sure if it is supposed that, but for now it is).
  327. Removed extraneous CollectSupportingTokens().
  328. * SecureMessageDecryptor.cs : implemented supporting token
  329. authentication (partly). "Signed" supporting tokens are expected
  330. to work fine.
  331. 2007-02-06 Atsushi Enomoto <[email protected]>
  332. * SecureMessageGenerator.cs :
  333. make SignBeforeEncryptAndEncryptSignature working.
  334. 2007-02-06 Atsushi Enomoto <[email protected]>
  335. * SecureMessageGenerator.cs : EncryptedKeySHA1 needs key hash, not
  336. the key itself. ProtectionToken is WrappedKey.
  337. * SecureMessageDecryptor.cs : now it is internal encrypted key clause,
  338. not EncryptedKeyIdentifierClause which is not for embedded key.
  339. * MessageProperties.cs : Fixed copy direction in CopyProperties().
  340. 2007-02-05 Atsushi Enomoto <[email protected]>
  341. * MessageSecurityBindingSupport.cs : added DefaultKeyWrapAlgorithm
  342. to switch asymmetric and symmetric. Not used yet.
  343. * SecurityRequestChannel.cs : now it pass the request security
  344. property to reply receiver so that it could use the primary key
  345. used at request phase.
  346. * SecurityRequestContext.cs : now it pass the context itself to
  347. reply sender so that it could embed related MessageID.
  348. * SecureMessageGenerator.cs : ongoing changes to support symmetric
  349. binding element. Add RelatesTo output and remove MessageID when
  350. replying to the sender. Added some hacks to get symmetric binding
  351. (kind of) working.
  352. * SecureMessageDecryptor.cs : ditto. Handle embedded encryption key
  353. in SecurityTokenReference (it also involved existing encrypted key
  354. retrieval). In reply receiver, reuse the key that was used at
  355. request phase. It needs significant token resolution refactoring.
  356. 2007-02-02 Atsushi Enomoto <[email protected]>
  357. * MessageSecurityBindingSupport.cs : cosmetic refactoring.
  358. * SecureMessageDecryptor.cs : store token and its authentication
  359. policies into the security property, and reuse it on reply.
  360. Some code refactoring; there is at most one o:Security to solve at
  361. one endpoint (depends on Actor). Some attempt to use correct
  362. token parameters (but for now I have only samples that use x509).
  363. * SecureMessageGenerator.cs : For replying message, use initiator's
  364. signing token as the encryption token. Simply reuse security
  365. property from the input message.
  366. I have some nasty workaround at decryptor for initiator that could
  367. not retrieve decryption key.
  368. 2007-02-02 Atsushi Enomoto <[email protected]>
  369. * SecureMessageGenerator.cs, SecurityChannelListener.cs,
  370. SecurityRequestContext.cs, MessageSecurityBindingSupport.cs:
  371. several refactoring on token acquisition. Large part of
  372. MessageSecurityBindingSupport code is unified.
  373. 2007-02-02 Atsushi Enomoto <[email protected]>
  374. * MessageProperties.cs : Security property should be one of the items.
  375. Actually many other properties should be similar as well.
  376. * MessageImpl.cs, MessageBufferImpl.cs, Message.cs :
  377. when copying a message, copy properties as well.
  378. * SecurityRequestContext.cs : on replying, pass input
  379. SecurityMessageProperty to the security generator.
  380. * SecureMessageGenerator.cs : both of above, for SignatureConfirmation
  381. support.
  382. * WSSecurityMessageHeader.cs : fixed lazy .ctor() that did nothing.
  383. 2007-02-01 Atsushi Enomoto <[email protected]>
  384. * WSSignedXml.cs:
  385. MessageHeader.cs, Message.cs, WSSecurityMessageHeader.cs,
  386. SecureMessageDecryptor.cs, SecureMessageGenerator.cs:
  387. use new WSSignedXml instead of SignedXml, and remove coexisting
  388. Id and wsu:Id. Now we can live only with wsu:Id and therefore
  389. - our reply messages could be consumed by .NET, and
  390. - .NET signature could be verified.
  391. 2007-02-01 Atsushi Enomoto <[email protected]>
  392. * SecureMessageDecryptor.cs : The signing key must be passed as
  393. CheckSignature() argument, not SigningKey.
  394. 2007-01-31 Atsushi Enomoto <[email protected]>
  395. * MessageImpl.cs : don't read attribute after ReadStartElement().
  396. 2007-01-31 Atsushi Enomoto <[email protected]>
  397. * MessageSecurityBindingSupport.cs : some Release() refactoring.
  398. * SecureMessageGenerator.cs : use correct signing key clause for
  399. SecurityTokenReferenceKeyInfo to be serialized.
  400. * SecureMessageDecryptor.cs : now it can try to parse signature.
  401. 2007-01-31 Atsushi Enomoto <[email protected]>
  402. Ongoing changes to support signature confirmation
  403. * SecureMessageGenerator.cs :
  404. Don't output ReplyTo onto reply message.
  405. Write SignatureConfirmation if needed.
  406. * SecureMessageDecryptor.cs :
  407. Some refactoring for header cunsumption. Added commented-out
  408. signature verification part (not working yet, on client side due
  409. to incorrect reply from service and insufficient clause reader).
  410. * WSSecurityMessageHeader.cs :
  411. Added SignatureConfirmation support.
  412. KeyInfoClause for o:SecurityTokenReference should be replaced with
  413. SecurityTokenReferenceKeyInfo.
  414. 2007-01-29 Atsushi Enomoto <[email protected]>
  415. * SecureMessageGenerator.cs : support Timestamp signature.
  416. Removed unused code, and extra argument in CreateReference().
  417. * WSSecurityMessageHeader.cs : Timestamp also needs Id for SignedXml.
  418. 2007-01-29 Atsushi Enomoto <[email protected]>
  419. * SecureMessageGenerator.cs :
  420. Several fixes to make asymmetric binding working:
  421. - Differentiate signing and encryption token in several areas.
  422. - Fixed signing keyinfo.
  423. Use SenderIdPrefix.
  424. Added initial SecurityMessageProperty handling, not sure if it is
  425. appropriate here though.
  426. * HttpRequestChannel.cs : (some debugging lines)
  427. 2007-01-26 Atsushi Enomoto <[email protected]>
  428. Woohoo! Here is a very basic WS-Security compliant message which could
  429. be allowed by Indigo.
  430. * MessageHeader.cs : added Id support for writing.
  431. * Message.cs : added internal BodyId for signature reference.
  432. * MessageImpl.cs : write Body Id if required.
  433. * SecureMessageGenerator.cs : Before signing, the target elements must
  434. be given wsu:Id. Since I still use System.Security.dll, I need some
  435. trick for signing (I give both Id and wsu:Id, former to sign and
  436. latter to be consumed). Maybe I will have to replace xmldsig/xmlenc
  437. implementation later. Now singning mechanism works except for
  438. wsu:Timestamp (which is kind of mandatory).
  439. I can's still consume replies from Indigo but it's a big progress :)
  440. 2007-01-26 Atsushi Enomoto <[email protected]>
  441. * MessageHeaderInfo.cs : added internal Id.
  442. * MessageHeader.cs : read and write wsu:Id.
  443. * Message.cs : output wsu namespace if Id exists in any header.
  444. * HttpReplyChannel.cs : (some debugging lines.)
  445. * SecureMessageDecryptor.cs : (remove debugging lines.)
  446. * MessageImpl.cs : removed obsolete code.
  447. * WSSecurityMessageHeader.cs : output "o" prefix.
  448. * SecureMessageGenerator.cs : replaced XmlElement-based header
  449. signing with MessageHeader-based signing, to support Id correctly.
  450. 2007-01-15 Atsushi Enomoto <[email protected]>
  451. * SecureMessageGenerator.cs : some more refactoring and code comments.
  452. * MessageSecurityUtility.cs : made decryptor into an instance class,
  453. like I've done for SecureMessageGenerator.
  454. * SecurityRequestContext.cs, SecurityRequestChannel.cs :
  455. dependent changes for above.
  456. 2007-01-12 Atsushi Enomoto <[email protected]>
  457. * SecureMessageGenerator.cs : fixed derived keysize. derived key was
  458. causing NRE due to the lack of token reference.
  459. No need to pass doc to SignedXml.ctor() anymore.
  460. Moved ReferenceList before the signature(s).
  461. 2007-01-12 Atsushi Enomoto <[email protected]>
  462. * SecureMessageGenerator.cs : add wsu:Timestamp to signing target.
  463. Moved signing key generation code to non-HMACSHA1 signing part.
  464. Don't try to sign wss:Security.
  465. Pass document itself to SignedXml.ctor().
  466. Use temporary DataObjects to avoid adding Ids (not sure what is the
  467. expected processing yet).
  468. * WSSecurityMessageHeader.cs : to support timestamp signing, add
  469. WriteTo() method in WsuTimestamp.
  470. 2007-01-12 Atsushi Enomoto <[email protected]>
  471. * SecureMessageGenerator.cs : wrong key was used for signing.
  472. Omit KeyInfo for now - it seems that .net (sometimes?) omits it.
  473. 2007-01-11 Atsushi Enomoto <[email protected]>
  474. * SecureMessageGenerator.cs :
  475. Now ID generation process does not modify input message.
  476. Moved derived key generation part into (virtual) signing loop.
  477. MessagePartSpecification support for signing is done.
  478. 2007-01-11 Atsushi Enomoto <[email protected]>
  479. * SecureMessageGenerator.cs : some reordering to handle signing and
  480. encryption with supporting tokens. Fixed XPath query bug for
  481. soap header contents (we want s:Header/*, not s:Header).
  482. 2007-01-11 Atsushi Enomoto <[email protected]>
  483. * MessageSecurityBindingSupport.cs : more refactoring.
  484. Made it abstract and added Initiator- and Recipient- classes.
  485. Several members were moved to those derived types.
  486. * AsymmetricSecurityBindingElement.cs,
  487. SymmetricSecurityBindingElement.cs
  488. SecurityChannelFactory.cs, SecurityChannelListener.cs,
  489. SecurityRequestChannel.cs, SecurityOutputChannel.cs,
  490. SecurityRequestContext.cs, SecureMessageGenerator.cs :
  491. All dependent changes by above. Removed ISecurityChannelSource
  492. which became useless.
  493. 2007-01-11 Atsushi Enomoto <[email protected]>
  494. * SecureMessageGenerator.cs : encryption parts should exist too.
  495. * AsymmetricSecurityBindingElement.cs
  496. SymmetricSecurityBindingElement.cs,
  497. MessageSecurityBindingSupport.cs : some refactoring.
  498. Split MessageSecurityBindingSupport into security binding element
  499. specific parts and made MessageSecurityBindingSupport concrete.
  500. It is likely split again, next time based on initiator/recipient.
  501. 2007-01-11 Atsushi Enomoto <[email protected]>
  502. * MessageSecurityUtility.cs, SecureMessageGenerator.cs :
  503. split encryptor part in the former file into latter file, and
  504. make it nonstatic.
  505. * SecurityRequestChannel.cs, SecurityOutputChannel.cs,
  506. SecurityRequestContext.cs : apply the change above.
  507. 2007-01-11 Atsushi Enomoto <[email protected]>
  508. * MessageSecurityBindingSupport.cs :
  509. Fixed incorrect TrgGetValue() use.
  510. Added CollectRecipientSupportingTokens().
  511. 2007-01-11 Atsushi Enomoto <[email protected]>
  512. * MessageSecurityUtility.cs: acctually ReferenceList was inside
  513. EncryptedKey. So, when a key itself is used to encrypt data,
  514. ReferenceList is contained by itself.
  515. * MessageSecurityBindingSupport.cs :
  516. added CollectInitiatorSupportingTokens().
  517. 2007-01-10 Atsushi Enomoto <[email protected]>
  518. * MessageSecurityUtility.cs: it should support ReferenceList-less
  519. messages.
  520. 2007-01-10 Atsushi Enomoto <[email protected]>
  521. * WSSecurityMessageHeader.cs : reverted previous unnecessary change.
  522. * MessageSecurityUtility.cs : there already was uuid.
  523. 2007-01-09 Atsushi Enomoto <[email protected]>
  524. * MessageSecurityUtility.cs : replaced EncryptedKey with
  525. WrappedKeySecurityToken, which seems to be in actual use in .net.
  526. * WSSecurityMessageHeader.cs : added internal Guid so that it
  527. could be shared between header items.
  528. 2006-12-14 Atsushi Enomoto <[email protected]>
  529. * HttpRequestContext.cs, TextMessageEncoder.cs :
  530. some null arg check.
  531. 2006-12-08 Atsushi Enomoto <[email protected]>
  532. * MessageSecurityUtility.cs : reducing DOM dependency. Use KeyInfoNode
  533. for SecurityTokenReference resolution.
  534. 2006-12-08 Atsushi Enomoto <[email protected]>
  535. * MessageSecurityUtility.cs : fixed EncryptedData decryption to
  536. consider DerivedKeyTokens correctly.
  537. When creating LocalId, don't add '#' here.
  538. 2006-12-07 Atsushi Enomoto <[email protected]>
  539. * MessageSecurityUtility.cs :
  540. handle key mapping for each wsse:Security.
  541. 2006-12-07 Atsushi Enomoto <[email protected]>
  542. * WSSecurityMessageHeader.cs : use prefix "c" for ws-secureconv.
  543. 2006-12-06 Atsushi Enomoto <[email protected]>
  544. * WSSecurityMessageHeader.cs : write top-level ReferenceList in
  545. wsse:Security.
  546. * MessageSecurityUtility.cs :
  547. Now ReferenceList is placed under wsse:Security as WS-Security 1.1
  548. suggests, and it is used to dereference decryption targets.
  549. Now it premises multiple wsse:Security elements to read.
  550. 2006-12-06 Atsushi Enomoto <[email protected]>
  551. * WSSecurityMessageHeader.cs : don't write o:SecurityTokenReference
  552. manually (and actually the namespace URI was wrong).
  553. 2006-12-06 Atsushi Enomoto <[email protected]>
  554. * WSSecurityMessageHeader.cs : improved DerivedKeyToken writing
  555. and reading.
  556. * MessageSecurityUtility.cs : DerivedKeyToken creation.
  557. 2006-12-06 Atsushi Enomoto <[email protected]>
  558. * SecurityBindingElement.cs,
  559. SymmetricSecurityBindingElement.cs,
  560. AsymmetricSecurityBindingElement.cs :
  561. implemented SetKeyDerivation().
  562. 2006-12-06 Atsushi Enomoto <[email protected]>
  563. * MessageSecurityUtility.cs : don't add KeyInfoClause to EncryptedKey
  564. more than once.
  565. 2006-12-06 Atsushi Enomoto <[email protected]>
  566. * MessageBufferImpl.cs : XmlReader-based buffer is not possible, so
  567. don't use it.
  568. 2006-12-05 Atsushi Enomoto <[email protected]>
  569. * MessageSecurityUtility.cs : u:Timestamp will be encrypted/signed,
  570. thus move it in front of encryption/signing.
  571. 2006-12-04 Atsushi Enomoto <[email protected]>
  572. * TransactionFlowBindingElement.cs : OnOpen()/OnClose() should not
  573. check state by themselves (btw it's not really working).
  574. * HttpChannelListener.cs : If the url does not end with '/' add it
  575. so that it could be fed to HttpListener.
  576. 2006-12-04 Atsushi Enomoto <[email protected]>
  577. * HttpChannelFactory.cs : check scheme on CreateChannel.
  578. * MessageHeader.cs : finish IsMessageVersionSupported().
  579. 2006-12-04 Atsushi Enomoto <[email protected]>
  580. * FaultConverter.cs : new file, not used yet though.
  581. 2006-10-21 Atsushi Enomoto <[email protected]>
  582. * SvcHttpHandler.cs : set GET URL to ServiceMetadataBehavior.
  583. 2006-10-20 Atsushi Enomoto <[email protected]>
  584. * SvcHttpHandler.cs : once AspNetReplyChannel get working with HTTP
  585. GET as well as HttpReplyChannel, configuration would be ready now.
  586. 2006-10-18 Ankit Jain <[email protected]>
  587. * TextMessageEncoder.cs (MediaType): Use 'application/soap+xml' for
  588. EnvelopeVersion.Soap12 and 'text/xml' for others.
  589. * HttpReplyChannel.cs (TryReceiveRequest): Revert earlier patch for GET
  590. handling.
  591. Strip '?' from the query string.
  592. 2006-10-13 Ankit Jain <[email protected]>
  593. * MessageVersion.cs (None): Set AddressingVersion.None
  594. 2006-10-12 Atsushi Enomoto <[email protected]>
  595. * SvcHttpHandler.cs : added config-based endpoint addition code.
  596. Though due to some weird bug in mono-core it does not seem to work,
  597. so commented out for now.
  598. * HttpReplyChannel.cs : handle wsdl query parameter. btw creating
  599. mex request message might just be wrong.
  600. Use expected MessageVersion by the channel.
  601. * AspNetReplyChannel.cs : ditto. Plus, HTTP GET support.
  602. 2006-10-12 Atsushi Enomoto <[email protected]>
  603. * MessageSecurityBindingSupport.cs : added DefaultSignatureAlgorithm
  604. which differs depending on whether it is asymmetric or symmetric.
  605. * SecurityRequestChannel.cs, SecurityRequestContext.cs :
  606. simplify SecureMessage() and DecryptMessage() arguments (just
  607. take MessageSecurityBindingSupport instead of several parameters).
  608. * MessageSecurityUtility.cs :
  609. - simplify SecureMessage() and DecryptMessage() arguments (just
  610. take MessageSecurityBindingSupport instead of several parameters).
  611. - Take token inclusion mode into account. Don't include them when
  612. it is not expected. Also, change the token reference style.
  613. - add wsa:MessageID to the headers.
  614. - For hmac-sha1 signing (default for symmetric binding), use
  615. symmetric key created for encryption as well to create HMACSHA1.
  616. - add Id to wsu:Timestamp.
  617. - start to handle SecurityMessageProperty.
  618. * WSSecurityMessageHeader.cs :
  619. Added Id to WsuTimestamp. Also use prefixes for its XML output.
  620. Changed date format.
  621. 2006-10-06 Atsushi Enomoto <[email protected]>
  622. * CommunicationObject.cs : reject faulted state on Open()/Close().
  623. * MessageHeaders.cs : removed extra fields.
  624. 2006-10-06 Ankit Jain <[email protected]>
  625. * HttpReplyChannel.cs (TryReceiveRequest): Handle HTTP GET.
  626. 2006-10-05 Atsushi Enomoto <[email protected]>
  627. * MessageSecurityUtility.cs, SecurityRequestContext.cs :
  628. added some FIXMEs and additional arg.
  629. 2006-10-05 Atsushi Enomoto <[email protected]>
  630. * MessageSecurityUtility.cs : remove duplicate Action header.
  631. 2006-10-05 Atsushi Enomoto <[email protected]>
  632. * MessageFault.cs : partly implemented CreateFault(Message, int).
  633. * Message.cs, MessageImpl.cs, MessageBufferImpl.cs :
  634. handle IsFault correctly in each implementation.
  635. 2006-10-04 Ankit Jain <[email protected]>
  636. * HttpRequestChannel.cs (ProcessRequest): Read till the end.
  637. 2006-10-04 Ankit Jain <[email protected]>
  638. * HttpRequestChannel.cs (ProcessRequest): Temporary workaround for a bug
  639. in WebConnectionStream.
  640. 2006-10-04 Ankit Jain <[email protected]>
  641. * MessageHeaders.cs (To): Use GetHeader<string> till
  642. DataContractSerializer gets ISerializable support.
  643. * CustomBinding.cs (.ctor): Get scheme from TransportBindingElement.
  644. 2006-10-04 Ankit Jain <[email protected]>
  645. * ServiceHostParser.cs (Parse):
  646. (Split): Add some error checks.
  647. 2006-10-03 Atsushi Enomoto <[email protected]>
  648. * SslStreamSecurityBindingElement.cs : updated API to Sep. CTP.
  649. * StreamUpgradeAcceptor.cs : Fix AcceptUpgrade().
  650. * SslStreamSecurityUpgradeProvider.cs,
  651. SslStreamSecurityUpgradeAcceptor.cs :
  652. new files for Ssl upgrade provider implementation.
  653. * MessageSecurityUtility.cs :
  654. Create proper C14NTransform. Don't use enveloped signature
  655. transform but sign every significant bits. On securing messages
  656. use ChannelProtectionRequirements.
  657. * SecurityRequestContext.cs : pass ChannelProtectionRequirements to
  658. SecureMessage().
  659. * MessageEncoder.cs : fix API (missing constraint).
  660. * WSSecurityMessageHeader.cs : it is MustUnderstand.
  661. * StreamUpgradeProvider.cs : API fix and implemented .ctor().
  662. * AsymmetricSecurityBindingElement.cs : default protection order is
  663. SignBeforeEncryptAndEncryptSignature.
  664. 2006-09-29 Ankit Jain <[email protected]>
  665. * SvcHttpHandlerFactory.cs (GetTypeFromSvc): Extract and move code to
  666. ServicHostParser and use that here.
  667. (PrivateBinPath): New.
  668. (GetTypeFromBin): New. Load assembly from PrivateBinPath.
  669. (RemovedCallback): Remove and close the SvcHttpHandler when its
  670. corresponding file (.svc) changes.
  671. * SvcHttpHandler.cs (Close): New. Close the ServiceHost.
  672. * ServiceHostParser.cs : New.
  673. * CachingCompiler.cs : New. Code extracted from
  674. System.Web.Compilation.CachingCompiler
  675. * CompilationException.cs : New. From System.Web.Compilation
  676. * HtmlizedException.cs : New. Likewise.
  677. 2006-09-29 Atsushi Enomoto <[email protected]>
  678. * MessageSecurityBindingSupport.cs : For client side, it is always
  679. InitiatorServiceModelSecurityTokenRequirement which should be
  680. created. Fixed wrong client encryption key acquisition.
  681. 2006-09-29 Atsushi Enomoto <[email protected]>
  682. * SecurityChannelListener.cs, SecurityRequestContext.cs,
  683. MessageSecurityBindingSupport.cs : made similar changes as factories
  684. to listener so that session channels and input channels would work.
  685. Added authenticator creation.
  686. 2006-09-29 Atsushi Enomoto <[email protected]>
  687. * Binding.cs : added missing members.
  688. 2006-09-28 Atsushi Enomoto <[email protected]>
  689. * SecurityRequestChannel.cs, SecurityOutputChannel.cs,
  690. MessageSecurityUtility.cs, MessageSecurityBindingSupport.cs :
  691. reduce code duplication between request and output channels.
  692. The common parts are now in MessageSecurityBindingSupport.
  693. Now reduced several arguments in SecureMessage() for client.
  694. 2006-09-28 Atsushi Enomoto <[email protected]>
  695. * ChannelFactoryBase.cs : implemented ValidateCreateChannel().
  696. 2006-09-28 Atsushi Enomoto <[email protected]>
  697. * AsymmetricSecurityBindingElement.cs,
  698. SecurityChannelListener.cs,
  699. SecurityRequestContext.cs,
  700. SymmetricSecurityBindingElement.cs,
  701. SecurityRequestChannel.cs,
  702. SecurityOutputChannel.cs,
  703. SecurityChannelFactory.cs,
  704. MessageSecurityBindingSupport.cs : 1) Refactoring.
  705. IMessageSecurityBindingSupport now becomes a class and contains
  706. all the members which resided in ISecurityChannelSource.
  707. Now it takes more constructor params.
  708. Made dependent changes on all sources above.
  709. 2) Added SecurityTokenAuthenticator creation in
  710. SecurityRequestChannel (SecurityOutputChannel should do the same).
  711. 2006-09-27 Atsushi Enomoto <[email protected]>
  712. * SecurityRequestChannel.cs : ongoing improvements on conditional
  713. key creation. Actually there must be some part that creates an
  714. authenticator (WinFX does that).
  715. 2006-09-27 Ankit Jain <[email protected]>
  716. Add suport for handling .svc files.
  717. * SvcHttpHandlerFactory.cs: New.
  718. * SvcHttpHandler.cs: New.
  719. * HttpChannelListener.cs (PopulateChannel): Use AspNetReplyChannel if in
  720. asp.net environment.
  721. (OnOpen): Do nothing in asp.net environment.
  722. (OnClose): Likewise.
  723. * HttpReplyChannel.cs (HttpRequestContext): Move to ..
  724. * HttpRequestContext.cs: .. here.
  725. * AspNetReplyChannel.cs: New.
  726. * AspNetRequestContext.cs: New.
  727. 2006-09-26 Atsushi Enomoto <[email protected]>
  728. * MessageSecurityUtility.cs :
  729. Significantly rewritten decryption parts to respect ReferenceList
  730. to decrypt (so no workaround anymore).
  731. Now e:ReferenceList inside o:Security is treated as the referenced
  732. EncryptedType items are encrypted by 1) the derived key which is
  733. immediately in front of it, or 2) the default key (it is according
  734. to WS-SecureConversation section 9.1). Thus removed immediately
  735. previous hack to auto-fill wsu:Id attributes.
  736. On securing a message, generate correct Id and add DataReference
  737. to ReferenceList properly.
  738. 2006-09-26 Atsushi Enomoto <[email protected]>
  739. * WSSecurityMessageHeader.cs : handle ReferenceList. It is being
  740. practically used.
  741. 2006-09-26 Atsushi Enomoto <[email protected]>
  742. * WSSecurityMessageHeader.cs : handle DerivedKeyToken as a header content.
  743. Actually WSSecurityTokenSerializer should be able to consume it, but after
  744. spending a lot of time I still cannot successfully read it on WinFX.
  745. Skip ReferenceList for now.
  746. * MessageSecurityUtility.cs :
  747. Replaced some string literals with constants.
  748. Added some workaround for DerivedKeyToken retrieval.
  749. WinFX somehow sends incomplete ISO10126 padding which contains
  750. bigger number than the key size and is rejected by EncryptedXml,
  751. so added DecryptLax() which processes such ones in PaddingMode.None
  752. to workaround it (only for cross-connection between mono and winfx).
  753. Added some incomplete implicit wsu:Id processing.
  754. Don't try to replace SignedXml with EncryptedData. It is not added
  755. to the document tree.
  756. 2006-09-25 Atsushi Enomoto <[email protected]>
  757. * MessageSecurityUtility.cs : support message signature encryption. Some
  758. more refactoring.
  759. 2006-09-22 Atsushi Enomoto <[email protected]>
  760. * SecurityBindingElement.cs : implement Clone(). Remove some MonoTODOs.
  761. 2006-09-22 Atsushi Enomoto <[email protected]>
  762. * MessageSecurityUtility.cs : fix warnings.
  763. 2006-09-22 Atsushi Enomoto <[email protected]>
  764. * MessageSecurityUtility.cs : actually there would be more than one
  765. EncryptedData. Decrypt all.
  766. 2006-09-22 Atsushi Enomoto <[email protected]>
  767. * MessageSecurityUtility.cs : supply correct URIs in SecureMessage().
  768. Use ISO10126 padding mode (it is not required but in manner).
  769. 2006-09-21 Atsushi Enomoto <[email protected]>
  770. * MessageSecurityUtility.cs : now that EncryptedXml decryption bug is
  771. fixed, remove 16 bytes workaround (we still need encryption bugfix in
  772. that class to make it work fine with mono client).
  773. Removed buggy lines that reset decryption key to AES.
  774. Modified GetKey() argument to take EncryptedData/EncryptedKey element.
  775. * WSSecurityMessageHeader.cs :
  776. (SecurityTokenReferenceKeyInfo) support LoadXml.
  777. 2006-09-20 Atsushi Enomoto <[email protected]>
  778. * TransactionMessageProperty.cs : new file.
  779. 2006-09-20 Atsushi Enomoto <[email protected]>
  780. * ChannelPoolSettings.cs, OneWayBindingElement.cs : build fix, as
  781. gmcs happened to report wrong code.
  782. 2006-09-19 Atsushi Enomoto <[email protected]>
  783. * SecurityChannelFactory.cs, SecurityChannelListener.cs :
  784. .ctor() now requires ChannelProtectionRequirements which will be
  785. supplied via BindingParameterCollection.
  786. * SymmetricSecurityBindingElement.cs,
  787. AsymmetricSecurityBindingElement.cs : thus add
  788. ChannelProtectionRequirement parameter to factory/listener.
  789. * SecurityRequestChannel.cs : use recipient token requirement to
  790. create an encryption token. Thus differentiate the logic from
  791. signing (initiator) token.
  792. 2006-09-19 Atsushi Enomoto <[email protected]>
  793. * SymmetricSecurityChannelFactory.cs, SecurityChannelFactory.cs :
  794. renamed former to latter.
  795. * SymmetricSecurityChannelListener.cs, SecurityChannelListener.cs :
  796. ditto.
  797. 2006-09-19 Atsushi Enomoto <[email protected]>
  798. * MessageSecurityBindingSupport.cs : new internal types to commonize
  799. AsymmetricSecurityBindingElement and SymmetricSecurityBindingElement
  800. and thus make internal factory and listener reusable.
  801. * SymmetricSecurityChannelFactory.cs, SecurityRequestContext.cs,
  802. SecurityRequestChannel.cs, SecurityOutputChannel.cs,
  803. SymmetricSecurityChannelListener.cs : rewrote dependent parts on
  804. SymmetricSecurityBindingElement, using the new types above.
  805. * SymmetricSecurityBindingElement.cs :
  806. Use SymmetricMessageSecurityBindingSupport.
  807. * AsymmetricSecurityBindingElement.cs :
  808. thus implemented, using AsymmetricMessageSecurityBindingSupport.
  809. 2006-09-19 Atsushi Enomoto <[email protected]>
  810. * ChannelFactoryBase.cs : more RC1 update.
  811. 2006-09-19 Atsushi Enomoto <[email protected]>
  812. * MessageEncoder.cs, BinaryMessageEncoder.cs, MtomMessageEncoder.cs,
  813. TextMessageEncoder.cs : updated ReadMessage() API to RC1.
  814. * ChannelListenerBase.cs, ChannelListenerBase_1.cs,
  815. ChannelBase.cs : RC1 API updates.
  816. * MessageImpl.cs : implemented Properties.
  817. * HttpReplyChannel.cs : added HttpRequestMessageProperty support.
  818. 2006-09-18 Ankit Jain <[email protected]>
  819. * MessageHeaders.cs (MessageId):
  820. (RelatesTo): UniqueId is not serializable, serialize it as a string.
  821. 2006-09-17 Atsushi Enomoto <[email protected]>
  822. * ChannelParameterCollection.cs : new file.
  823. * LayeredOutputChannel.cs, SecurityOutputChannel.cs :
  824. new files for IOutputChannel implementation.
  825. * OneWayBindingElement.cs : hacky implementation.
  826. * SymmetricSecurityChannelFactory.cs : support IOutputChannel.
  827. * MessageSecurityUtility.cs : now create identifier from the security
  828. token and the token parameters which is added as an argument.
  829. * SecurityRequestContext.cs,
  830. SecurityRequestChannel.cs : SecureMessage() argument changes.
  831. Set MessageSecurityVersion (SecurityTokenVersion) to the token
  832. requirement.
  833. 2006-09-17 Atsushi Enomoto <[email protected]>
  834. * HttpRequestChannel.cs : close the HttpWebRequest.
  835. 2006-09-17 Atsushi Enomoto <[email protected]>
  836. * HttpRequestChannel.cs,
  837. HttpChannelFactory.cs : implement async request/reply.
  838. * HttpChannelFactory.cs :
  839. verify factory state when creating a channel.
  840. 2006-09-17 Atsushi Enomoto <[email protected]>
  841. * MessageEncoder.cs, TextMessageEncoder.cs, MtomMessageEncoder.cs,
  842. BinaryMessageEncoder.cs : added message version mismatch check.
  843. 2006-09-15 Atsushi Enomoto <[email protected]>
  844. * SymmetricSecurityChannelListener.cs, SecurityRequestContext.cs :
  845. Making incomplete changes to handle different tokens for encryption
  846. and signature.
  847. * SymmetricSecurityChannelFactory.cs, SecurityRequestChannel.cs :
  848. split channel implementation classes out to the latter file.
  849. * MessageSecurityUtility.cs : seems like there is
  850. TimeStampValidityDuration property, so use it (incomplete; a server
  851. needs another love).
  852. 2006-09-12 Atsushi Enomoto <[email protected]>
  853. * MessageSecurityUtility.cs, SymmetricSecurityChannelFactory.cs,
  854. SecurityRequestContext.cs : now that we have key identifier clause
  855. and working ResolveKeyIdentifierClause(), just create keys inside
  856. SecureMessage(). Add KeyInfo to the xmldsig.
  857. 2006-09-12 Atsushi Enomoto <[email protected]>
  858. * SymmetricSecurityChannelFactory.cs, SecurityRequestContext.cs :
  859. pass SecurityKeyIdentifierClause to SecureMessage().
  860. * SecurityBindingElement.cs : set X509ReferenceStyle as Thumbprint
  861. for IssuedToken binding element.
  862. * SymmetricSecurityChannelListener.cs : removed hack to just create
  863. X509 security token, and implemented correct token creation.
  864. * WSSecurityMessageHeader.cs : added new KeyInfoClause type that
  865. wraps SecurityTokenReference element.
  866. * MessageSecurityUtility.cs : use the above.
  867. 2006-09-08 Atsushi Enomoto <[email protected]>
  868. * MessageSecurityUtility.cs : raise MessageSecurityException when it
  869. could not find a security header.
  870. * SymmetricSecurityChannelFactory.cs : now it also supports
  871. IRequestSessionChannel. Extracted SecurityRequestChannel out from
  872. the factory type.
  873. 2006-09-08 Atsushi Enomoto <[email protected]>
  874. * SecurityRequestContext.cs : moved securing message part to
  875. MessageSecurityUtility.cs.
  876. * MessageSecurityUtility.cs : the change above.
  877. use DateTime.Now for timestamp basis. Don't append signature to
  878. the document. Instead it is added to the header. Capture body
  879. content instead of the body itself.
  880. * SymmetricSecurityChannelFactory.cs : decrypt reply message to
  881. be processed by upper layers.
  882. 2006-09-08 Atsushi Enomoto <[email protected]>
  883. * MessageSecurityUtility.cs, WSSecurityMessageHeader.cs,
  884. SymmetricSecurityChannelListener.cs,
  885. SymmetricSecurityChannelFactory.cs, SecurityRequestContext.cs :
  886. more refactoring. Request serialization became much more conformant
  887. and add required header items.
  888. Security Token retrieval is needed to send it in the request.
  889. Fixed wrong key encryption.
  890. 2006-09-07 Atsushi Enomoto <[email protected]>
  891. * SecurityRequestContext.cs : the workaround was not functional.
  892. 2006-09-07 Atsushi Enomoto <[email protected]>
  893. * SecurityRequestContext.cs : some more refactoring. Use EncryptedXml
  894. API, especially ReplaceData(), instead of native crypto stuff.
  895. * WSSecurityMessageHeader.cs : handle dsig:Signature as well (for
  896. MessageProtectionOrder.SignBeforeEncrypt).
  897. 2006-09-07 Atsushi Enomoto <[email protected]>
  898. * SecurityRequestContext.cs : label should be combined of both
  899. the client's and the server's.
  900. 2006-09-06 Atsushi Enomoto <[email protected]>
  901. * SecurityRequestContext.cs : enable key derivation (though for now
  902. GenerateDerivedKey() is unimplemented). Create meaningful,
  903. decrypted request message to be consumed by the upper layer.
  904. 2006-09-06 Atsushi Enomoto <[email protected]>
  905. * SecurityRequestContext.cs : implement Close() and Reply().
  906. ongoing implementation of Reply(TimeSpan).
  907. * MessageSecurityUtility.cs : new file to collect utility methods.
  908. * SymmetricSecurityChannelFactory.cs : moved securing message code
  909. to the above file.
  910. * SymmetricSecurityChannelListener.cs : tiny renaming.
  911. 2006-09-06 Atsushi Enomoto <[email protected]>
  912. * SecurityRequestContext.cs : security header is also stored.
  913. removed NotImpl.
  914. * WSSecurityMessageHeader.cs : read EncryptedKey and EncryptedData
  915. as well.
  916. 2006-09-06 Atsushi Enomoto <[email protected]>
  917. * SymmetricSecurityChannelFactory.cs : tiny progress on securing
  918. message.
  919. 2006-09-05 Atsushi Enomoto <[email protected]>
  920. * SymmetricSecurityChannelFactory.cs : specify KeyUsage.Exchange
  921. so that it retrieves the security key in that manner.
  922. 2006-09-05 Atsushi Enomoto <[email protected]>
  923. * Binding.cs : MessageVersion is null when there is no
  924. MessageEncodingBindingElement.
  925. * Message.cs : null arg check.
  926. 2006-09-05 Atsushi Enomoto <[email protected]>
  927. * ChannelPoolSettings.cs, OneWayBindingElement.cs : new files.
  928. 2006-09-04 Atsushi Enomoto <[email protected]>
  929. * SymmetricSecurityChannelListener.cs, SecurityRequestContext.cs,
  930. LayeredReplyChannel.cs, LayeredCommunicationObject.cs,
  931. LayeredRequestChannel.cs : some refactoring.
  932. * SymmetricSecurityChannelFactory.cs :
  933. ongoing secure message creation implementation.
  934. 2006-09-01 Atsushi Enomoto <[email protected]>
  935. * SymmetricSecurityBindingElement.cs :
  936. pass specific ServiceCredentialsSecurityTokenManager type to
  937. SymmetricSecurityChannelListener as it needs ServiceCertificate.
  938. * SymmetricSecurityChannelListener.cs :
  939. get service certificate. It's a temporary hack.
  940. Move RequestContext code to below.
  941. * SecurityRequestContext.cs : new file.
  942. * WSSecurityMessageHeader.cs : implementing Read(), but to finish
  943. it I have to finish decryption of the incoming message.
  944. 2006-08-31 Atsushi Enomoto <[email protected]>
  945. * MessageImpl.cs : don't write attributes on the first body content
  946. element *on soap Body element*.
  947. * MessageBufferImpl.cs : don't throw ArgumentNullException.
  948. ObjectDisposedException is appropriate.
  949. * MessageHeader.cs : (RawMessageHeader) don't write element itself
  950. in OnWriteHeader*Contents*().
  951. 2006-08-31 Atsushi Enomoto <[email protected]>
  952. * WSSecurityMessageHeader.cs : new file.
  953. * SymmetricSecurityChannelFactory.cs :
  954. moved WSSecurityHeader and related types to the above.
  955. * SymmetricSecurityChannelListener.cs :
  956. reject SOAP-env-less message.
  957. 2006-08-31 Atsushi Enomoto <[email protected]>
  958. * SecurityChannelListener.cs, SymmetricSecurityChannelListener.cs :
  959. renamed former to latter.
  960. * SymmetricSecurityChannelFactory.cs :
  961. create requirements every time. It is also likely that I need
  962. another requirement instance to get service credentials here.
  963. 2006-08-30 Atsushi Enomoto <[email protected]>
  964. * SymmetricSecurityBindingElement.cs : make BuildChannelListener()
  965. similar to BuildChannelFactory() (set credentials, issuer binding
  966. context etc.).
  967. * SecurityChannelListener.cs :
  968. more ongoing security support implementation.
  969. * SymmetricSecurityChannelFactory.cs :
  970. moved GetSecurityKey() to SymmetricSecurityRequestChannel.
  971. 2006-08-29 Atsushi Enomoto <[email protected]>
  972. * SecurityChannelListener.cs, SymmetricSecurityBindingElement.cs :
  973. Renamed SecurityChannelListener to SymmetricSecurityChannelListener.
  974. Implementation is underway.
  975. * LayeredReplyChannel.cs :
  976. like LayeredRequestChannel, use ChannelListenerBase to provide
  977. default timeouts.
  978. 2006-08-29 Atsushi Enomoto <[email protected]>
  979. * MessageHeader.cs : added another implementation type that uses
  980. XmlElement, for buffering purpose.
  981. * MessageImpl.cs : Header item types are user-driven by
  982. MessageHeader.GetHeader<T>(int), so at storing phase just store
  983. nodes as XmlElement.
  984. * MessageHeaders.cs : avoid dumping XmlNode to string to create
  985. another XmlReader.
  986. 2006-08-28 Atsushi Enomoto <[email protected]>
  987. * SymmetricSecurityBindingElement.cs : find ClientCredentials from
  988. BindingParameterCollection, not from binding element properties.
  989. 2006-08-28 Atsushi Enomoto <[email protected]>
  990. * SecurityChannelFactory.cs, SymmetricSecurityChannelFactory.cs :
  991. renamed former to latter.
  992. 2006-08-25 Atsushi Enomoto <[email protected]>
  993. * SecurityBindingElement.cs : SetIssuerBindingContext should also
  994. work for SslSecurityTokenParameters.
  995. 2006-08-24 Atsushi Enomoto <[email protected]>
  996. * SecurityBindingElement.cs :
  997. Added SetIssuerBindingContextIfRequired().
  998. * SecurityChannelFactory.cs :
  999. Changed .ctor() arg again, just to receive binding element.
  1000. * SymmetricSecurityBindingElement.cs :
  1001. Call SetIssuerBindingContextIfRequired() in BuildChannelFactory().
  1002. SymmetricSecurityChannelFactory .ctor() arg changes.
  1003. "ProtectionTokenParameters" is not passed now.
  1004. 2006-08-23 Atsushi Enomoto <[email protected]>
  1005. * SymmetricSecurityBindingElement.cs : requirements should be
  1006. filled at InitializeSecurityTokenParameters as long as possible.
  1007. SymmetricSecurityChannelFactory<T> now does not receive
  1008. requirements (it now creates one inside it) at .ctor().
  1009. * SecurityChannelFactory.cs : remove requirement argument.
  1010. 2006-08-23 Atsushi Enomoto <[email protected]>
  1011. * SymmetricSecurityBindingElement.cs : implemented copy constructor.
  1012. 2006-08-22 Atsushi Enomoto <[email protected]>
  1013. * SymmetricSecurityBindingElement.cs :
  1014. MessageSecurityVersion property is of type SecurityTokenVersion.
  1015. * SecurityBindingElement.cs :
  1016. Implemented CreateSecureConversationBindingElement().
  1017. For CreateIssuedTokenBindingElement(), ProtectionTokenParameters is
  1018. the argument IssuedSecurityTokenParameters itself.
  1019. 2006-08-22 Atsushi Enomoto <[email protected]>
  1020. * SymmetricSecurityBindingElement.cs :
  1021. CreateSecurityTokenManager() can be directly used now.
  1022. Use CallInitializeSecurityTokenRequirement() to fill requirement
  1023. properties.
  1024. 2006-08-16 Atsushi Enomoto <[email protected]>
  1025. * ChannelFactoryBase.cs : GetProperty() is virtual.
  1026. 2006-08-14 Atsushi Enomoto <[email protected]>
  1027. * SymmetricSecurityBindingElement.cs : in BuildChannelFactory(),
  1028. create token manager, token parameters and token requirements,
  1029. and fill some requirements.
  1030. * TransportBindingElement.cs, HttpTransportBindingElement.cs,
  1031. TextMessageEncodingBindingElement.cs : workaround to not throw NIE.
  1032. * BindingContext.cs : implemented RemainingBindingElements.
  1033. kill "no remaining binding element" error in GetInnerProperty()
  1034. * SecurityChannelFactory.cs : now it became
  1035. SymmetricSecurityChannelFactory, thus soon to be renamed.
  1036. Several ongoing actual security resolution is on.
  1037. 2006-08-11 Atsushi Enomoto <[email protected]>
  1038. * CommunicationObject.cs :
  1039. add GetCommunicationObjectType() and use it.
  1040. * ChannelFactoryBase.cs, ChannelListenerBase_1.cs :
  1041. use ThrowIfDisposedOrNotOpen().
  1042. * LayeredCommunicationObject.cs : have similar ThrowIf...() methods
  1043. to CommunicationObject. Make it IDisposable.
  1044. * LayeredRequestChannel.cs : use above.
  1045. * SecurityChannelFactory.cs : removed state check as it is done at
  1046. above class.
  1047. 2006-08-10 Atsushi Enomoto <[email protected]>
  1048. * SecurityBindingElement.cs : (CanBuildChannelFactory and
  1049. CanBuildChannelListener) directly dispatch to BindingContext.
  1050. * SymmetricSecurityBindingElement.cs : require protection token
  1051. parameters before building a channel or a listener.
  1052. * ChannelFactoryBase.cs : raise an error when a channel is being
  1053. created without opening the factory.
  1054. * ChannelListenerBase_1.cs : ditto for the listener.
  1055. * SecurityChannelFactory.cs : before sending a request, it must be
  1056. opened.
  1057. 2006-08-07 Atsushi Enomoto <[email protected]>
  1058. * MessageBufferImpl.cs : initialize fields.
  1059. workaround BufferSize just to return 0.
  1060. * MessageImpl.cs : for BodyWriter, don't use DefaultMessageBuffer
  1061. which does not support multi time write.
  1062. * Message.cs : implemented State.
  1063. 2006-08-07 Atsushi Enomoto <[email protected]>
  1064. * Message.cs : OnGetBodyAttribute() cannot return anything unless it
  1065. is consuming XmlReader.
  1066. Implemented OnCreateBufferedCopy(), to return XPathMessageBuffer.
  1067. * MessageBuffer.cs : implemented CreateNavigator().
  1068. * MessageBufferImpl.cs : added XPathMessageBuffer class.
  1069. I kinda know that MS heavily depends on binary XmlReader and may have
  1070. XPathNavigator implementation based on the binary stuff, but at
  1071. least for now we have almost no motivation to mimick it.
  1072. 2006-08-07 Atsushi Enomoto <[email protected]>
  1073. * SecurityChannelFactory.cs : a bit more of security header code.
  1074. 2006-08-04 Atsushi Enomoto <[email protected]>
  1075. * SymmetricSecurityBindingElement.cs :
  1076. set default MessageProtectionOrder in every construction.
  1077. 2006-08-03 Atsushi Enomoto <[email protected]>
  1078. * LayeredRequestChannel.cs, SecurityChannelFactory.cs :
  1079. changed to require ChannelFactoryBase to support default timeout.
  1080. Made some methods non-virtual. Preparing code to add security
  1081. headers (empty yet).
  1082. * SecurityBindingElement.cs : implemented several factory methods
  1083. that return SymmetricSecurityBindingElement.
  1084. 2006-08-02 Atsushi Enomoto <[email protected]>
  1085. * IStreamUpgradeBindingElement.cs,
  1086. StreamUpgradeBindingElement.cs : renamed from former to latter.
  1087. 2006-08-02 Atsushi Enomoto <[email protected]>
  1088. * IStreamUpgradeBindingElement.cs : API update, soon to be renamed.
  1089. 2006-07-31 Ankit Jain <[email protected]>
  1090. * MessageHeaders.cs (From): Use Constants.WSA1
  1091. (MessageId): Implement the same pattern as other properties (From etc).
  1092. 2006-07-28 Atsushi Enomoto <[email protected]>
  1093. * LocalClientSecuritySettings.cs : initialize IdentityVerifier as well.
  1094. * SecurityBindingElement.cs : some cosmetic changes.
  1095. 2006-07-28 Atsushi Enomoto <[email protected]>
  1096. * SecurityBindingElement.cs : LocalClientSettings and
  1097. LocalServiceSettings returns an instance for each.
  1098. * LocalClientSecuritySettings.cs : initialized fields.
  1099. 2006-07-28 Atsushi Enomoto <[email protected]>
  1100. * LocalClientSecuritySettings.cs : moved from S.SM.Description, and
  1101. kinda implemented Clone() just with MemberwiseClone().
  1102. 2006-07-27 Ankit Jain <[email protected]>
  1103. * MessageHeaders.cs (set_To): Use Uri.AbsoluteUri .
  1104. * MessageHeader.cs (knownTypes): New. Known type array containing
  1105. EndpointAddress10.
  1106. (CreateHeader): Use knownTypes with the DataContractSerializer .ctor
  1107. 2006-07-21 Atsushi Enomoto <[email protected]>
  1108. * LayeredRequestChannel.cs, LayeredReplyChannel.cs,
  1109. LayeredCommunicationObject.cs,
  1110. SecurityChannelFactory.cs, SecurityChannelListener.cs :
  1111. new files to support security channels, though right now they
  1112. just pass inner channels through.
  1113. * SymmetricSecurityBindingElement.cs : use above.
  1114. 2006-07-21 Atsushi Enomoto <[email protected]>
  1115. * AsymmetricSecurityBindingElement.cs,
  1116. SymmetricSecurityBindingElement.cs :
  1117. Default SecurityTokenParameters is null.
  1118. 2006-07-20 Atsushi Enomoto <[email protected]>
  1119. * AsymmetricSecurityBindingElement.cs : remove NotImpl for now.
  1120. 2006-07-20 Atsushi Enomoto <[email protected]>
  1121. * Message.cs : When EnvelopeVersion is None, don't write SOAP
  1122. envelope.
  1123. * MessageHeader.cs : don't write headers when EnvelopeVersion is None.
  1124. * MessageHeaders.cs : When EnvelopeVersion is None, don't output
  1125. headers. When AddressingVersion is None, don't output addressing
  1126. headers as well, except for Action which is still needed by
  1127. service dispatcher.
  1128. 2006-07-20 Atsushi Enomoto <[email protected]>
  1129. * MessageHeaders.cs : changed specific properties to find it from
  1130. headers as Action property does (local variables won't be set by
  1131. setter). Cache serializers. Check null serializer arguments.
  1132. For EndpointAddress, GetHeader<T>() shouldn't use serializer.
  1133. 2006-07-19 Atsushi Enomoto <[email protected]>
  1134. * MessageHeader.cs : WriteTo() should treat EndpointAddress to not
  1135. use XmlObjectSerializer (since it is not data contract type).
  1136. 2006-07-18 Atsushi Enomoto <[email protected]>
  1137. * MessageImpl.cs : Improved ReadHeaders().
  1138. For certain header items, use EndpointAddress.ReadFrom().
  1139. 2006-07-18 Atsushi Enomoto <[email protected]>
  1140. * AsymmetricSecurityBindingElement.cs :
  1141. it is not ISecurityCapabilities anymore.
  1142. 2006-07-18 Atsushi Enomoto <[email protected]>
  1143. * MessageVersion.cs : added None.
  1144. 2006-07-14 Atsushi Enomoto <[email protected]>
  1145. * Message.cs : GetReaderAtBodyContents() implementation using
  1146. writer methods.
  1147. 2006-07-13 Atsushi Enomoto <[email protected]>
  1148. * Message.cs : CreateMessage(version,action,xmlReader) incorrectly
  1149. used MessageVersion.Default.
  1150. 2006-07-12 Duncan Mak <[email protected]>
  1151. * MessageBuffer.cs (MessageContentType): Return
  1152. "application/soap+msbin1".
  1153. * MessageImpl.cs (EmptyMessage.OnCreateBufferedCopy):
  1154. (SimpleMessage.OnCreateBufferedCopy):
  1155. (XmlReaderMessage.OnCreateBufferedCopy): Hook up with the new
  1156. MessageBuffer implementations.
  1157. * MessageBufferImpl.cs: Concrete implmentations for MessageBuffer.
  1158. (DefaultMessageBuffer): Used by EmptyMessage and SimpleMessage.
  1159. (XmlReaderMessageBuffer): Used by XmlReaderMessage.
  1160. 2006-07-12 Atsushi Enomoto <[email protected]>
  1161. * MessageImpl.cs : Action should be added in request messages. Omit
  1162. it only in reply message, thus moved to dispatcher logic.
  1163. 2006-07-12 Ankit Jain <[email protected]>
  1164. * HttpRequestChannel.cs (HttpRequestChannel.Request): Workaround for a
  1165. bug in WebConnectionStream.
  1166. * MessageHeaders.cs (MessageHeaders.From):
  1167. (MessageHeaders.ReplyTo):
  1168. (MessageHeaders.To): Add the corresponding MessageHeader on set.
  1169. 2006-07-11 Atsushi Enomoto <[email protected]>
  1170. * MessageImpl.cs : when AddressingVersion is None (e.g. POX), don't
  1171. add SOAP Action to the response at any time.
  1172. 2006-07-10 Atsushi Enomoto <[email protected]>
  1173. * SymmetricSecurityBindingElement.cs,
  1174. SecurityBindingElement.cs : They are not ISecurityCapabilities now.
  1175. Implemented .ctor() and some properties.
  1176. 2006-07-10 Atsushi Enomoto <[email protected]>
  1177. * TransactionFlowBindingElement.cs : new file.
  1178. * HttpTransportBindingElement.cs : added missing KeepAliveEnabled.
  1179. 2006-07-06 Atsushi Enomoto <[email protected]>
  1180. * MessageFault.cs :
  1181. DefaultAction vanished. CreateFault() now takes bufferSize arg.
  1182. * MessageHeaders.cs : ArgumentException -> MessageHeaderException.
  1183. * AddressingVersion.cs : added None. Equals() and GetHashCode()
  1184. vanished (there is anyways no way to instantiate this type).
  1185. * MessageVersion.cs : added Soap11 and Soap12.
  1186. * TextMessageEncoder.cs : silly quotation mark wrapper disappeared
  1187. in June CTP. goodie.
  1188. 2006-07-05 Atsushi Enomoto <[email protected]>
  1189. * MtomMessageEncoder.cs, BinaryMessageEncoder.cs, Message.cs :
  1190. removed some vanished CreateMessage() overloads.
  1191. 2006-07-05 Atsushi Enomoto <[email protected]>
  1192. * CustomBinding.cs, HttpsTransportBindingElement.cs,
  1193. HttpTransportBindingElement.cs :
  1194. They are not ISecurityCapabilities anymore.
  1195. Modified code to match June CTP behavior.
  1196. 2006-07-05 Atsushi Enomoto <[email protected]>
  1197. * StreamSecurityUpgradeProvider.cs : Identity -> EndpointIdentity.
  1198. 2006-07-05 Atsushi Enomoto <[email protected]>
  1199. * EmptyFaultException.cs : removed unused code.
  1200. * IRequestContext.cs, RequestContext.cs : renamed former to latter.
  1201. 2006-07-05 Atsushi Enomoto <[email protected]>
  1202. * LayeredChannelFactory.cs : removed obsolete class.
  1203. * ChannelFactoryBase.cs, HttpChannelFactory.cs,
  1204. ChannelListenerBase.cs, HttpChannelListener.cs,
  1205. HttpReplyChannel.cs, ChannelManagerBase.cs :
  1206. all those changes were brought by ChannelManagerBase changes.
  1207. 2006-07-05 Atsushi Enomoto <[email protected]>
  1208. * ReplyChannelBase.cs, HttpChannelFactory.cs, ChannelBase.cs
  1209. CommunicationObject.cs, HttpChannelListener.cs,
  1210. ChannelFactoryBase.cs :
  1211. CommunicationObject abstract changes brought this madness.
  1212. 2006-07-05 Atsushi Enomoto <[email protected]>
  1213. * BindingContext.cs : listenUri address parameters could be null in
  1214. June CTP.
  1215. 2006-07-05 Atsushi Enomoto <[email protected]>
  1216. * IRequestContext.cs :
  1217. Now it became a class. File renaming will follow soon.
  1218. * IChannelFactory.cs, IInputChannel.cs, IReplyChannel.cs,
  1219. IDuplexChannel.cs, IDuplexSessionChannel.cs,
  1220. IOutputChannel.cs, IOutputSessionChannel.cs,
  1221. IRequestChannel.cs, IRequestSessionChannel.cs :
  1222. They are not IDisposable anymore.
  1223. For IReplyChannel, IRequestContext -> RequestContext.
  1224. * IChannelListener.cs : removed Identity. Added GetProperty().
  1225. * ChannelListenerBase.cs, ChannelListenerBase.cs,
  1226. ReplyChannelBase.cs, HttpReplyChannel.cs :
  1227. Several members disappeared, and dependent changes.
  1228. * HttpTransportBindingElement.cs,
  1229. HttpChannelListener.cs, :
  1230. ChannelListenerBase.SharedChannelListener vanished.
  1231. 2006-07-05 Atsushi Enomoto <[email protected]>
  1232. * MessageEncodingBindingElement.cs
  1233. MtomMessageEncodingBindingElement.cs,
  1234. TextMessageEncodingBindingElement.cs,
  1235. BinaryMessageEncodingBindingElement.cs :
  1236. June CTP updates: AddressingVersion -> MessageVersion.
  1237. * Binding.cs : June CTP. MessageVersion is added.
  1238. * ChannelBase.cs, BindingContext.cs, IChannel.cs
  1239. ChannelListenerBase_1.cs,
  1240. ChannelListenerBase.cs, IChannelListener.cs,
  1241. IChannelFactory.cs,
  1242. ChannelFactoryBase.cs, ChannelManagerBase.cs :
  1243. June CTP. Several interface changes.
  1244. * HttpTransportBindingElement.cs : June CTP. HttpMappingMode is gone.
  1245. * IChannelManager.cs, LayeredChannelListener.cs,
  1246. GenericWrapperChannelFactory.cs,
  1247. GenericWrapperChannelListener.cs : They are not used anymore.
  1248. 2006-07-04 Atsushi Enomoto <[email protected]>
  1249. * MtomMessageEncoder.cs, BinaryMessageEncoder.cs :
  1250. sync fix with June CTP API updates.
  1251. 2006-07-03 Ankit Jain <[email protected]>
  1252. * MessageEncodingBindingElementConverter.cs:
  1253. * StandardBindingConverter.cs:
  1254. * TransportBindingElementConverter.cs:
  1255. * TransactionFlowBindingElementConverter.cs:
  1256. * ReliableSessionBindingElementConverter.cs:
  1257. * SecurityBindingElementConverter.cs:
  1258. Rename *Converter.cs to *Importer.cs
  1259. * TransferMode.cs: Move to System.ServiceModel
  1260. 2006-06-22 Atsushi Enomoto <[email protected]>
  1261. * CommunicationObject.cs : make sure to change State before
  1262. OnClosing/OnClosed/OnOpening/OnOpened when they are overriden.
  1263. 2006-06-20 Atsushi Enomoto <[email protected]>
  1264. * Message.cs : output WSAddressing xmlns only when Action is
  1265. specified (To should be affected, but seems like it is ignored).
  1266. 2006-06-20 Atsushi Enomoto <[email protected]>
  1267. * MessageImpl.cs : don't set Action when it is null.
  1268. 2006-06-12 Ankit Jain <[email protected]>
  1269. * TransportBindingElementConverter.cs (ImportEndpoint): Implement.
  1270. 2006-05-29 Atsushi Enomoto <[email protected]>
  1271. * SecurityBindingElement.cs, SecurityBindingElementConverter.cs :
  1272. some updated API fixes.
  1273. 2006-05-29 Atsushi Enomoto <[email protected]>
  1274. * EnvelopeVersion.cs : moved back to S.SM.
  1275. 2006-05-29 Atsushi Enomoto <[email protected]>
  1276. * IBindingManualAddressing.cs : vanished in beta2.
  1277. * HostedTransportConfiguration.cs, EnvelopeVersion.cs,
  1278. LocalClientSecuritySettings.cs, LocalServiceSecuritySettings.cs :
  1279. namespace changes.
  1280. * SecurityBindingElement.cs :
  1281. SecurityStandardsManager -> SecurityTokenSerializer.
  1282. 2006-05-29 Atsushi Enomoto <[email protected]>
  1283. * XmlSerializerBodyWriter.cs : new file to handle
  1284. TypedMessageConverter.ToMessage().
  1285. 2006-04-26 Ankit Jain <[email protected]>
  1286. * TransportBindingElementConverter.cs (BeforeImport): Remove
  1287. NotImplementedException.
  1288. (ImportContract): Likewise.
  1289. * CustomBinding.cs (.ctor): Use scheme from the binding parameter.
  1290. 2006-04-14 Atsushi Enomoto <[email protected]>
  1291. * HttpRequestChannel.cs, HttpChannelFactory.cs : message encoder
  1292. being used was not reflecting that of Binding elements.
  1293. 2006-04-07 Atsushi Enomoto <[email protected]>
  1294. * HttpReplyChannel.cs : when SOAP action is not set as a header item,
  1295. just assume that it is in the message.
  1296. 2006-04-06 Atsushi Enomoto <[email protected]>
  1297. * HttpReplyChannel.cs : actually HTTP header item might be null.
  1298. 2006-04-06 Atsushi Enomoto <[email protected]>
  1299. * HttpReplyChannel.cs : under SOAP 1.1 SOAP Action is sent as HTTP
  1300. header.
  1301. 2006-04-06 Atsushi Enomoto <[email protected]>
  1302. * TextMessageEncoder.cs : for SOAP 1.1 content type is text/xml.
  1303. 2006-04-06 Atsushi Enomoto <[email protected]>
  1304. * MessageFault.cs : Fixed SOAP12 reason output.
  1305. 2006-04-05 Atsushi Enomoto <[email protected]>
  1306. * HttpReplyChannel.cs : no need to set response ContentEncoding since
  1307. MessageEncoder.ContentType explicitly contains encoding.
  1308. * AddressingVersion.cs : added ActionNotSupported property. Not sure
  1309. if it is SOAP version dependent.
  1310. 2006-03-23 Atsushi Enomoto <[email protected]>
  1311. * HttpReplyChannel.cs : actually I could just workaround bug #77816.
  1312. 2006-03-16 Atsushi Enomoto <[email protected]>
  1313. * HttpChannelFactory.cs BindingContext.cs
  1314. HttpChannelListener.cs HttpTransportBindingElement.cs :
  1315. Now BindingContext holds MessageEncoder, and non-custom
  1316. channel factory/listener should use it.
  1317. * MtomMessageEncodingBindingElement.cs
  1318. TextMessageEncodingBindingElement.cs
  1319. BinaryMessageEncodingBindingElement.cs : BuildChannelFactory()/
  1320. -Listener() now sets internal BindingContext.MessageEncoder.
  1321. Fixed some public API.
  1322. 2006-03-15 Atsushi Enomoto <[email protected]>
  1323. * BindingContext.cs : CanBuildChannelXXX() should not raise error
  1324. for insufficient elements.
  1325. * DispatchRuntime.cs : OperationDescription name is not action. So
  1326. OperationSelector is created by name, not by action.
  1327. * TextMessageEncodingBindingElement.cs : Feb. CTP API fixes.
  1328. 2006-03-14 Atsushi Enomoto <[email protected]>
  1329. * MessageFaultBodyWriter.cs
  1330. XmlReaderBodyWriter.cs
  1331. XmlObjectSerializerBodyWriter.cs : made internal.
  1332. * SecurityBindingElement.cs
  1333. AsymmetricSecurityBindingElement.cs
  1334. SymmetricSecurityBindingElement.cs : API fixes.
  1335. * TransportBindingElementConverter.cs : ditto.
  1336. * TextMessageEncodingBindingElement.cs : added set_AddressingVersion.
  1337. * WindowsStreamSecurityBindingElement.cs
  1338. SslStreamSecurityBindingElement.cs
  1339. TransportSecurityBindingElement.cs : new files.
  1340. 2006-03-14 Atsushi Enomoto <[email protected]>
  1341. * MessageImpl.cs : according to the W3C REC, mustUnderstand when
  1342. reading can be any xs:boolean value.
  1343. 2006-03-14 Atsushi Enomoto <[email protected]>
  1344. * Message.cs MessageImpl.cs : more sorting out the role of each
  1345. write method.
  1346. * MessageHeader.cs : use envelope namespace, not addressing namespace.
  1347. 2006-03-14 Atsushi Enomoto <[email protected]>
  1348. * Message.cs : don't write body contents if it is empty.
  1349. Moved WriteStartElement(,"Header",) to OnWriteStartHeaders().
  1350. * MessageImpl.cs : implemented XmlReaderMessage.OnWriteBodyContents().
  1351. * TextMessageEncoder.cs : WriteMessage() should close XmlWriter.
  1352. * HttpRequestChannel.cs : close request stream before GetResponse().
  1353. 2006-03-13 Atsushi Enomoto <[email protected]>
  1354. * TextMessageEncoderFactory.cs
  1355. TextMessageEncoder.cs : encoder does not hold reference to the
  1356. factory anymore. Use MessageVersion property in CreateMssage().
  1357. * HttpChannelListener.cs : now it holds message encoder.
  1358. * HttpReplyChannel.cs : now it uses listener's shared message encoder.
  1359. * MessageImpl.cs : header is optional.
  1360. * EnvelopeVersion.cs : namespace URI is missing.
  1361. 2006-03-10 Atsushi Enomoto <[email protected]>
  1362. * CustomBinding.cs : removed Initialize().
  1363. * Message.cs : renamed ForwardingMessage -> XmlReaderMessage.
  1364. * MessageImpl.cs : renamed ForwardingMessage to XmlReaderMessage (used
  1365. by Message.CreateMessage(MessageVersion,XmlReader,int) and
  1366. implemented Headers, IsEmpty and GetReaderAtBodyContents().
  1367. 2006-03-08 Atsushi Enomoto <[email protected]>
  1368. * MessageHeaders.cs : implemented GetReaderAtHeader() and Action (it
  1369. could be also added by Add() method and could be reset by Remove()).
  1370. * MessageImpl.cs : implemented more. As noted above, Now we don't
  1371. have to add Action header explicitly.
  1372. * MessageHeader.cs : recovered Writer methods and ToString() from
  1373. commented old version. Use prefixes for writing.
  1374. Use WriteObjectContent() rather than WriteObject() (it needs
  1375. DataContractSerializer fix btw).
  1376. 2006-03-08 Atsushi Enomoto <[email protected]>
  1377. * MessageHeader.cs : added missing IsReferenceParameter.
  1378. * MessageHeaderInfo.cs : added missing IsReferenceParameter.
  1379. * MessageHeaders.cs : avoid NullRef when actors is null.
  1380. * MessageImpl.cs : (MessageImplBase) add Action header in .ctor().
  1381. (ForwardingMessage) reader consumer is being added (not done).
  1382. * MtomMessageEncodingBindingElement.cs : simply use Mtom factory.
  1383. * MtomMessageEncoder.cs : updated ContentType value to Feb. CTP.
  1384. * HttpRequestChannel.cs : this channel automatically call Open()
  1385. when Request() is called. Set content length for request.
  1386. Use MessageEncoder's ContentType to also handle charset.
  1387. 2006-03-07 Atsushi Enomoto <[email protected]>
  1388. * MessageImpl.cs : make them internal.
  1389. * HttpReplyChannel.cs : set HttpListenerResponse properties correctly.
  1390. 2006-03-07 Atsushi Enomoto <[email protected]>
  1391. * ChannelManagerBase.cs : cleanup MonoTODO and unused field.
  1392. * HttpChannelListener.cs : removed commented line.
  1393. * RequestChannelBase.cs : new base class for request channel classes.
  1394. * ChannelListenerBase.cs : OnEndClose() is rather NotImplemented yet.
  1395. * HttpReplyChannel.cs : WaitHandle accepts limited timeout value.
  1396. * Message.cs : default IsEmpty and IsFault false by default.
  1397. * LayeredChannelListener.cs : removed Uri (no chance to set).
  1398. * ChannelBase.cs : reimplemented timeout properties.
  1399. * HttpRequestChannel.cs : now it is mostly based on
  1400. RequestChannelBase. Some more attempt to implement Request().
  1401. 2006-03-07 Atsushi Enomoto <[email protected]>
  1402. * Binding.cs CustomBinding.cs : removed OnApplyConfiguration() and
  1403. OnInitialize(). Added more BuildChannelListener() overloads.
  1404. 2006-03-06 Atsushi Enomoto <[email protected]>
  1405. * Binding.cs : added some more missing members especially to support
  1406. listener creation.
  1407. * HttpChannelListener.cs : Uri should not be null.
  1408. * HttpTransportBindingElement.cs : implemented
  1409. CanBuildChannelFactory() and CanBuildChannelListener().
  1410. * ServiceHostBase.cs : make Initialize() practically work at OnOpen().
  1411. 2006-03-06 Atsushi Enomoto <[email protected]>
  1412. * Binding.cs : updated default namespace property value to Feb. CTP.
  1413. 2006-03-03 Atsushi Enomoto <[email protected]>
  1414. * AddressHeader.cs : avoid null reference when value is null.
  1415. * BindingContext.cs : check null ListenUri args.
  1416. 2006-03-03 Atsushi Enomoto <[email protected]>
  1417. * MessageFault.cs : Fixed default action name. Null arg check.
  1418. 2006-03-03 Atsushi Enomoto <[email protected]>
  1419. * BindingElement.cs : Dequeue elements in BindingContext directly.
  1420. * BindingContext.cs : Added GetProperty<T>().
  1421. * GenericWrapperChannelFactory.cs GenericWrapperChannelListener.cs :
  1422. Now we don't need these extra classes, so marked as deprecated.
  1423. 2006-03-03 Atsushi Enomoto <[email protected]>
  1424. * Binding.cs : null arg check.
  1425. * AddressingVersion.cs : fixed constants to pass the tests.
  1426. * BindingElement.cs : tiny meessage fix.
  1427. 2006-03-02 Atsushi Enomoto <[email protected]>
  1428. * MessageEncodingBindingElement.cs
  1429. BinaryMessageEncodingBindingElement.cs
  1430. TextMessageEncodingBindingElement.cs
  1431. MtomMessageEncodingBindingElement.cs
  1432. MessageEncodingBindingElementConverter.cs : several API fixes.
  1433. * BindingElement.cs : now if we use generic wrapper it causes
  1434. infinite loop, so for now replace it with most-possible-but-
  1435. untested logic.
  1436. 2006-03-02 Atsushi Enomoto <[email protected]>
  1437. (back to normal "record-ChangeLogs" mode after the big API change mess)
  1438. * HttpTransportBindingElement.cs : fixed minor API differences.
  1439. 2006-02-23 Atsushi Enomoto <[email protected]>
  1440. * AsymmetricSecurityBindingElement.cs SecurityBindingElement.cs
  1441. SymmetricSecurityBindingElement.cs :
  1442. Dependent fixes for System.IdentityModel reorgainzation.
  1443. 2006-02-23 Atsushi Enomoto <[email protected]>
  1444. * InputChannelBase.cs.notused IInputSession.cs IOutputSession.cs
  1445. IProxyFormatter.cs WSHttpBindingBase.cs
  1446. PnrpPeerResolverBindingElement.cs IMessageHeaderInfo.cs
  1447. MessageInterceptorEventArgs.cs WSHttpBinding.cs
  1448. WSFederationBinding.cs ISessionChannel.cs
  1449. CompositeDuplexBindingElement.cs MessageVersion.cs
  1450. MessageHeader.cs IRequestSessionChannel.cs
  1451. BindingElementCollection.cs IReplySessionChannel.cs
  1452. MessageProperties.cs IDuplexClientChannel.cs
  1453. IInputSessionChannel.cs MessageImpl.cs IDuplexSessionChannel.cs
  1454. TcpTransportBindingElement.cs EmptyFaultException.cs
  1455. IBindingRuntimePreferences.cs AddressHeaderCollection.cs
  1456. IStubFormatter.cs AsymmetricSecurityBindingElement.cs
  1457. ConnectionOrientedTransportBindingElement.cs
  1458. IProxyOperationSelector.cs MessageBuffer.cs IChannel.cs
  1459. PeerResolverBindingElement.cs Message.cs
  1460. HttpsTransportBindingElement.cs BindingElement.cs
  1461. NamedPipetransportBindingElement.cs IBindingManualAddressing.cs
  1462. MessageFaultBodyWriter.cs IReplyChannel.cs
  1463. IBindingCapabilities.cs AddressHeader.cs IInputChannel.cs
  1464. IMessageProperty.cs IOutputChannel.cs NetPeerTcpBinding.cs
  1465. IRequestContext.cs IInputSessionShutdown.cs
  1466. SecurityBindingElement.cs PeerTransportBindingElement.cs
  1467. IDuplexSession.cs IChannelInitializer.cs
  1468. IProxyMessageInspector.cs IChannelListener.cs NetTcpBinding.cs
  1469. AddressingVersion.cs FaultException.cs
  1470. IRequestChannel.cs MtomMessageEncodingBindingElement.cs
  1471. TransportBindingElement.cs BinaryMessageEncodingBindingElement.cs
  1472. TextMessageEncodingBindingElement.cs IChannelFactory.cs Binding.cs
  1473. ITransportBindingElement.cs IChannelManager.cs MessageFault.cs
  1474. MessageHeaders.cs IStubMessageInspector.cs UnderstoodHeaders.cs
  1475. BindingParameterCollection.cs IInstanceProvider.cs
  1476. WSDualHttpBinding.cs ISession.cs IErrorHandler.cs
  1477. MessageEncodingBindingElement.cs HttpTransportBindingElement.cs
  1478. IDuplexChannel.cs CustomBinding.cs IOutputSessionChannel.cs
  1479. MessageContractAttribute.cs SymmetricSecurityBindingElement.cs :
  1480. moved from System.ServiceModel due to the API changes.
  1481. 2006-02-23 Atsushi Enomoto <[email protected]>
  1482. * ChannelFactoryBase.cs ChannelListenerBase.cs HttpChannelFactory.cs
  1483. HttpChannelListener.cs HttpRequestChannel.cs
  1484. LayeredChannelListener.cs PeerMessagePropagationFilter.cs
  1485. PeerNode.cs ReplyChannelBase.cs :
  1486. Feb. CTP API changes - chapter 1.
  1487. 2006-02-15 Atsushi Enomoto <[email protected]>
  1488. * ChannelBase.cs : OnOpen() and OnClosed() do nothing.
  1489. * ReplyChannelBase.cs : now it is based on ChannelBase.
  1490. * ChannelListenerBase_1.cs : use DefaultCommunicationTimeouts.Instance
  1491. and check null argument in .ctor().
  1492. * HttpReplyChannel.cs : several changes.
  1493. Non-async members are mostly implemented.
  1494. * HttpChannelListener.cs : no need to receive
  1495. IDefaultCommunicationTimeouts.
  1496. * HttpRequestChannel.cs : maxSizeOfHeaders is used in MessageHeaders
  1497. to allocate buffer array and int.MaxValue causes OutOfMemory.
  1498. 2006-02-15 Atsushi Enomoto <[email protected]>
  1499. * ClientFramingDecoderState.cs : added missing enum.
  1500. * HttpRequestMessageProperty.cs HttpResponseMessageProperty.cs :
  1501. added missing bits.
  1502. * ChannelBase.cs, LayeredChannelListener.cs : tiny API fixes.
  1503. 2006-02-15 Atsushi Enomoto <[email protected]>
  1504. * HttpChannelListener.cs : Added GetChannels() and OnClose().
  1505. AcceptChannel() has some code now but it needs more love.
  1506. 2006-02-14 Atsushi Enomoto <[email protected]>
  1507. * CommunicationObject.cs : Close() does not call Begin/EndClose().
  1508. * ChannelManagerBase.cs : implemented AbortChannel and CloseChannel.
  1509. * ChannelListenerBase.cs : implemented OnAbort and OnClose.
  1510. 2006-02-10 Atsushi Enomoto <[email protected]>
  1511. * HttpRequestChannel.cs : close the streams.
  1512. * HttpListener.cs
  1513. HttpChannelListener.cs : renamed from former to latter.
  1514. 2006-02-09 Atsushi Enomoto <[email protected]>
  1515. * ReplyChannelBase.cs : new file for IReplyChannel implementations.
  1516. * HttpReplyChannel.cs : new file for HTTP IReplyChannel.
  1517. * HttpListenerFactory.cs : removed obsolete file.
  1518. * HttpListener.cs : hacky WaitForChannel and AcceptChannel.
  1519. * ChannelListenerBase_1.cs : implemented virtual stuff.
  1520. * CommunicationObject.cs : Open() should not call BeginOpen() and
  1521. EndOpen(). Instead, invoke events individually.
  1522. * ChannelListenerBase.cs : its Open() is WaitForChannel().
  1523. 2006-02-08 Atsushi Enomoto <[email protected]>
  1524. * HttpRequestChannel.cs : call Flush() after serializing message
  1525. into HTTP stream.
  1526. 2006-02-08 Atsushi Enomoto <[email protected]>
  1527. * HttpRequestChannel.cs : implemented pretty hacky Request().
  1528. 2006-02-02 Atsushi Enomoto <[email protected]>
  1529. * HttpRequestChannel.cs : Manager is HttpChannelFactory.
  1530. 2006-02-01 Atsushi Enomoto <[email protected]>
  1531. * ChannelFactoryBase.cs : removed some NotImplementedException for
  1532. further internal implementation.
  1533. 2006-01-26 Atsushi Enomoto <[email protected]>
  1534. * HttpRequestChannel.cs : new file. mostly not implemented.
  1535. * HttpChannelFactory.cs : Implemented CanCreateChannel().
  1536. Partly implemented CreateChannel().
  1537. 2006-01-26 Atsushi Enomoto <[email protected]>
  1538. * HttpChannelFactory.cs : (.ctor())
  1539. Don't take ChannelBuildContext.
  1540. 2005-11-21 Atsushi Enomoto <[email protected]>
  1541. * StreamSecurityUpgradeInitiator.cs PeerMessageOrigination.cs
  1542. ChannelBase.cs StreamSecurityUpgradeAcceptor.cs
  1543. PeerMessagePropagation.cs : updated to Nov. CTP.
  1544. 2005-11-21 Atsushi Enomoto <[email protected]>
  1545. * ChannelListenerBase.cs, ChannelManagerBase.cs,
  1546. ChannelListenerBase_1.cs, LayeredChannelListener.cs,
  1547. StreamSecurityUpgradeAcceptor.cs,
  1548. StreamSecurityUpgradeInitiator.cs :
  1549. Updated to Nov. CTP API.
  1550. 2005-11-21 Atsushi Enomoto <[email protected]>
  1551. Now we can rename ListenerFactoryBase.cs to ChannelListenerBase.cs.
  1552. 2005-11-21 Atsushi Enomoto <[email protected]>
  1553. renamed ChannelListenerBase.cs to ChannelListenerBase_1.cs.
  1554. 2005-11-21 Atsushi Enomoto <[email protected]>
  1555. * ChannelBase.cs : tiny filename fix.
  1556. * ChannelListenerBase.cs : added more .ctor()s.
  1557. 2005-11-21 Atsushi Enomoto <[email protected]>
  1558. * HttpListenerFactory.cs LayeredChannelListener.cs HttpListener.cs
  1559. ListenerFactoryBase.cs ChannelListenerBase.cs :
  1560. updated IListener related stuff to Nov. CTP.
  1561. file renaming will come soon.
  1562. 2005-11-21 Atsushi Enomoto <[email protected]>
  1563. * ListenerBase.cs, ChannelListenerBase.cs :
  1564. moved from former to latter.
  1565. * LayeredListenerFactory.cs, LayeredChannelListener.cs :
  1566. moved from former to latter.
  1567. 2005-11-20 Atsushi Enomoto <[email protected]>
  1568. * SessionFaultedException.cs : removed in Nov. CTP
  1569. 2005-11-20 Atsushi Enomoto <[email protected]>
  1570. * CommunicationObject.cs : updated to Nov. CTP.
  1571. * SessionFaultedException.cs : removed (in Nov. CTP)
  1572. 2005-11-03 Atsushi Enomoto <[email protected]>
  1573. * TextMessageEncoder.cs : kinda implemented (untested; Message is not
  1574. working).
  1575. 2005-11-03 Atsushi Enomoto <[email protected]>
  1576. * MtomMessageEncoder.cs, BinaryMessageEncoderFactory.cs,
  1577. TextMessageEncoderFactory.cs, BinaryMessageEncoder.cs,
  1578. TextMessageEncoder.cs, MtomMessageEncoderFactory.cs : new files.
  1579. * MessageEncoder.cs : largely implemented.
  1580. 2005-11-02 Atsushi Enomoto <[email protected]>
  1581. * IRequestReplyCorrelator.cs : new file.
  1582. 2005-11-02 Atsushi Enomoto <[email protected]>
  1583. * CommunicationObject.cs : OnClose() and OnError() are not virtual.
  1584. * DirectionalAction.cs : implemented IComparable<DirectionalAction>.
  1585. * MessageEncoder.cs : added misssing ToString().
  1586. 2005-11-02 Atsushi Enomoto <[email protected]>
  1587. * ChannelBehaviorCollection.cs : moved to sys.sm.
  1588. 2005-10-28 Atsushi Enomoto <[email protected]>
  1589. * HttpListenerFactory.cs, HttpListener.cs : new files.
  1590. * ListenerFactoryBase.cs, ChannelManagerBase.cs,
  1591. CommunicationObject.cs, ChannelFactoryBase.cs,
  1592. StreamUpgradeProvider.cs, ChannelBase.cs : timeouts are now
  1593. protected internal.
  1594. * CommunicationObject.cs : Aborted is bool. Added InternalClose()
  1595. * ListenerFactoryBase.cs : kinda implemented GetListeners().
  1596. 2005-10-26 Atsushi Enomoto <[email protected]>
  1597. * ListenerFactoryBase.cs : some implementation.
  1598. 2005-10-26 Atsushi Enomoto <[email protected]>
  1599. * CommunicationObject.cs : more state fixes.
  1600. 2005-10-26 Atsushi Enomoto <[email protected]>
  1601. * CommunicationObject.cs : some state machine fixes.
  1602. 2005-10-26 Atsushi Enomoto <[email protected]>
  1603. * PeerNode.cs, ChannelManagerBase.cs :
  1604. several API fixes detected by improved corcompare.
  1605. 2005-10-25 Atsushi Enomoto <[email protected]>
  1606. * LayeredListenerFactory.cs : added missing generic class constraint.
  1607. 2005-10-25 Atsushi Enomoto <[email protected]>
  1608. * ListenerFactoryBase.cs,
  1609. ListenerBase.cs : class constraints were missing for generic args.
  1610. 2005-10-24 Atsushi Enomoto <[email protected]>
  1611. * StreamUpgradeInitiator.cs : tiny API fix.
  1612. 2005-10-23 Atsushi Enomoto <[email protected]>
  1613. * PeerMessagePropagationFilter.cs : tiny build fix.
  1614. 2005-10-23 Atsushi Enomoto <[email protected]>
  1615. * HttpRequestMessageProperty.cs, HttpResponseMessageProperty.cs :
  1616. added Name. fixed StatusCode type.
  1617. * StreamSecurityUpgradeInitiator.cs, StreamUpgradeAcceptor.cs,
  1618. PeerNode.cs, StreamSecurityUpgradeAcceptor.cs,
  1619. StreamUpgradeProvider.cs, StreamUpgradeInitiator.cs,
  1620. DirectionalAction.cs, HostedTransportConfiguration.cs,
  1621. StreamSecurityUpgradeProvider.cs, SessionFaultedException.cs,
  1622. PeerMessagePropagationFilter.cs : added missing files.
  1623. * Dummy.cs : removed. MSMQ stuff can be added later.
  1624. 2005-10-21 Atsushi Enomoto <[email protected]>
  1625. * DeliveryStatus.cs, DeliveryFailure.cs,
  1626. HttpRequestMessageProperty.cs, PeerMessageOrigination.cs,
  1627. PeerMessagePropagation.cs, HttpResponseMessageProperty.cs :
  1628. new files.
  1629. * Dummy.cs : removed above.
  1630. 2005-10-18 Atsushi Enomoto <[email protected]>
  1631. * ChannelFactoryBase.cs : tiny .ctor() delegation fix.
  1632. 2005-10-09 Atsushi Enomoto <[email protected]>
  1633. * MessageEncoderFactory.cs, LayeredListenerFactory.cs,
  1634. MessageEncoder.cs, BufferManager.cs : new files.
  1635. * Dummy.cs : removed above.
  1636. 2005-10-09 Atsushi Enomoto <[email protected]>
  1637. * ChannelBase.cs, ChannelBehaviorCollection.cs : new channel files.
  1638. * Dummy.cs : removed above.
  1639. * CommunicationObject.cs, ListenerFactoryBase.cs : added missing bits.
  1640. 2005-10-09 Atsushi Enomoto <[email protected]>
  1641. * HttpChannelFactory.cs : new file.
  1642. 2005-10-08 Atsushi Enomoto <[email protected]>
  1643. * IReplyChannel.cs, IRequestContext.cs, IRequestChannel.cs:
  1644. moved to ../System.ServiceModel (correct location).
  1645. * ChannelFactoryBase.cs, LayeredChannelFactory.cs, TransferMode.cs:
  1646. new files for channels.
  1647. * Dummy.cs : reflected above changes.
  1648. * ChannelManagerBase.cs : added a bit of code and todos.
  1649. 2005-10-04 Atsushi Enomoto <[email protected]>
  1650. * ChannelManagerBase.cs, ListenerBase.cs, ListenerFactoryBase.cs :
  1651. added listener support files.
  1652. * Dummy.cs : removed above.
  1653. 2005-10-03 Atsushi Enomoto <[email protected]>
  1654. * IReplyChannel.cs, IRequestContext.cs, IRequestChannel.cs :
  1655. added request/reply channel interfaces.
  1656. * Dummy.cs : removed above.
  1657. * CommunicationObject.cs : FIXME comments.
  1658. 2005-10-03 Atsushi Enomoto <[email protected]>
  1659. * CommunicationObject.cs : implemented some members.
  1660. 2005-09-29 Atsushi Enomoto <[email protected]>
  1661. * CommunicationObject.cs : some signature fixes.