ChangeLog 16 KB

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