ChangeLog 39 KB

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