ChangeLog 39 KB

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