ChangeLog 15 KB

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