ChangeLog 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. 2003-09-14 Lluis Sanchez Gual <[email protected]>
  2. * DocumentableItem.cs MimeContentBinding.cs OperationMessage.cs
  3. OperationMessageCollection.cs PortCollection.cs PortType.cs
  4. PortTypeCollection.cs ServiceCollection.cs ServiceDescriptionCollection.cs
  5. SoapBodyBinding.cs SoapOperationBinding.cs: Several fixes by Erik LeBel
  6. * ServiceDescriptionImporter.cs:
  7. * ServiceDescriptionSerializerBase.cs: regenerated after the changes in
  8. the service description changes.
  9. * ServiceDescriptionReflector.cs: Fixed generation of message parts in
  10. bare format.
  11. 2003-09-11 Lluis Sanchez Gual <[email protected]>
  12. * ServiceDescriptionImporter.cs, ServiceDescriptionReflector.cs: Added
  13. first bits of encoded format support.
  14. 2003-09-04 Lluis Sanchez Gual <[email protected]>
  15. * ServiceDescription.cs: minor fixes.
  16. * ServiceDescriptionImporter.cs: initial implementation.
  17. * ServiceDescriptionReflector.cs: Added support for bare parameter style.
  18. Added support for encoded format.
  19. 2003-09-01 Lluis Sanchez Gual <[email protected]>
  20. * ExtensionManager.cs: Added
  21. * ServiceDescriptionSerializerBase.cs. Added
  22. * ServiceDescription.cs: Reenabled suspport for serialization.
  23. * ServiceDescriptionReflector.cs: Import type and method documentation.
  24. 2003-08-29 Lluis Sanchez Gual <[email protected]>
  25. * ServiceDescription.cs: Disabled suspport for serialization, until I found
  26. an easy way of generate serialization readers and writers.
  27. 2003-08-28 Lluis Sanchez Gual <[email protected]>
  28. * MessageBinding.cs: Added default value attribute for Name property.
  29. * OperationMessage.cs: Added default value attribute for Name property.
  30. * ServiceDescription.cs: Changed order of some properties, so they are
  31. serialized in the right order.
  32. Added GetNamespaceList(), which returns the namespaces to add when serializing
  33. the document.
  34. Implemented classes ServiceDescriptionSerializer and ServiceDescriptionWriter,
  35. that extends the XmlSerializer by adding suport for XmlFormatExtensions.
  36. * ServiceDescriptionReflector.cs: Basic implementation (no support for
  37. extensions yet).
  38. * SoapBinding.cs: Fixed namespace name.
  39. * SoapBodyBinding.cs: Added null check in PartsString property.
  40. * SoapOperationBinding.cs: Fixed namespace name.
  41. 2003-07-22 Lluis Sanchez Gual <[email protected]>
  42. * Binding.cs, Import.cs, Message.cs, MessageBinding.cs, MessagePart.cs,
  43. Operation.cs, OperationBinding.cs, OperationMessage.cs, Port.cs,
  44. PortType.cs, Service.cs: Added XmlIgnore attributes to properties
  45. referencing parent objects.
  46. * OperationMessageCollection.cs: Fixed wrong OnInsert method
  47. * ServiceDescription.cs: Removed unneeded methods in
  48. ServiceDescriptionSerializer.
  49. 2002-08-20 Tim Coleman <[email protected]>
  50. * ServiceDescription.cs:
  51. Add ServiceDescription.ServiceDescriptionSerializer
  52. class.
  53. * ServiceDescriptionFormatExtensionCollection.cs:
  54. Remove reference to "parent".
  55. 2002-08-19 Tim Coleman <[email protected]>
  56. * BindingCollection.cs:
  57. Use base constructor, remove SetParent call
  58. * FaultBindingCollection.cs:
  59. * ImportCollection.cs:
  60. * MessageCollection.cs:
  61. * MessagePartCollection.cs:
  62. * OperationBindingCollection.cs:
  63. * OperationCollection.cs:
  64. * OperationFaultCollection.cs:
  65. * PortCollection.cs:
  66. * PortTypeCollection.cs:
  67. * ServiceCollection.cs:
  68. * ServiceDescriptionFormatExtensionCollection.cs:
  69. Use base constructor
  70. * ServiceDescriptionCollection.cs:
  71. Use base constructor, Remove SetParent method
  72. * ServiceDescriptionBaseCollection.cs:
  73. Make parent object private as according to
  74. class status page.
  75. * OperationMessageCollection.cs:
  76. Use base constructor
  77. Remove excess break's to avoid compiler warning
  78. Remove TODO attribute (confirmed default retval)
  79. 2002-08-15 Tim Coleman <[email protected]>
  80. * FaultBindingCollection.cs:
  81. * ImportCollection.cs:
  82. * MessageCollection.cs:
  83. * MessagePartCollection.cs:
  84. * OperationBindingCollection.cs:
  85. * OperationCollection.cs:
  86. * OperationFaultCollection.cs:
  87. * OperationMessageCollection.cs:
  88. * PortCollection.cs:
  89. * PortTypeCollection.cs:
  90. * ServiceCollection.cs:
  91. * ServiceDescriptionFormatExtensionCollection.cs:
  92. Use parent from ServiceDescriptionBaseCollection
  93. * ServiceDescriptionCollection.cs:
  94. Use parent from ServiceDescriptionBaseCollection
  95. Implement SetParent () method
  96. * ServiceDescriptionBaseCollection.cs:
  97. Add "parent" object.
  98. Add SetParent call to OnSet() and OnInsert ()
  99. 2002-08-12 Tim Coleman <[email protected]>
  100. * Operation.cs:
  101. Fix ParameterOrderString in case ParameterOrder is
  102. null.
  103. * BindingCollection.cs:
  104. Remove Table handling on insert/delete/indexer
  105. because it is handled in base class.
  106. * ServiceDescriptionBaseCollection.cs:
  107. Only add an element to the hashtable if its GetKey ()
  108. method does not return null.
  109. 2002-08-09 Tim Coleman <[email protected]>
  110. * BindingCollection.cs:
  111. * ServiceDescriptionCollection.cs:
  112. Implement Set indexer
  113. * FaultBindingCollection.cs:
  114. * MessageCollection.cs:
  115. * MessagePartCollection.cs:
  116. * OperationFaultCollection.cs:
  117. * PortCollection.cs:
  118. * PortTypeCollection.cs:
  119. * ServiceCollection.cs:
  120. Implement Set indexer, code cleanup
  121. * Message.cs:
  122. Implement FindPartByName ()
  123. * OperationMessageCollection.cs:
  124. Alter OnSet () method
  125. * ServiceDescriptionBaseCollection.cs:
  126. Implement some methods.
  127. * ServiceDescriptionFormatExtensionCollection.cs:
  128. Implement Find (), FindAll (), OnValidate () methods
  129. 2002-08-06 Tim Coleman <[email protected]>
  130. * ServiceDescription.cs:
  131. Add namespace definitions when serializing.
  132. * HttpBinding.cs:
  133. Change namespace definition (wsdl was spelt wsld)
  134. 2002-08-06 Tim Coleman <[email protected]>
  135. * ServiceDescription.cs:
  136. Change the XmlElement name from "type" to "types" for
  137. the Types object
  138. 2002-08-06 Tim Coleman <[email protected]>
  139. * ServerProtocol.cs:
  140. Add new class as implied by class statuc page.
  141. SoapServerProtocol is derived from this.
  142. * SoapServerProtocol.cs:
  143. Change base class to ServerProtocol.
  144. * SoapClientMethod.cs:
  145. This class should not be sealed.
  146. 2002-08-03 Tim Coleman <[email protected]>
  147. * SoapProtocolReflector.cs:
  148. Removed SoapBinding property and made the class
  149. not sealed to agree with class reference page.
  150. 2002-08-03 Tim Coleman <[email protected]>
  151. * ServiceDescriptionBaseCollection.cs:
  152. Removed some NotImplementedException()'s so that
  153. it runs.
  154. 2002-07-26 Tim Coleman <[email protected]>
  155. * ServiceDescription.cs:
  156. Changed the creation of the XmlSerializer after
  157. consulting the System.Xml.Serialization namespace
  158. and trying to serialize a document. Now works somewhat!
  159. 2002-07-25 Tim Coleman <[email protected]>
  160. * OperationMessageCollection.cs:
  161. Some implementation of this class after consulting a
  162. WSDL reference. Now validates the inputs.
  163. 2002-07-24 Tim Coleman <[email protected]>
  164. * ProtocolImporter.cs:
  165. * ProtocolReflector.cs:
  166. Some implementation of these classes. MonoTODO's begone!
  167. * SoapProtocolImporter.cs:
  168. Changed description to literal string "Soap"
  169. * SoapProtocolReflector.cs:
  170. Added a new class based on guesswork and conjecture.
  171. 2002-07-24 Tim Coleman <[email protected]>
  172. * ServiceDescription.cs:
  173. Implement Read/Write methods for serialization/
  174. deserialization.
  175. 2002-07-23 Tim Coleman <[email protected]>
  176. * ServiceDescription.cs:
  177. Add XmlIgnore attribute to ServiceDescriptions property
  178. * OperationFlow.cs:
  179. * ServiceDescriptionImportWarnings.cs:
  180. Explicitly set values in enumeration to match
  181. .NET.
  182. 2002-07-22 Tim Coleman <[email protected]>
  183. * Binding.cs:
  184. * BindingCollection.cs:
  185. * DocumentableItem.cs:
  186. * FaultBinding.cs:
  187. * FaultBindingCollection.cs:
  188. * HttpAddressBinding.cs:
  189. * HttpBinding.cs:
  190. * HttpOperationBinding.cs:
  191. * HttpUrlEncodedBinding.cs:
  192. * HttpUrlReplacementBinding.cs:
  193. * Import.cs:
  194. * ImportCollection.cs:
  195. * InputBinding.cs:
  196. * Message.cs:
  197. * MessageBinding.cs:
  198. * MessageCollection.cs:
  199. * MessagePart.cs:
  200. * MessagePartCollection.cs:
  201. * MimeContentBinding.cs:
  202. * MimeMultipartRelatedBinding.cs:
  203. * MimePart.cs:
  204. * MimePartCollection.cs:
  205. * MimeTextBinding.cs:
  206. * MimeTextMatch.cs:
  207. * MimeTextMatchCollection.cs:
  208. * MimeXmlBinding.cs:
  209. * Operation.cs:
  210. * OperationBinding.cs:
  211. * OperationBindingCollection.cs:
  212. * OperationCollection.cs:
  213. * OperationFaultCollection.cs:
  214. * OperationFlow.cs:
  215. * OperationMessage.cs:
  216. * OperationMessageCollection.cs:
  217. * OutputBinding.cs:
  218. * Port.cs:
  219. * PortCollection.cs:
  220. * PortType.cs:
  221. * PortTypeCollection.cs:
  222. * ProtocolImporter.cs:
  223. * Service.cs:
  224. * ServiceCollection.cs:
  225. * ServiceDescription.cs:
  226. * ServiceDescriptionBaseCollection.cs:
  227. * ServiceDescriptionCollection.cs:
  228. * ServiceDescriptionFormatExtension.cs:
  229. * ServiceDescriptionFormatExtensionCollection.cs:
  230. * ServiceDescriptionImportWarnings.cs:
  231. * SoapAddressBinding.cs:
  232. * SoapBinding.cs:
  233. * SoapBindingStyle.cs:
  234. * SoapBindingUse.cs:
  235. * SoapBodyBinding.cs:
  236. * SoapExtensionImporter.cs:
  237. * SoapExtensionReflector.cs:
  238. * SoapFaultBinding.cs:
  239. * SoapHeaderBinding.cs:
  240. * SoapHeaderFaultBinding.cs:
  241. * SoapOperationBinding.cs:
  242. * SoapTransportImporter.cs:
  243. * Types.cs:
  244. 1. Add missing attributes as determined by reflection
  245. 2. Fix protection levels where appropriate
  246. 3. Add missing items where appropriate
  247. Basically, this was a change to remove all the X's from
  248. the project status page for this namespace :)
  249. 2002-07-19 Tim Coleman <[email protected]>
  250. * Binding.cs:
  251. * BindingCollection.cs:
  252. * ChangeLog:
  253. * DocumentableItem.cs:
  254. * FaultBinding.cs:
  255. * FaultBindingCollection.cs:
  256. * HttpAddressBinding.cs:
  257. * HttpBinding.cs:
  258. * HttpOperationBinding.cs:
  259. * HttpUrlEncodedBinding.cs:
  260. * HttpUrlReplacementBinding.cs:
  261. * Import.cs:
  262. * ImportCollection.cs:
  263. * InputBinding.cs:
  264. * Message.cs:
  265. * MessageBinding.cs:
  266. * MessageCollection.cs:
  267. * MessagePart.cs:
  268. * MessagePartCollection.cs:
  269. * MimeContentBinding.cs:
  270. * MimeMultipartRelatedBinding.cs:
  271. * MimePart.cs:
  272. * MimePartCollection.cs:
  273. * MimeTextBinding.cs:
  274. * MimeTextMatch.cs:
  275. * MimeTextMatchCollection.cs:
  276. * MimeXmlBinding.cs:
  277. * Operation.cs:
  278. * OperationBinding.cs:
  279. * OperationBindingCollection.cs:
  280. * OperationCollection.cs:
  281. * OperationFault.cs:
  282. * OperationFaultCollection.cs:
  283. * OperationFlow.cs:
  284. * OperationInput.cs:
  285. * OperationMessage.cs:
  286. * OperationMessageCollection.cs:
  287. * OperationOutput.cs:
  288. * OutputBinding.cs:
  289. * Port.cs:
  290. * PortCollection.cs:
  291. * PortType.cs:
  292. * PortTypeCollection.cs:
  293. * ProtocolImporter.cs:
  294. * ProtocolReflector.cs:
  295. * Service.cs:
  296. * ServiceCollection.cs:
  297. * ServiceDescription.cs:
  298. * ServiceDescriptionBaseCollection.cs:
  299. * ServiceDescriptionCollection.cs:
  300. * ServiceDescriptionFormatExtension.cs:
  301. * ServiceDescriptionFormatExtensionCollection.cs:
  302. * ServiceDescriptionImportStyle.cs:
  303. * ServiceDescriptionImportWarnings.cs:
  304. * ServiceDescriptionImporter.cs:
  305. * ServiceDescriptionReflector.cs:
  306. * SoapAddressBinding.cs:
  307. * SoapBinding.cs:
  308. * SoapBindingStyle.cs:
  309. * SoapBindingUse.cs:
  310. * SoapBodyBinding.cs:
  311. * SoapExtensionImporter.cs:
  312. * SoapExtensionReflector.cs:
  313. * SoapFaultBinding.cs:
  314. * SoapHeaderBinding.cs:
  315. * SoapHeaderFaultBinding.cs:
  316. * SoapOperationBinding.cs:
  317. * SoapProtocolImporter.cs:
  318. * SoapTransportImporter.cs:
  319. * Types.cs:
  320. Initial implementation