ChangeLog 42 KB

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