ChangeLog 43 KB

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