ChangeLog 17 KB

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