ChangeLog 38 KB

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