ChangeLog 38 KB

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