ChangeLog 44 KB

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