ChangeLog 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350
  1. 2010-03-15 Atsushi Enomoto <[email protected]>
  2. * ServiceEndpointCollection.cs : those overrides are rather to check
  3. null arguments, not to skip contract duplicates.
  4. 2010-03-12 Atsushi Enomoto <[email protected]>
  5. * MessageDescription.cs : implement MessageName.
  6. 2010-03-11 Atsushi Enomoto <[email protected]>
  7. * BaseMessagesFormatter.cs : add internal OperationFormatter type
  8. for moonlight/silverlight-sdk compatibility. It mostly wraps
  9. the existing the return value by BaseMessagesFormatter.Create().
  10. * DispatchOperation.cs, ClientOperation.cs, EndpointDispatcher.cs:
  11. use above new type.
  12. 2010-03-11 Atsushi Enomoto <[email protected]>
  13. * OperationDescription.cs, MessagePartDescription.cs,
  14. MessageDescription.cs : add internal moonlight compat stuff.
  15. 2010-03-11 Atsushi Enomoto <[email protected]>
  16. * XmlName.cs : new internal type for moonlight/SL SDK compatibility.
  17. 2010-02-23 Atsushi Enomoto <[email protected]>
  18. * MetadataResolver.cs : fix BeginResolve() overloads and use
  19. arguments as expected in Resolve().
  20. 2010-02-23 Atsushi Enomoto <[email protected]>
  21. * MetadataExchangeClient.cs : add missing members and implement some.
  22. 2010-02-23 Atsushi Enomoto <[email protected]>
  23. * WsdlImporter.cs : handle soapAction in operation binding too.
  24. Now it successfully generates proxy generation for Twitterlight:
  25. http://twitterlight.claritycon.com/TwitterWebService.asmx?WSDL
  26. 2010-02-23 Atsushi Enomoto <[email protected]>
  27. * DataContractSerializerMessageContractImporter.cs :
  28. consider schemas in wsdl documents.
  29. 2010-02-22 Atsushi Enomoto <[email protected]>
  30. * MetadataExchangeClient.cs, MetadataExchangeBindings.cs:
  31. support https.
  32. 2010-02-22 Atsushi Enomoto <[email protected]>
  33. * ServiceContractGenerator.cs : fix duplicate output.
  34. 2010-02-19 Atsushi Enomoto <[email protected]>
  35. * DataContractSerializerMessageContractImporter.cs :
  36. Pick correct elements to import. Not wrapper elements but each
  37. parameter and return value elements.
  38. 2010-02-19 Atsushi Enomoto <[email protected]>
  39. * DataContractSerializerMessageContractImporter.cs :
  40. remove extra parameter passing.
  41. 2010-02-19 Atsushi Enomoto <[email protected]>
  42. * ServiceContractGenerator.cs : add missing #ifs.
  43. 2010-02-19 Atsushi Enomoto <[email protected]>
  44. * ServiceContractGenerator.cs, MessagePartDescription.cs,
  45. DataContractSerializerMessageContractImporter.cs :
  46. add alternative implementation to use XsdDataContractImporter
  47. instead of XmlSchemaImporter hack.
  48. It requires -d:USE_DATA_CONTRACT_IMPORTER and not enabled yet, as
  49. it breaks some WSDL imports (such as memorabilia.hardrock.com).
  50. 2010-02-11 Atsushi Enomoto <[email protected]>
  51. * DataContractSerializerMessageContractImporter.cs : handle duration
  52. and guid which s.w.svc does not handle. Fix part of bug #579011.
  53. 2010-02-09 Atsushi Enomoto <[email protected]>
  54. * DataContractSerializerMessageContractImporter.cs,
  55. ServiceContractGenerator.cs: ArrayOfXxx does not exist in the type
  56. definition code. Use Xxx[] directly instead.
  57. 2010-02-08 Atsushi Enomoto <[email protected]>
  58. * MetadataBundle.cs, MetadataSet.cs : rename former to latter.
  59. 2010-02-04 Atsushi Enomoto <[email protected]>
  60. * ClientCredentials.cs, ContractDescription.cs,
  61. IEndpointBehavior.cs, IOperationBehavior.cs : add monotouch support
  62. for client behavior.
  63. 2010-01-28 Atsushi Enomoto <[email protected]>
  64. * ServiceContractGenerator.cs : when Options.AsynchronousMethods is
  65. specified, generate async methods *as well as* sync methods (i.e.
  66. not exclusively).
  67. In moonlight proxy generator (svcutil -moonlight) mode, sync
  68. methods will be removed at svcutil itself.
  69. This fix brings sync proxy methods back to monotouch.
  70. 2010-01-19 Atsushi Enomoto <[email protected]>
  71. * ServiceAuthorizationBehavior.cs : implement (it does almost
  72. nothing though).
  73. 2010-01-13 Atsushi Enomoto <[email protected]>
  74. * ContractDescriptionGenerator.cs : fill Operation.Faults.
  75. 2010-01-08 Atsushi Enomoto <[email protected]>
  76. * ContractDescriptionGenerator.cs : fix GetCallbackContract() to
  77. correctly retrieve ServiceContractAttribute from the service type,
  78. not the callback type. This ended up to get the bug #567672 sample
  79. working (but it will break at some stage as it involves some
  80. non-implemented classes).
  81. 2009-12-18 Atsushi Enomoto <[email protected]>
  82. * ServiceContractGenerator.cs :
  83. EventArgs are not nested classes.
  84. Result property of EventArgs is not IAsyncResult. It should be
  85. pulled from EndXxx() method, not from BeginXxx().
  86. 2009-12-18 Atsushi Enomoto <[email protected]>
  87. * ServiceContractGenerator.cs :
  88. add support for EventBasedAsynchronousMethods (3.5 SP1 / 2.1).
  89. 2009-12-18 Atsushi Enomoto <[email protected]>
  90. * ServiceMetadataExtension.cs : added a couple of FIXME comments.
  91. 2009-12-01 Atsushi Enomoto <[email protected]>
  92. * ClientCredentials.cs : more SL3 changes.
  93. 2009-11-25 Atsushi Enomoto <[email protected]>
  94. * ClientCredentials.cs : it is part of SL3 API, so adjusted for it.
  95. 2009-10-22 Atsushi Enomoto <[email protected]>
  96. * ServiceMetadataExtension.cs : channelDispatchers is keyed by URL,
  97. so it might have been skipped when the URLs are the same for wsdl
  98. and help. So, differentiate flags for mex and help, not to be
  99. exclusive. This fixes random-ish EndpointNotFound for WSDLs.
  100. 2009-10-22 Atsushi Enomoto <[email protected]>
  101. * ServiceMetadataExtension.cs : A few fixes for no-wsdl case: fix
  102. wrong html template, and do not throw NRE for the lack of WsdlUrl.
  103. 2009-10-20 Atsushi Enomoto <[email protected]>
  104. * ServiceMetadataExtension.cs : restructure internal channel property
  105. so that http channels can cope with it.
  106. 2009-10-16 Atsushi Enomoto <[email protected]>
  107. * ServiceMetadataExtension.cs : Handle all predefined mex bindings.
  108. Use DispatcherBuilder directly. Add mex listener property to
  109. distinguish the listener from http channel listeners later.
  110. 2009-10-15 Atsushi Enomoto <[email protected]>
  111. * ServiceMetadataExtension.cs : when serviceDebug and serviceMetadata
  112. shares the same URL, both of them must be set, not being skipped.
  113. 2009-10-15 Atsushi Enomoto <[email protected]>
  114. * ServiceDebugBehavior.cs, ServiceMetadataBehavior.cs,
  115. ServiceMetadataExtension.cs : Now HelpPage is differentiated from
  116. wsdl page. The help page now outputs correct URL (for WSDL).
  117. 2009-10-15 Atsushi Enomoto <[email protected]>
  118. * ServiceDebugBehavior.cs, ServiceMetadataBehavior.cs,
  119. ServiceMetadataExtension.cs : reduce extra args, static isn't
  120. required here. Add FIXME comments.
  121. 2009-10-15 Atsushi Enomoto <[email protected]>
  122. * ServiceMetadataExtension.cs : before fixing lots of wrong code,
  123. add primitive help page support to make sure base_uri is bogus.
  124. 2009-10-01 Atsushi Enomoto <[email protected]>
  125. * ServiceContractGenerator.cs : fixed sync client generator that
  126. incorrectly exited in the middle of proxy generator.
  127. 2009-09-17 Atsushi Enomoto <[email protected]>
  128. * ServiceMetadataExtension.cs : when its url is requested without
  129. any parameters, it simply returns the WSDL, not the help page.
  130. 2009-09-15 Atsushi Enomoto <[email protected]>
  131. * WebServiceHelper.cs : remove old code.
  132. 2009-09-11 Atsushi Enomoto <[email protected]>
  133. * ServiceMetadataExtension.cs : reflect ServiceHostBase change.
  134. 2009-09-11 Atsushi Enomoto <[email protected]>
  135. * ServiceDebugBehavior.cs : help page enabling properties are true
  136. by default (fix regressions).
  137. 2009-09-06 Atsushi Enomoto <[email protected]>
  138. * ContractDescriptionGenerator.cs : default action name is prepended
  139. "urn:", and on the other hand do not add extra '/' in such case.
  140. 2009-09-06 Atsushi Enomoto <[email protected]>
  141. * ContractDescriptionGenerator.cs : end method lookup should be
  142. done against the type that defines begin method.
  143. 2009-09-01 Atsushi Enomoto <[email protected]>
  144. * MustUnderstandBehavior.cs : fix build.
  145. 2009-09-01 Atsushi Enomoto <[email protected]>
  146. * ClientCredentials.cs, ClientViaBehavior.cs,
  147. MustUnderstandBehavior.cs : implement most of the methods.
  148. 2009-08-21 Atsushi Enomoto <[email protected]>
  149. * ServiceMetadataExtension.cs:
  150. some dependent changes to ServiceHostBase.
  151. 2009-08-11 Atsushi Enomoto <[email protected]>
  152. * DataContractSerializerOperationBehavior.cs : add missing members.
  153. 2009-08-11 Atsushi Enomoto <[email protected]>
  154. * MetadataExchangeClient.cs : add missing async methods.
  155. 2009-08-11 Atsushi Enomoto <[email protected]>
  156. * MetadataResolver.cs : added remaining methods.
  157. * MetadataExchangeClient.cs : a bit of required changes for above.
  158. 2009-08-11 Atsushi Enomoto <[email protected]>
  159. * ServiceDebugBehavior.cs, ServiceMetadataBehavior.cs :
  160. add Binding properties. Properties are now auto.
  161. * ServiceMetadataExtension.cs : take Binding too to build dispatcher.
  162. 2009-08-10 Atsushi Enomoto <[email protected]>
  163. * ServiceContractGenerator.cs : removed ChannelBase proxy stuff,
  164. which will be moved to svcutil source.
  165. The targets for extension should be the interface, not the client
  166. class.
  167. 2009-08-10 Atsushi Enomoto <[email protected]>
  168. * ServiceContractGenerator.cs,
  169. OperationContractGenerationContext.cs : support extensions i.e.
  170. IServiceContractGenerationExtension and IOperation...(ditto) .
  171. 2009-08-10 Atsushi Enomoto <[email protected]>
  172. * ServiceContractGenerator.cs : first step to add moonlight-based
  173. client proxy generator (it is not supported in 3.5. needs to be
  174. enabled by some hook, such as reflection-based hack).
  175. 2009-08-07 Atsushi Enomoto <[email protected]>
  176. * ContractDescription.cs : wcf & 2.1 is specially annoying land :(
  177. 2009-08-07 Atsushi Enomoto <[email protected]>
  178. * ContractDescriptionGenerator.cs : add new contract getter to
  179. create callback contract type (which does not demand
  180. ServiceContractAttribute).
  181. 2009-08-07 Atsushi Enomoto <[email protected]>
  182. * ServiceEndpoint.cs, ContractDescription.cs : moved client runtime
  183. creator from former to latter.
  184. 2009-08-06 Atsushi Enomoto <[email protected]>
  185. * ServiceEndpoint.cs : follow ClientRuntime change.
  186. 2009-07-31 Atsushi Enomoto <[email protected]>
  187. * ServiceEndpoint.cs : ListenUri defaults to Address.Uri.
  188. 2009-07-02 Atsushi Enomoto <[email protected]>
  189. * ContractDescriptionGenerator.cs : actually it had to fill all of
  190. the interface methods (and implementation methods).
  191. 2009-07-02 Atsushi Enomoto <[email protected]>
  192. * ContractDescriptionGenerator.cs : do not reject derived service
  193. contract from another service contract type.
  194. 2009-06-10 Atsushi Enomoto <[email protected]>
  195. * ServiceThrottlingBehavior.cs : implement Validate() (nothing to do
  196. here).
  197. 2009-06-09 Atsushi Enomoto <[email protected]>
  198. * ServiceThrottlingBehavior.cs : implement.
  199. 2009-05-28 Atsushi Enomoto <[email protected]>
  200. * ContractDescriptionGenerator.cs : fill ProtectionLevel by
  201. OperationContractAttribute.
  202. 2009-05-13 Atsushi Enomoto <[email protected]>
  203. * ServiceCredentials.cs : IServiceBehavior.Validate() should not
  204. throw NIE. No check so far.
  205. 2009-03-06 Atsushi Enomoto <[email protected]>
  206. * MessageBodyDescription.cs, MessagePartDescription.cs,
  207. OperationDescription.cs, MessageDescriptionCollection.cs:
  208. clean up extra todos.
  209. 2009-03-05 Atsushi Enomoto <[email protected]>
  210. * ContractDescriptionGenerator.cs : fill service known types.
  211. 2009-02-26 Atsushi Enomoto <[email protected]>
  212. * ServiceContractGenerator.cs : ClientBase<> argument type must be
  213. class (the class itself is to be fixed soon as well).
  214. 2009-02-20 Atsushi Enomoto <[email protected]>
  215. * ServiceEndpoint.cs : moved CreateRuntime() from ChannelFactory<T>.
  216. 2009-02-12 Atsushi Enomoto <[email protected]>
  217. * ContractDescriptionGenerator.cs : do not write body wrapper element
  218. when IsWrapped = false.
  219. 2009-02-04 Atsushi Enomoto <[email protected]>
  220. * ServiceContractGenerator.cs : add async operation support (might
  221. be hacky under some condition).
  222. 2009-01-23 Atsushi Enomoto <[email protected]>
  223. * ContractDescriptionGenerator.cs : async begin method with
  224. [MessageContract] has 3 parameters, not 1.
  225. 2009-01-22 Atsushi Enomoto <[email protected]>
  226. * DataContractSerializerMessageContractImporter.cs :
  227. for such an element that does not contain schema type but has a
  228. type reference, use ImportSchemaType().
  229. 2009-01-21 Atsushi Enomoto <[email protected]>
  230. * DataContractSerializerMessageContractImporter.cs :
  231. some refactoring. Process all schemas, including those in WSDLs.
  232. 2009-01-07 Atsushi Enomoto <[email protected]>
  233. * ContractDescription.cs : fix by corcompare.
  234. 2008-05-28 Noam Lampert <[email protected]>
  235. * ContractDescriptionGenerator.cs: Allow services to implement more than one contract.
  236. 2008-05-22 Noam Lampert <[email protected]>
  237. * ServiceDebugBehavior.cs: Correctly propagate IncludeExceptionDetailsInFaults. Previous code
  238. overwrote values set in ServiceBehaviorAttribute.
  239. 2008-05-22 Roei Erez <[email protected]>
  240. * fix ContractDescription.GetContract implementation
  241. * Refactor Request processing
  242. * Add support for message inspectors
  243. * Add support for InstanceContextProvider & InstanceProvider, including lifecycles events
  244. like: ReleaseServiceInstance, Open, Close...
  245. * Add relevant test cases.
  246. 2008-05-01 Eyal Alaluf <[email protected]>
  247. * ContractDescriptionGenerator.cs: Support specifying custom names of
  248. operations, actions, parameters and return value via attributes.
  249. 2008-04-21 Igor Zelmanovich <[email protected]>
  250. * ServiceDebugBehavior.cs: implement ApplyDispatchBehavior.
  251. * ServiceMetadataBehavior.cs: fix ApplyDispatchBehavior.
  252. * ServiceMetadataExtension.cs: refactoring, serves both
  253. ServiceDebugBehavior and ServiceMetadataBehavior by providing suitable
  254. functionality.
  255. 2008-04-21 Igor Zelmanovich <[email protected]>
  256. * WsdlExporter.cs: fix ExportEndpoint: SoapBinding.Style is initialized
  257. with SoapBindingStyle.Document value.
  258. 2008-04-17 Vladimir Krasnov <[email protected]>
  259. * ServiceEndpoint.cs: fixed Name property
  260. 2008-04-10 Eyal Alaluf <[email protected]>
  261. * TypedMessageConverter.cs: Simplified to use XmlMessagesFormatter and
  262. DataContractMessagesFormatter that handle the actual message
  263. serialization/deserialization.
  264. Added support for XmlSerializaerFormat serialization.
  265. * ContractDescriptionGenerator.cs: Refactored to expose utilities for
  266. creating MessageDescription from types for TypedMessageConverter use.
  267. * ServiceModelInternalConverter.cs: Removed.
  268. 2008-04-08 Roei Erez <[email protected]>
  269. * ServiceAuthorizationBehavior.cs:
  270. -- remove throwing NotImplementedException and add MonoTODO
  271. * ServiceDebugBehavior.cs
  272. -- remove throwing NotImplementedException and add MonoTODO
  273. * ServiceEndpoint.cs
  274. -- Add validate method.
  275. * ServiceMetadataBehavior.cs
  276. -- remove throwing NotImplementedException and add MonoTODO
  277. 2008-03-24 Igor Zelmanovich <[email protected]>
  278. * PolicyVersion.cs: imפlement ToString method, fix Namespace property.
  279. * ServiceTimeoutsBehavior.cs: add internal class behavior corresponds
  280. ServiceTimeoutsElement.
  281. 2008-03-23 Vladimir Krasnov <[email protected]>
  282. * ContractDescriptionGenerator.cs: fixed GetMessage, fixed namespace
  283. while creating message part
  284. 2008-03-04 Eyal Alaluf <[email protected]>
  285. * ContractDescriptionGenerator.cs: Init ConfigurationName from attribute.
  286. 2008-02-27 Eyal Alaluf <[email protected]>
  287. * MetadataSectionSerializerBase.cs WSTrustMessageConverters.cs:
  288. Fix compilation warnings.
  289. 2008-02-16 Atsushi Enomoto <[email protected]>
  290. * CallbackDebugBehavior.cs : new class.
  291. 2008-02-15 Atsushi Enomoto <[email protected]>
  292. * ContractDescriptionGenerator.cs : When reflecting a method,
  293. iterate attributes and added such attribute that implements
  294. IOperationBehavior to operation's Behaviors.
  295. 2007-08-17 Atsushi Enomoto <[email protected]>
  296. * TypedMessageConverter.cs, ServiceModelInternalConverter.cs,
  297. ContractDescriptionGenerator.cs : significant rewrite for
  298. message serialization and deserialization. Proxy types are not
  299. created anymore. Instead, serializers are created for every
  300. message member. (Deserialization had been broken due to missing
  301. default constructor of the proxy type.)
  302. 2007-08-16 Atsushi Enomoto <[email protected]>
  303. * ServiceModelInternalConverter.cs : use MessagePartDescription.Name
  304. instead of MemberInfo.Name.
  305. 2007-08-16 Atsushi Enomoto <[email protected]>
  306. * TypedMessageConverter.cs ServiceModelInternalConverter.cs
  307. ContractDescriptionGenerator.cs :
  308. support MessageContractAttribute wrapper name specification and
  309. non-wrapping outputs.
  310. 2007-07-26 Atsushi Enomoto <[email protected]>
  311. * ContractDescriptionGenerator.cs : reverted previous change. It is
  312. conceptually wrong. RegisterInfo serialization is still possible
  313. because it could contain private DataContract member which works
  314. as a proxy to get or set properties on the RegisterInfo itself.
  315. 2007-07-26 Atsushi Enomoto <[email protected]>
  316. * ContractDescriptionGenerator.cs : added hack to support
  317. [MessageContract] type which has no [MessageBody] member.
  318. 2007-03-30 Atsushi Enomoto <[email protected]>
  319. * WSTrustSTSContract.cs : write prefixes.
  320. 2007-03-27 Atsushi Enomoto <[email protected]>
  321. * WSTrustMessageConverters.cs, WSTrustSTSContract.cs:
  322. now they could be used for both TLS and SPNego.
  323. 2007-03-20 Atsushi Enomoto <[email protected]>
  324. * WSTrustMessageConverters.cs : fixed incorrect empty element check.
  325. * WSTrustSTSContract.cs :
  326. Fixed Lifetime content namespace. Write KeySize.
  327. 2007-03-20 Atsushi Enomoto <[email protected]>
  328. * WSTrustSTSContract.cs, WSTrustMessageConverters.cs :
  329. process RequestedProofToken as raw TLS 1.0 application data, which
  330. is likely a shared key.
  331. 2007-03-19 Atsushi Enomoto <[email protected]>
  332. * WSTrustSTSContract.cs : support t:Authenticator output in RSTR.
  333. 2007-03-13 Atsushi Enomoto <[email protected]>
  334. * WSTrustSTSContract.cs, WSTrustMessageConverters.cs :
  335. (This inidividual commit breaks the build.)
  336. Support all xml contents required for Sslnego RSTR collection.
  337. 2007-03-08 Atsushi Enomoto <[email protected]>
  338. * WSTrustSTSContract.cs, WSTrustMessageConverters.cs :
  339. Added IssueReply() operation to support RSTR from client.
  340. Several fixes to read and write RSTR correctly.
  341. 2007-03-07 Atsushi Enomoto <[email protected]>
  342. * ServiceMetadataExtension.cs :
  343. DispatchRuntime.InternalEndpointDispatcher was eliminated.
  344. 2007-03-05 Atsushi Enomoto <[email protected]>
  345. * WSTrustSTSContract.cs, WSTrustMessageConverters.cs :
  346. added missing support for token negotiation (WS-Trust section 10.3).
  347. 2007-01-11 Atsushi Enomoto <[email protected]>
  348. * ServiceCredentials.cs : oops.
  349. 2007-01-11 Atsushi Enomoto <[email protected]>
  350. * ClientCredentials.cs, ServiceCredentials.cs : Clone() throws
  351. NotImplementedException when it returns an instance of different
  352. type.
  353. 2006-12-14 Atsushi Enomoto <[email protected]>
  354. * ServiceMetadataExtension.cs : raising an NIE than returning null
  355. is better (at least it avoids extra debugging).
  356. 2006-12-04 Atsushi Emomoto <[email protected]>
  357. * WsdlExporter.cs : Binding.MessageVersion could be null.
  358. 2006-12-04 Atsushi Emomoto <[email protected]>
  359. * DataContractSerializerMessageContractImporter.cs :
  360. The latest XmlSchemaImporter.ImportTypeMapping() correctly reports
  361. an error for xs:* primitive type argument. So it should not do
  362. that as well.
  363. 2006-12-04 Atsushi Emomoto <[email protected]>
  364. * MetadataSectionSerializerBase.cs : Build fix.
  365. It was based on old 2.0 beta API
  366. 2006-10-18 Ankit Jain <[email protected]>
  367. * ServiceMetadataBehavior.cs (AddBindingParameters): Add endpoint for
  368. HTTP GET requests.
  369. (ApplyDispatchBehavior): Move code to add *InstanceContextProviders to ..
  370. * ServiceMetadataExtension.cs (ServiceMetadataExtension.Attach): .. here.
  371. (HttpGetWsdl): Service HTTP GET requests like ?wsdl.
  372. 2006-10-17 Ankit Jain <[email protected]>
  373. * WsdlExporter.cs (ExportEndpoint): Don't emit Soap* if
  374. MessageVersion.None
  375. (ExportService): Likewise.
  376. 2006-10-13 Ankit Jain <[email protected]>
  377. * WsdlExporter.cs (ExportContract): Move code to ..
  378. (ExportContractInternal): .. this. Add support for IWsdlExportExtension.
  379. (ExportEndpoint): Add support for IWsdlExportExtension.
  380. (ExportService): Return Port.
  381. * DataContractSerializerOperationBehavior.cs : Add IWsdlExportExtension
  382. interface.
  383. 2006-10-12 Atsushi Emomoto <[email protected]>
  384. * ServiceDebugBehavior.cs : added Http[s]Help properties.
  385. 2006-10-04 Atsushi Emomoto <[email protected]>
  386. * ServiceCredentials.cs : do nothing in ApplyDispatchBehavior().
  387. 2006-10-04 Atsushi Emomoto <[email protected]>
  388. * ContractDescriptionGenerator.cs : reject async begin method whose
  389. name does not begin with "Begin". (It even applies to operations
  390. which has OperationContractAttribute with an explicit name(!).)
  391. 2006-10-04 Ankit Jain <[email protected]>
  392. * ServiceAuthorizationBehavior.cs (ApplyDispatchBehavior): Remove NYI
  393. exception.
  394. * ServiceMetadataBehavior.cs (ApplyDispatchBehavior): Instantiate and add a
  395. ServiceMetadataExtension to service host's extensions. Also, set the
  396. InstanceContextProvider for endpoints with IMetadataExchange contract
  397. to MexInstanceContextProvider.
  398. * ServiceMetadataExtension.cs (Metadata): Add internal 'set'.
  399. 2006-10-04 Atsushi Emomoto <[email protected]>
  400. * OperationDescriptionCollection.cs,
  401. ContractDescriptionGenerator.cs : operation names must not conflict
  402. each other.
  403. 2006-10-04 Ankit Jain <[email protected]>
  404. * ServiceContractGenerator.cs (GenerateProxyClass): Make .ctors public.
  405. 2006-10-03 Atsushi Emomoto <[email protected]>
  406. * ContractDescriptionGenerator.cs : EndBlah() must not be assigned an
  407. OperationContractAttribute.
  408. 2006-09-22 Atsushi Emomoto <[email protected]>
  409. * LocalServiceSecuritySettings.cs : fix Clone().
  410. 2006-09-22 Atsushi Emomoto <[email protected]>
  411. * ContractDescriptionGenerator.cs : copy ProtectionLevel from attributes
  412. to descriptions if required.
  413. 2006-09-22 Atsushi Emomoto <[email protected]>
  414. * FaultDescription.cs, MessageDescription.cs, ContractDescription.cs,
  415. MessagePartDescription.cs, OperationDescription.cs :
  416. Fixed HasProtectionLevel. It is always true when ProtectionLevel is set.
  417. 2006-09-18 Ankit Jain <[email protected]>
  418. * WsdlExporter.cs (ExportEndpoint): Throw if endpoint.Binding is null.
  419. (ExportParameters):
  420. (ExportTypeMessage): Reprocess the schema.
  421. 2006-09-08 Ankit Jain <[email protected]>
  422. * WsdlExporter.cs (ExportParameters): Split into this and ..
  423. (ExportMessageBodyDescription): .. this.
  424. Check for duplicate message elements.
  425. (IsTypeMessage): Checks is a MessageBodyDescription has a single part of
  426. type System.ServiceModel.Channels.Message
  427. (ExportTypeMessage): Exports a complex type for type
  428. System.ServiceModel.Channels.Message
  429. 2006-09-07 Ankit Jain <[email protected]>
  430. * WsdlExporter.cs (ExportedContracts): New hashtable to keep track of
  431. the exported contracts.
  432. (ExportContract): Throw exception if contract has already been exported.
  433. 2006-09-07 Ankit Jain <[email protected]>
  434. * MetadataBundle.cs (MetadataSet.WriteTo): Remove WriteStartDocument
  435. as suggested by Atsushi.
  436. 2006-09-07 Ankit Jain <[email protected]>
  437. * MetadataBundle.cs (MetadataSet.WriteTo): Add WriteStartDocument.
  438. 2006-09-07 Ankit Jain <[email protected]>
  439. * WsdlExporter.cs (ExportService): Export <service> and <port>.
  440. (GetService): New.
  441. (XsdExporter): New. Update code to use this instead of the
  442. field, xsd_exporter.
  443. (schema_set): Remove.
  444. (GeneratedXmlSchemas): Use XsdExporter.Schemas directly.
  445. 2006-09-07 Ankit Jain <[email protected]>
  446. * WsdlExporter.cs (ExportContract): Add 'imports'.
  447. 2006-09-07 Atsushi Emomoto <[email protected]>
  448. * ServiceCredentials.cs : added missing members.
  449. 2006-09-06 Ankit Jain <[email protected]>
  450. * WsdlExporter.cs (ExportContract): Use String.Concat
  451. * ContractDescriptionGenerator.cs
  452. (ContractDescriptionGenerator.GetOperation): Set IsOneWay.
  453. * OperationDescription.cs (OperationDescription.IsOneWay): Add an
  454. internal setter.
  455. 2006-09-06 Ankit Jain <[email protected]>
  456. * WsdlExporter.cs (WsdlExporter.ExportEndpoint): Initial implementation.
  457. 2006-09-06 Atsushi Emomoto <[email protected]>
  458. * ServiceMetadataBehavior.cs : updated API to RC1.
  459. 2006-09-05 Ankit Jain <[email protected]>
  460. * WsdlExporter.cs (WsdlExporter.ExportContract): Add Namespaces.
  461. 2006-09-05 Atsushi Emomoto <[email protected]>
  462. * ServiceModelInternalConverter.cs : when a message part type is null
  463. (such as void return value), supply dummy type (object).
  464. 2006-09-05 Ankit Jain <[email protected]>
  465. * MetadataBundle.cs (MetadataSet.WriteTo): Implement.
  466. * MetadataSectionSerializerBase.cs (WriteObject_ServiceDescription): Use
  467. ServiceDescription.Serializer to serialize.
  468. 2006-09-05 Ankit Jain <[email protected]>
  469. * WsdlExporter.cs (WsdlExporter.AddImport): New.
  470. (WsdlExporter.GetSchemaElementForPart): Add 'schema' param.
  471. (WsdlExporter.ExportContract): Update to changes.
  472. 2006-09-05 Ankit Jain <[email protected]>
  473. * MetadataSection.cs (MetadataSection.CreateFromSchema): Implement.
  474. (MetadataSection.CreateFromServiceDescription): Implement.
  475. * WsdlExporter.cs (WsdlExporter.GetGeneratedMetadata): Update to use
  476. new methods above.
  477. 2006-09-04 Ankit Jain <[email protected]>
  478. * WsdlExporter.cs: Initial implementation for ExportContract.
  479. * MetadataExporter.cs (GetGeneratedMetadata): Fix signature.
  480. * ContractDescriptionGenerator.cs (GetMessage): Seperate Namespace and
  481. Name with "/" if its not there in Namespace.
  482. 2006-08-30 Atsushi Emomoto <[email protected]>
  483. * ServiceMetadataBehavior.cs : for now avoid NotImplementedException.
  484. * ServiceDebugBehavior.cs : implemented AddBindingParameters() and
  485. ApplyDispatchBehavior().
  486. * ServiceCredentials.cs : implemented AddBindingParameters().
  487. 2006-08-28 Atsushi Emomoto <[email protected]>
  488. * WSTrustMessageConverters.cs : added response reader class.
  489. 2006-08-23 Atsushi Emomoto <[email protected]>
  490. * WSTrustSTSContract.cs : rewritten to not use DataContract.
  491. * WSTrustMessageConverters.cs : new file.
  492. 2006-08-22 Atsushi Emomoto <[email protected]>
  493. * ClientCredentials.cs :
  494. CloneCore() is virtual. CreateSecurityTokenManager() is public.
  495. * ServiceCredentials.cs :
  496. Added secure conversation credential.
  497. CreateSecurityTokenManager() is public.
  498. 2006-08-16 Atsushi Emomoto <[email protected]>
  499. * WSTrustSTSContract.cs : added some more members in request type.
  500. WST request and response types are renamed.
  501. 2006-08-14 Atsushi Emomoto <[email protected]>
  502. * WSTrustSTSContract.cs : added internal interface for security token
  503. service (STS).
  504. 2006-08-11 Atsushi Emomoto <[email protected]>
  505. * ClientCredentials.cs : implement CreateSecurityTokenManager() and
  506. partly AddBindingParameters().
  507. * ServiceCredentials.cs : CreateSecurityTokenManager() as well.
  508. 2006-08-10 Atsushi Emomoto <[email protected]>
  509. * ClientCredentials.cs : temporarily comment out NIE in
  510. ApplyClientBehavior().
  511. 2006-08-02 Atsushi Emomoto <[email protected]>
  512. * MetadataSectionSerializerBase.cs : made internal, namespace fix.
  513. 2006-07-31 Ankit Jain <[email protected]>
  514. * MetadataExchangeClient.cs (GetMetadataInternal): Use
  515. MessageHeaders.MessageId instead of manually adding the header.
  516. (SoapEnvelopeNamespace): Remove.
  517. (AddressingNamespace): Remove.
  518. 2006-07-28 Atsushi Emomoto <[email protected]>
  519. * ServiceCredentials.cs :
  520. added missing IssuedTokenAuthentication property.
  521. 2006-07-27 Ankit Jain <[email protected]>
  522. * DataContractSerializerMessageContractImporter.cs (resolveElement): Use
  523. XmlSchemaSet.Compile ()
  524. 2006-07-28 Atsushi Emomoto <[email protected]>
  525. * ClientCredentials.cs : initialize SupportInteractive as true.
  526. 2006-07-28 Atsushi Emomoto <[email protected]>
  527. * LocalClientSecuritySettings.cs : moved to S.SM.Channels.
  528. 2006-07-27 Ankit Jain <[email protected]>
  529. * MessagePartDescription.cs (TypeName):
  530. (XmlTypeMapping): New, internal properties, used by
  531. ServiceContractGenerator.
  532. * DataContractSerializerMessageContractImporter.cs (ImportContract):
  533. Handle a void return type.
  534. (resolveElement):
  535. (resolveParticle): Use XmlSchemaImporter to fill in
  536. MessagePartDescription.XmlTypeMapping .
  537. (GetCLRTypeName): New.
  538. * ServiceContractGenerator.cs (.ctor): Set default options.
  539. (GenerateServiceContractType): Support ChannelInterface.
  540. (GenerateProxyClass): Emit more .ctors
  541. (GenerateChannelInterface): New.
  542. (ExportInterface): Emit ServiceContractAttribute.Namespace property.
  543. (ExportParameters): New. Extract code for emitting methods params from
  544. AddOperationMethods & AddImplementationMethods.
  545. (ExportMessages): New. Emits method params using MessageDescriptionCollection.
  546. (ExportDataContract): New. Emits code for a DataContract from a XmlTypeMapping.
  547. (GetXmlNamespace): New. Gets the Namespace param of XmlTypeAttribute or
  548. XmlRootAttribute.
  549. 2006-07-27 Ankit Jain <[email protected]>
  550. * MetadataResolver.cs (ResolveContracts): Move the exception handling
  551. code for MetadataProxy.Get to ..
  552. * MetadataExchangeClient.cs (GetMetadataInternal): .. here.
  553. 2006-07-21 Atsushi Enomoto <[email protected]>
  554. * ClientCredentials.cs : July CTP API updates.
  555. 2006-07-18 Atsushi Enomoto <[email protected]>
  556. * PolicyConversionContext.cs : GetFaultBindingAssertions() argument:
  557. MessageFault -> FaultDescription.
  558. 2006-07-14 Atsushi Enomoto <[email protected]>
  559. * TypedMessageConverter.cs : implemented FromMessage() for
  560. DataContract converter. Though it won't work right now.
  561. 2006-07-14 Atsushi Enomoto <[email protected]>
  562. * ServiceModelInternalConverter.cs : It was bug #78855, and is fixed.
  563. * TypedMessageConverter.cs :
  564. June CTP changed to write wrapper element.
  565. Default URI is http://tempuri.org/, trailing '/' was missing.
  566. 2006-07-14 Atsushi Enomoto <[email protected]>
  567. * ServiceModelInternalConverter.cs :
  568. The runtime errors are still there...
  569. 2006-07-14 Atsushi Enomoto <[email protected]>
  570. * IContractBehavior.cs : The API became sane in June CTP.
  571. * MatchAllEndpointBehavior.cs : vanished.
  572. 2006-07-14 Atsushi Enomoto <[email protected]>
  573. * ServiceModelInternalConverter.cs : assembly.Save() does not seem
  574. to be required anymore. Maybe it was a runtime bug.
  575. 2006-07-13 Ankit Jain <[email protected]>
  576. * MetadataImporter.cs:
  577. * WsdlImporter.cs:
  578. * DataContractSerializerMessageContractImporter.cs:
  579. * MetadataResolver.cs: Update to June CTP changes.
  580. 2006-07-13 Atsushi Enomoto <[email protected]>
  581. * ContractDescriptionGenerator.cs : fix async method handling. Since
  582. begin methods return IAsyncResult, not the return value type, it
  583. should not be used to generate MessagePartDescription.
  584. OperationContractAttribute.ReplyAction should not be ignored.
  585. 2006-07-12 Atsushi Enomoto <[email protected]>
  586. * WebServiceHelper.cs : comment out the entire source (unused now).
  587. 2006-07-12 Atsushi Enomoto <[email protected]>
  588. * IMetadataExchange.cs : another unexpected change ;-)
  589. 2006-07-12 Atsushi Enomoto <[email protected]>
  590. * IMetadataExchange.cs : take back async methods.
  591. 2006-07-12 Ankit Jain <[email protected]>
  592. * MetadataTransferClient.cs: Renamed to ..
  593. * MetadataExchangeClient.cs: .. this. Update to June CTP changes.
  594. (MetadataExchangeClient.MetadataProxy): Proxy for IMetadataExchange
  595. service contract.
  596. (MetadataExchangeClient.GetMetadataInternal): Move GetMetadata() code
  597. here. Updated to use MetadataProxy instead of doing everything manually.
  598. * MetadataSectionSerializerBase.cs: Regenerated for the updated API.
  599. * MetadataReference.cs: June CTP updates. Now implements
  600. IXmlSerializable.
  601. * MetadataResolver.cs: Update for related changes in other classes. June
  602. CTP updates pending.
  603. * MetadataExchangeBindings.cs
  604. (MetadataExchangeBindings.CreateMexHttpBinding): Implement.
  605. 2006-07-11 Atsushi Enomoto <[email protected]>
  606. * ServiceDebugBehavior.cs : new file.
  607. 2006-07-10 Atsushi Enomoto <[email protected]>
  608. * ContractDescriptionGenerator.cs : support AsyncPattern methods.
  609. 2006-07-07 Atsushi Enomoto <[email protected]>
  610. * MessageContractConverter.cs, ServiceModelInternalConverter.cs :
  611. renamed file from former to latter.
  612. 2006-07-06 Atsushi Enomoto <[email protected]>
  613. * ServiceContractGenerator.cs : in ClientBase, InnerProxy -> Channel.
  614. 2006-07-06 Atsushi Enomoto <[email protected]>
  615. * MessageContractConverter.cs : exception type changed.
  616. 2006-07-05 Atsushi Enomoto <[email protected]>
  617. * ContractDescriptionGenerator.cs :
  618. MessageBodyAttribute -> MessageBodyMemberAttribute.
  619. 2006-07-05 Atsushi Enomoto <[email protected]>
  620. * ReflectedContractCollection.cs : removed unused file.
  621. 2006-07-05 Atsushi Enomoto <[email protected]>
  622. * ContractDescription.cs, ContractDescriptionGenerator.cs :
  623. some June CTP updates (SessionMode).
  624. 2006-07-04 Atsushi Enomoto <[email protected]>
  625. * TypedMessageConverter.cs : June CTP update.
  626. 2006-07-04 Atsushi Enomoto <[email protected]>
  627. * ViaUriBehavior.cs : renamed to ClientViaBehavior.
  628. File name is also being changed.
  629. 2006-07-03 Ankit Jain <[email protected]>
  630. * WsdlImporter.cs:
  631. * MetadataImporter.cs: Update for changes in other files. (June CTP)
  632. 2006-07-03 Ankit Jain <[email protected]>
  633. * XmlSerializerMessageContractConverter.cs: Renaming type to ..
  634. * XmlSerializerMessageContractImporter.cs: .. this.
  635. * DataContractSerializerMessageContractConverter.cs: Renaming type to ..
  636. * DataContractSerializerMessageContractImporter.cs: .. this.
  637. * IOperationContractGenerator.cs: Renaming to ..
  638. * IOperationContractGenerationExtension.cs: .. this.
  639. * IServiceContractGenerator.cs: Renaming to ..
  640. * IServiceContractGenerationExtension.cs: .. this.
  641. * DataContractSerializerOperationBehavior.cs:
  642. * MetadataResolver.cs:
  643. * MetadataSection.cs: Update to June CTP changes.
  644. * WsdlImporter.cs:
  645. * ServiceContractGenerator.cs: Update for changes in other files.
  646. * IMetadataExchange.cs: New.
  647. * MetadataExchangeBindings.cs: New.
  648. 2006-06-22 Atsushi Enomoto <[email protected]>
  649. * MessageContractConverter.cs : in MessageBodyToDataContractType(),
  650. support ReturnValue part as well.
  651. 2006-06-22 Atsushi Enomoto <[email protected]>
  652. * ContractDescriptionGenerator.cs : extracted public method
  653. GetOperationContractAttribute() from existing code.
  654. 2006-06-20 Atsushi Enomoto <[email protected]>
  655. * MessageContractConverter.cs : renaming type to
  656. ServiceModelInternalConverter as well as methods. Now it holds
  657. conversion from MessageBodyDescription to DataContract Type.
  658. * TypedMessageConverter.cs : dependent changes from above.
  659. * ContractDescriptionGenerator.cs :
  660. Temporarily commented out lines that rejects service contract
  661. that does not contain any operation contracts.
  662. Some refactoring.
  663. 2006-06-16 Ankit Jain <[email protected]>
  664. * MetadataSectionSerializerBase.cs: Remove debug Console.WriteLine-s.
  665. * WsdlImporter.cs: Streamline .ctors
  666. * MetadataImporter.cs: Likewise.
  667. * MetadataResolver.cs (MetadataResolver.Resolve): Update to use
  668. WSTransferGet instead of WsTransferGet.
  669. 2006-06-12 Atsushi Enomoto <[email protected]>
  670. * MessageContractConverter.cs, TypedMessageConverter.cs :
  671. Now it generates correct code, still emitting extra assemblies...
  672. 2006-06-12 Atsushi Enomoto <[email protected]>
  673. * MessageContractConverter.cs :
  674. Now it generates code (which is incorrect), spitting dummy.dll
  675. everywhere you run code that uses TypedMessageConverter...
  676. 2006-06-12 Ankit Jain <[email protected]>
  677. * MetadataSectionSerializerBase.cs: New.
  678. * MetadataBundle.cs (MetadataSet.ReadFrom): Use XmlSerializer for
  679. deserializing.
  680. (MetadataSet.ReadXml): Use MetadataSectionSerializer to deserialize
  681. MetadataSection-s.
  682. * MetadataImporter.cs (MetadataImporter..ctor): Use a predefined list of
  683. IPolicyImportExtensions if none is specified.
  684. * WsdlImporter.cs (WsdlImporter.ImportAllContracts): Cache the imported contracts.
  685. (WsdlImporter.ImportAllEndpoints): Implement.
  686. (WsdlImporter.ImportEndpoint): Likewise.
  687. (WsdlImporter..ctor): Use a predefined list of IWsdlImportExtentions if
  688. none is specified.
  689. * IWsdlImporter.cs (ImportContract):
  690. (ImportEndpoint): Fix param names.
  691. * WsdlEndpointConversionContext.cs: Update .ctor, and implement
  692. properties.
  693. * ServiceContractGenerator.cs: Update to not depend on
  694. contractDescription.ContractType as it can be null.
  695. * DataContractSerializerMessageContractConverter.cs (.resolveParticle):
  696. Add 'depth' param.
  697. 2006-06-12 Atsushi Enomoto <[email protected]>
  698. * TypedMessageConverter.cs, MessageContractConverter.cs :
  699. ongoing implementation using Mono.CodeGeneration.
  700. 2006-05-29 Atsushi Enomoto <[email protected]>
  701. * ServiceCredentials.cs, ClientCredentials.cs,
  702. ServiceMetadataBehavior.cs : moved from Sys.SvcModel.
  703. 2006-05-29 Atsushi Enomoto <[email protected]>
  704. * TypedMessageConverter.cs : some ToMessage() code.
  705. * MessageContractConverter.cs,
  706. * ContractDescriptionGenerator.cs : some code to generate contract
  707. type from an arbitrary Type.
  708. 2006-04-27 Ankit Jain <[email protected]>
  709. * WsdlImporter.cs:
  710. * DataContractSerializerMessageContractConverter.cs:
  711. * MetadataImporter.cs:
  712. * WsdlContractConversionContext.cs: Change member field names from
  713. camelCase to underscore_names.
  714. 2006-04-26 Ankit Jain <[email protected]>
  715. * MetadataBundle.cs (MetadataSet.ReadFrom): Initial implementation.
  716. (MetadataSet.Attributes): Add missing property.
  717. * MetadataReference.cs: Fix to match Feb CTP.
  718. * MetadataResolver.cs: Likewise.
  719. * MetadataSection.cs: Likewise.
  720. * MetadataImporter.cs (PolicyExtensions): Implement property.
  721. * MetadataTransferClient.cs (GetMetadata): Initial implementation.
  722. * WsdlImporter.cs: Initial implementation.
  723. * OperationDescription.cs (.ctor): Set is_initiating = true.
  724. * MessageDescription.cs (.ctor): 'action' parameter can be null or
  725. zero-length.
  726. * MessageBodyDescription.cs (Parts): Add internal set method.
  727. * WsdlContractConversionContext.cs (Contract): Implement property.
  728. (WsdlPortType): Likewise.
  729. * DataContractSerializerMessageContractConverter.cs (ImportContract):
  730. Initial implementation.
  731. * WebServiceHelper.cs: Copied from
  732. mcs/class/System.Web.Services/System.Web.Services.Protocols
  733. 2006-04-14 Atsushi Enomoto <[email protected]>
  734. * ContractDescriptionGenerator.cs : it is internal.
  735. * ServiceContractGenerator.cs : minimum implementation for
  736. GenerateServiceContractType() for "client-proxy-gen" tool.
  737. 2006-04-05 Atsushi Enomoto <[email protected]>
  738. * ContractDescriptionGenerator.cs : reject operation-less contract.
  739. 2006-04-05 Atsushi Enomoto <[email protected]>
  740. * ContractDescriptionGenerator.cs : The target contract type should be
  741. the interface, not the implementation type.
  742. 2006-03-17 Atsushi Enomoto <[email protected]>
  743. * ContractDescription.cs : extracted GetContract() implementation
  744. part into ContractDescriptionGenerator.cs.
  745. * ContractDescriptionGenerator.cs : new file.
  746. 2006-03-14 Atsushi Enomoto <[email protected]>
  747. * ServiceEndpointCollection.cs WsdlImporter.cs
  748. PolicyConversionContext.cs OperationDescriptionCollection.cs
  749. PolicyAssertionCollection.cs MessageDescriptionCollection.cs :
  750. couple of API fixes.
  751. 2006-02-23 Atsushi Enomoto <[email protected]>
  752. * PeerSecurityBehavior.cs ServiceCredentials.cs
  753. ServiceAuthorizationBehavior.cs :
  754. Dependent fixes for System.IdentityModel reorgainzation.
  755. 2006-02-23 Atsushi Enomoto <[email protected]>
  756. * EndpointBehaviorCollection.cs ChannelDescription.cs
  757. MessageHeaderDescriptionCollection.cs ServiceCredentials.cs
  758. FaultDescription.cs TypedMessageConverter.cs
  759. AspNetIntegrationRequirementsAttribute.cs
  760. MessageDescription.cs MessagePartDescriptionCollection.cs
  761. OperationBehaviorCollection.cs ListenUriBehavior.cs
  762. ServiceAuthorizationBehavior.cs ChannelBehaviorCollection.cs
  763. MessageBodyDescription.cs IContractBehavior.cs
  764. MessagePropertyDescriptionCollection.cs
  765. ContractBehaviorCollection.cs BehaviorCollection.cs
  766. ServiceEndpointCollection.cs ContractDescription.cs
  767. XmlFormatterOperationBehavior.cs FaultDescriptionCollection.cs
  768. ServiceSecurityAuditBehavior.cs IChannelBehavior.cs
  769. ServiceDescription.cs OperationBehaviorAttribute.cs
  770. MatchAllEndpointBehavior.cs IEndpointBehavior.cs
  771. ServiceMetadataBehavior.cs XmlSerializerOperationBehavior.cs
  772. ServiceBehaviorCollection.cs HostedBindingBehavior.cs
  773. MessageHeaderDescription.cs ViaUriBehavior.cs
  774. MessagePartDescription.cs OperationDescriptionCollection.cs
  775. IServiceBehavior.cs IOperationBehavior.cs
  776. MessagePropertyDescription.cs MustUnderstandBehavior.cs
  777. ServiceEndpoint.cs PeerSecurityBehavior.cs
  778. OperationDescription.cs MessageDescriptionCollection.cs
  779. ReflectedContractCollection.cs :
  780. moved from System.ServiceModel due to the API changes.
  781. 2006-02-23 Atsushi Enomoto <[email protected]>
  782. * ChannelBuildContext.cs ContractExportBehavior.cs
  783. IMessageEncodingBindingElement.cs IOperationContractGenerator.cs
  784. IPolicyImporter.cs IServiceContractGenerator.cs
  785. IStreamUpgradeBindingElement.cs ITransportTokenAssertionProvider.cs
  786. IWsdlExporter.cs IWsdlImporter.cs InvalidChannelBindingException.cs
  787. IpolicyExporter.cs MessageEncodingBindingElementConverter.cs
  788. MetadataConversionError.cs MetadataExporter.cs MetadataImporter.cs
  789. MetadataResolver.cs OperationContractGenerationContext.cs
  790. PolicyConversionContext.cs ReliableSessionBindingElementConverter.cs
  791. SecurityBindingElementConverter.cs
  792. ServiceContractGenerationContext.cs ServiceContractGenerator.cs
  793. ServiceThrottlingBehavior.cs
  794. TransactionFlowBindingElementConverter.cs
  795. TransportBindingElementConverter.cs WsdlContractConversionContext.cs
  796. WsdlEndpointConversionContext.cs WsdlExporter.cs WsdlImporter.cs
  797. XmlFormatterMessageContractConverter.cs
  798. XmlSerializerMessageContractConverter.cs :
  799. Feb. CTP API changes - chapter 1.
  800. 2006-02-14 Atsushi Enomoto <[email protected]>
  801. * ServiceThrottlingBehavior.cs : ServiceThrottle was moved.
  802. 2006-01-26 Atsushi Enomoto <[email protected]>
  803. * ChannelBuildContext.cs :
  804. All builder methods now "reset" UnhandledBindingElements after
  805. the outermost processing.
  806. 2006-01-26 Atsushi Enomoto <[email protected]>
  807. * ChannelBuildContext.cs :
  808. Use BindingElement's BuildBlahFactory directly. Implemented Clone().
  809. * ChannelLoader.cs : removed obsolete type.
  810. 2005-11-21 Atsushi Enomoto <[email protected]>
  811. * XmlSerializerMessageContractConverter.cs,
  812. MessageEncodingBindingElementConverter.cs,
  813. XmlFormatterMessageContractConverter.cs : new files in Nov. CTP.
  814. 2005-11-21 Atsushi Enomoto <[email protected]>
  815. * ServiceLoader.cs, TypeLoader.cs : removed.
  816. 2005-11-21 Atsushi Enomoto <[email protected]>
  817. * ChannelBuildContext.cs : IListener/-Factory vanished in Nov. CTP.
  818. 2005-11-20 Atsushi Enomoto <[email protected]>
  819. * IWsdlExporter.cs, InvalidChannelBindingException.cs,
  820. MetadataImporter.cs, IWsdlImporter.cs, IPolicyImporter.cs,
  821. MetadataConversionError.cs, IpolicyExporter.cs,
  822. MetadataExporter.cs, PolicyConversionContext.cs :
  823. New files in beta2
  824. * ITypeResolver.cs, WsdlBindingConversionContext.cs,
  825. IWsdlBindingElementConverter.cs,
  826. WsdlOperationBindingCoversionContext.cs,
  827. WsdlMessageBindingConversionContext.cs,
  828. WsdlMessageConversionContext.cs, IWsdlBindingConverter.cs,
  829. IWsdlContractConverter.cs, IWsdlEndpointConverter.cs,
  830. WsdlConversionContext.cs, WsdlConverters.cs,
  831. InvalidSettingsException.cs, WsdlBindingConverterBase.cs,
  832. WsdlConversionError.cs, CustomBindingConverter.cs,
  833. WsdlOperationConversionContext.cs :
  834. Removed in beta2
  835. * ReliableSessionBindingElementConverter.cs, ServiceLoader.cs,
  836. TransportBindingElementConverter.cs, ContractExportBehavior.cs,
  837. ChannelLoader.cs, WsdlExporter.cs, MetadataResolver.cs,
  838. SecurityBindingElementConverter.cs,
  839. WsdlContractConversionContext.cs,
  840. WsdlEndpointConversionContext.cs, WsdlImporter.cs,
  841. ServiceThrottlingBehavior.cs, ServiceContractGenerator.cs,
  842. TypeLoader.cs, TransactionFlowBindingElementConverter.cs :
  843. Updated signatures to beta2.
  844. 2005-11-20 Atsushi Enomoto <[email protected]>
  845. * ChannelBuildContext.cs : was seeing
  846. http://savas.parastatidis.name/2005/04/08/4b0b99b1-92c6-4442-ab2e-4c4951009ef4.aspx
  847. and modified channel build logic a bit.
  848. 2005-10-31 Atsushi Enomoto <[email protected]>
  849. * ServiceThrottlingBehavior.cs : implemented ApplyBehavior().
  850. 2005-10-26 Atsushi Enomoto <[email protected]>
  851. * ChannelBuildContext.cs : added DequeueBindingElement() for
  852. BindingElements' internal use. It becomes UnhandledBindingElements.
  853. 2005-10-26 Atsushi Enomoto <[email protected]>
  854. * ChannelBuildContext.cs : implemented BuildListenerFactory().
  855. 2005-10-26 Atsushi Enomoto <[email protected]>
  856. * ChannelBuildContext.cs :
  857. several API fixes detected by improved corcompare.
  858. 2005-10-25 Atsushi Enomoto <[email protected]>
  859. * ChannelBuildContext.cs : added missing generic class constraint.
  860. 2005-10-20 Atsushi Enomoto <[email protected]>
  861. * ReliableSessionBindingElementConverter.cs,
  862. TransportBindingElementConverter.cs, ContractExportBehavior.cs,
  863. SecurityBindingElementConverter.cs,
  864. OperationContractGenerationContext.cs,
  865. ServiceContractGenerationContext.cs, InvalidSettingsException.cs
  866. WsdlBindingConverterBase.cs, WsdlConversionError.cs,
  867. CustomBindingConverter.cs, ServiceContractGenerator.cs,
  868. TransactionFlowBindingElementConverter.cs :
  869. added all missing bits.
  870. * Dummy.cs : finally removed.
  871. * ServiceThrottlingBehavior.cs, WsdlBindingConversionContext.cs :
  872. tiny API fix.
  873. 2005-10-13 Atsushi Enomoto <[email protected]>
  874. * ServiceLoader.cs : serviceType is moved to ServiceDescription.
  875. 2005-10-12 Atsushi Enomoto <[email protected]>
  876. * ServiceLoader.cs, TypeLoader.cs : implemented some.
  877. 2005-10-12 Atsushi Enomoto <[email protected]>
  878. * IWsdlEndpointConverter.cs, IOperationContractGenerator.cs,
  879. IServiceContractGenerator.cs, WsdlBindingConversionContext.cs,
  880. IWsdlBindingElementConverter.cs, IStreamUpgradeBindingElement.cs,
  881. WsdlContractConversionContext.cs,
  882. WsdlOperationBindingCoversionContext.cs,
  883. WsdlMessageBindingConversionContext.cs,
  884. WsdlEndpointConversionContext.cs, WsdlMessageConversionContext.cs,
  885. IWsdlBindingConverter.cs, WsdlOperationConversionContext.cs,
  886. IWsdlContractConverter.cs, ITransportTokenAssertionProvider.cs:
  887. new files for wsdl importer.
  888. * Dummy.cs : removed above.
  889. * WsdlConversionContext.cs, IMessageEncodingBindingElement.cs :
  890. tiny API fixes.
  891. 2005-10-11 Atsushi Enomoto <[email protected]>
  892. * IMessageEncodingBindingElement.cs : new file.
  893. * Dummy.cs : removed above.
  894. 2005-10-09 Atsushi Enomoto <[email protected]>
  895. * ChannelBuilderContext.cs : new file.
  896. * Dummy.cs : removed above.
  897. 2005-09-28 Atsushi Enomoto <[email protected]>
  898. * ServiceThrottlingBehavior.cs : moved from sys.ServiceModel dir.
  899. 2005-09-28 Atsushi Enomoto <[email protected]>
  900. * ITypeResolver.cs, ChannelLoader.cs, ServiceLoader.cs,
  901. TypeLoader.cs : new files.
  902. * Dummy.cs : removed those classes added above.