ChangeLog 9.5 KB

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