ChangeLog 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699
  1. 2004-10-01 Lluis Sanchez Gual <[email protected]>
  2. * HttpSimpleProtocolImporter.cs: Fix import of arrays of primitive types.
  3. 2004-09-13 Lluis Sanchez Gual <[email protected]>
  4. * ServiceDescriptionReflector.cs: Don't generate empty schemas.
  5. 2004-09-03 Lluis Sanchez Gual <[email protected]>
  6. * ProtocolImporter.cs: Fixing the fix. The generated class must always
  7. be added.
  8. 2004-09-01 Lluis Sanchez Gual <[email protected]>
  9. * BasicProfileChecker.cs: Some small fixes.
  10. * FaultBinding.cs: Removed useless code.
  11. * HttpSimpleProtocolImporter.cs, SoapProtocolImporter.cs: Take into account
  12. that now we may be generating code for a binding which is not referenced
  13. by any port. In this case Port is null.
  14. * MessageBinding.cs: Properly set the parent operation binding.
  15. * OperationBinding.cs: When adding messages, set its parent property.
  16. * ProtocolImporter.cs: Support generation of proxies for wsdl documents
  17. that do not have any Service entry. In this case, it now generates
  18. a proxy for every binding.
  19. 2004-08-24 Lluis Sanchez Gual <[email protected]>
  20. * BasicProfileChecker.cs: Implemented more rules.
  21. * ConformanceChecker.cs: Added service list property in
  22. ConformanceCheckContext.
  23. * MessagePart.cs: Added some convenient internal properties.
  24. * OperationMessageCollection.cs: Added property for getting the fault
  25. message.
  26. * ServiceDescriptionFormatExtensionCollection.cs: The find method now
  27. can return subclasses of the provided class.
  28. * WebServicesInteroperability.cs: Set the context schema when processing
  29. a schema.
  30. 2004-07-28 Lluis Sanchez Gual <[email protected]>
  31. * BasicProfileChecker.cs, ConformanceChecker.cs,
  32. WebServicesInteroperability.cs: Fixed build errors. I commited before
  33. it was ready :-(.
  34. 2004-07-28 Lluis Sanchez Gual <[email protected]>
  35. * BasicProfileChecker.cs: Added checks for R2101, R2102, R2105, R2110, R2111
  36. * ConformanceChecker.cs: Added check methods for schema objects.
  37. * WebServicesInteroperability.cs: Added checks for schema objects.
  38. 2004-07-26 Lluis Sanchez Gual <[email protected]>
  39. * HttpSimpleProtocolImporter.cs: Implemented internal method to support
  40. the new asyc model.
  41. * ProtocolImporter.cs: Generate code for the new async model.
  42. Added support for generating server skeletons in addition to client
  43. proxies.
  44. * ServiceDescriptionImporter.cs: Removed unneded check.
  45. * SoapProtocolImporter.cs: Added support for generating server skeletons in
  46. addition to client proxies.
  47. 2004-07-23 Lluis Sanchez Gual <[email protected]>
  48. * ServiceDescriptionImporter.cs: Fixed bug when getting documents from a
  49. reference.
  50. * SoapProtocolImporter.cs: Create code exportes using the corrent generation
  51. options. Added final attribute to the generated methods (so generated
  52. methods are not virtual any more).
  53. * WebServicesInteroperability.cs: Fixed bug when getting documents from a
  54. reference. Added check for Import elements.
  55. 2004-07-22 Lluis Sanchez Gual <[email protected]>
  56. * ProtocolImporter.cs: Added some internal properties needed for 2.0
  57. features.
  58. * ServiceDescriptionImporter.cs: Implemented some 2.0 methods.
  59. * SoapProtocolImporter.cs: Create xml importers using the correct
  60. ImportContext and generation options.
  61. * WebReference.cs: It is now internal for 1.1 profile. Implemented some
  62. properties.
  63. * CodeGenerationOptions.cs: Made internal in 1.1 profile.
  64. * ImportContext.cs: Implemented.
  65. * XmlSchemaImporter.cs: Implemented some 2.0 constructors.
  66. 2004-07-14 Lluis Sanchez Gual <[email protected]>
  67. * ConformanceChecker.cs, BasicProfileChecker.cs: New files that implement
  68. the basic infrastructure for basic profile conformance checking.
  69. * BasicProfileViolation.cs: Take normative information from the rule object.
  70. * BasicProfileViolationCollection.cs: Added Add method.
  71. * ServiceDescriptionFormatExtension.cs: Little fix.
  72. * WebServicesInteroperability.cs: Implemented basic support for conformance
  73. checking.
  74. 2004-07-13 Lluis Sanchez Gual <[email protected]>
  75. * Binding.cs, Message.cs, MessageBinding.cs, MessagePart.cs, Operation.cs,
  76. OperationBinding.cs, OperationMessage.cs, Port.cs, PortType.cs,
  77. Service.cs, ServiceDescription.cs,
  78. Name property moved to NamedItem in 2.0.
  79. * DocumentableItem.cs, ServiceDescriptionFormatExtension.cs,
  80. ServiceDescriptionImportWarnings.cs, ServiceDescriptionImporter.cs,
  81. SoapFaultBinding.cs: Added 2.0 api.
  82. * BasicProfileViolation.cs, BasicProfileViolationCollection.cs,
  83. NamedItem.cs, Soap12AddressBinding.cs, Soap12Binding.cs,
  84. Soap12BodyBinding.cs, Soap12FaultBinding.cs, Soap12HeaderBinding.cs,
  85. Soap12OperationBinding.cs, WebReference.cs, WebReferenceCollection.cs,
  86. WebServicesInteroperability.cs: Mostly implemented new 2.0 classes.
  87. 2004-07-01 Lluis Sanchez Gual <[email protected]>
  88. * SoapProtocolReflector.cs: Don't generate wsdl for unknown header
  89. attributes.
  90. 2004-06-25 Lluis Sanchez Gual <[email protected]>
  91. * HttpSimpleProtocolImporter.cs: Added null check. The XmlTypeMapping for
  92. the return type will be null if the method returns void.
  93. 2004-06-22 Lluis Sanchez Gual <[email protected]>
  94. * HttpSimpleProtocolImporter.cs: Import return types as XmlTypeMapping,
  95. not as XmlMemberMapping. This allows the use of the correct AddMetadata
  96. method for generating attributes.
  97. 2004-06-11 Gert Driesen <[email protected]>
  98. * SoapProtocolImporter.cs: Added stub for missing IsSoapEncodingPresent
  99. method
  100. * MimeContentBinding.cs: removed extra Default attribute from Part
  101. 2004-06-10 Lluis Sanchez Gual <[email protected]>
  102. * HttpSimpleProtocolImporter.cs: Add needed XmlInclude attributes to the
  103. generated class. Generate the correct data type for input parameters.
  104. * SoapProtocolImporter.cs: Like in MS.NET, take the first output parameter
  105. as the return value of the method. When generating a header variable,
  106. use the type name as the base for the variable name, not the part name.
  107. 2004-06-02 Lluis Sanchez Gual <[email protected]>
  108. * HttpSimpleProtocolImporter.cs: Fixed case of generated methods to match
  109. MS behavior. Always use import input parameters as System.String.
  110. * ProtocolImporter.cs: Remove _x0020_ from type names.
  111. * SoapProtocolImporter.cs: Fixed case of generated methods to match
  112. MS behavior.
  113. 2004-06-01 Gert Driesen <[email protected]>
  114. * Binding.cs: removed extra XmlIgnore attribute on ServiceDescription
  115. * Import.cs: removed extra XmlIgnore attribute on ServiceDescription
  116. * Message.cs: removed extra XmlIgnore attribute on ServiceDescription
  117. * MessageBinding.cs: removed extra DefaultValue attribute from Name,
  118. removed extra XmlIgnoreAttribute from OperationBinding
  119. * MessagePart.cs: removed extra XmlIgnore attribute on Message
  120. * MimeContentBinding.cs: removed extra DefaultValue attribute on Part
  121. * Operation.cs: removed extra XmlIgnore attribute on PortType
  122. * OperationBinding.cs: removed extra XmlIgnore attribute on Binding
  123. * OperationMessage.cs: removed extra XmlIgnore attribute on Operation
  124. * Port.cs: removed extra XmlIgnore attribute on Service
  125. * PortType.cs: removed extra XmlIgnore on ServiceDescription
  126. * Service.cs: removed extra XmlIgnore on ServiceDescription
  127. * ServiceDescriptionFormatExtension.cs: removed extra XmlIgnore
  128. attribute on Parent
  129. * SoapHeaderBinding.cs: added XmlElement attribute on Fault
  130. * HttpSimpleProtocolImporter.cs: removed unused variable
  131. * ServiceDescriptionImporter.cs: removed unused variable
  132. * SoapProtocolImporter.cs: removed unused variable
  133. 2004-05-25 Lluis Sanchez Gual <[email protected]>
  134. * BindingCollection.cs: Fixed this[string] property.
  135. 2004-05-24 Lluis Sanchez Gual <[email protected]>
  136. * ProtocolImporter.cs: issue a warning if no services have been found.
  137. 2004-03-02 Lluis Sanchez Gual <[email protected]>
  138. * SoapBinding.cs: Added missing attributes. The class is not sealed.
  139. * SoapBodyBinding.cs: Removed unneeded attributes.
  140. 2004-03-02 Lluis Sanchez Gual <[email protected]>
  141. * ProtocolImporter.cs: Little fix in schema classification.
  142. 2004-02-27 Lluis Sanchez Gual <[email protected]>
  143. * ExtensionManager.cs: Create all serializers for soap extensions at once.
  144. * HttpSimpleProtocolImporter.cs: Assign the correct set of schemas to the
  145. schema importers (do not mix literal schemas with encoded schemas).
  146. * ProtocolImporter.cs: Added LiteralSchemas and EncodedSchemas properties.
  147. Separation between literal and encoded schemas is needed to avoid importing
  148. for example a literal schema as encoded. Also implemented ClasifySchemas,
  149. which separates literal from encoded schemas. I really don't like doing it
  150. in this way, but I haven't found another way.
  151. * SoapProtocolImporter.cs: Add type include attributes to the generated
  152. proxy classes.
  153. 2004-02-11 Lluis Sanchez Gual <[email protected]>
  154. * SoapProtocolReflector.cs: Fixed bug #53247. Element name asigned to the
  155. message part (in literal+bare format) was incorrect.
  156. 2004-01-27 Lluis Sanchez Gual <[email protected]>
  157. * SoapProtocolImporter.cs, SoapProtocolReflector.cs: Support methods with
  158. "any" as return type. In this case, the part of the return message contains
  159. a reference to the type that describes the "any" element.
  160. 2004-01-24 Lluis Sanchez Gual <[email protected]>
  161. * ExtensionManager.cs: Support more than one XmlFormatExtensionPrefixAttribute
  162. un one soap extension.
  163. * HttpSimpleProtocolImporter.cs: Made class internal.
  164. * HttpSimpleProtocolReflector.cs.cs: ReflectMethodBinding(): GET and POST
  165. do not use method bindings. Return null.
  166. * ProtocolReflector.cs: Several fixes: do not generate binding if it doesn't
  167. have any operation, avoid port and binding name colisions, and other minor
  168. fixes.
  169. * ServiceDescription.cs: Collect the namespaces to be added to the root
  170. element of a serializaed wsdl document from the soap extensions.
  171. * ServiceDescriptionSerializerBase.cs: Made classes internal.
  172. * SoapAddressBinding.cs, SoapFaultBinding.cs, SoapOperationBinding.cs,
  173. SoapProtocolImporter.cs: Class should not be sealed.
  174. * SoapBodyBinding.cs: Set the correct class attributes.
  175. * SoapHeaderBinding.cs: Class should not be sealed. Added missing method.
  176. * SoapHeaderFaultBinding.cs: Fixed class attributes.
  177. 2004-01-21 Lluis Sanchez Gual <[email protected]>
  178. * HttpSimpleProtocolImporter.cs: pass the web service class list to the xml
  179. importers to make sure that no data classes are created with the same
  180. name as the web service.
  181. * ProtocolImporter.cs: Use port name as class name only if there is more
  182. than one port using the same protocol. This fixes big #52742.
  183. 2004-01-19 Lluis Sanchez Gual <[email protected]>
  184. * HttpSimpleProtocolReflector.cs, SoapProtocolReflector.cs:
  185. Use GetWebServiceLiteralNamespace instead of WebServiceLiteralNamespace.
  186. * ProtocolReflector.cs: Port names must be unique in a service description.
  187. This fixes bug #53019.
  188. * ProtocolImporter.cs: Little fix.
  189. 2004-01-14 Lluis Sanchez Gual <[email protected]>
  190. * ProtocolImporter.cs, SoapProtocolImporter.cs: Added support for OneWay
  191. operations (those don't have output message).
  192. * SoapProtocolReflector.cs: Set the correct element name and
  193. namespace for headers (those are not managed like other data classes).
  194. 2004-01-13 Lluis Sanchez Gual <[email protected]>
  195. * ProtocolReflector.cs: in the case a new ServiceDescription is created,
  196. the name of the BindingInfo was not copied into the new ServiceDescriptor.
  197. Patch by Yaacov Akiba Slama.
  198. 2003-12-12 Lluis Sanchez Gual <[email protected]>
  199. * HttpSimpleProtocolImporter.cs: In ImportOutMembersMapping(), support part
  200. without element name (use anyType in this case).
  201. In GetOutMimeFormatter(), support MimeContentBinding.
  202. * ProtocolImporter.cs, SoapProtocolImporter.cs: Improved error and warning
  203. handling. Minor fixes.
  204. 2003-11-11 Lluis Sanchez Gual <[email protected]>
  205. * ServiceDescription.cs, SoapBinding.cs, SoapHeaderBinding.cs,
  206. SoapHeaderFaultBinding.cs: Removed some TODOs and FIXMEs.
  207. 2003-10-20 Lluis Sanchez Gual <[email protected]>
  208. * ServiceDescription.cs: Fixed implementation of CanRead.
  209. 2003-10-15 Lluis Sanchez Gual <[email protected]>
  210. * MessageBinding.cs: Name property should be null by default.
  211. * ProtocolImporter.cs: Take into account the previous change.
  212. 2003-10-15 Lluis Sanchez Gual <[email protected]>
  213. * HttpSimpleProtocolReflector.cs, ProtocolReflector.cs:
  214. Fixed naming of messages.
  215. * ProtocolImporter.cs: It now iterates through all bindings. It creates
  216. a namespace for all bindings.
  217. * ServiceDescriptionImporter.cs: Some code moved to ProtocolImporter.
  218. * SoapProtocolImporter.cs: Improved support for RPC format. It now is working.
  219. 2003-10-13 Lluis Sanchez Gual <[email protected]>
  220. * HttpSimpleProtocolReflector.cs, SoapProtocolReflector.cs:
  221. Get the namespace for literal types from LogicalTypeInfo, since it may not
  222. be the same as the service namespace.
  223. * ProtocolReflector.cs: Access LogicalTypeInfo to get WS info common to
  224. all protocols.
  225. * ServiceDescription.cs: Added soap/encoded namespace.
  226. * SoapProtocolImporter.cs: Added some bits of RPC format support.
  227. 2003-10-06 Lluis Sanchez Gual <[email protected]>
  228. * ProtocolImporter.cs: Moved some code to ServiceDescriptionImporter.
  229. WebServiceBindingAttribute addition moved to SoapProtocolImporter.
  230. Moved GetServiceUrl here (from SoapProtocolImporter).
  231. * ServiceDescriptionImporter.cs: Added support for HttpGet and HttpPost
  232. importers.
  233. * SoapProtocolImporter.cs: Minor fixes.
  234. * HttpSimpleProtocolImporter.cs, HttpGetProtocolImporter.cs,
  235. HttpPostProtocolImporter.cs: new files that implement HttpGet and HttpPost
  236. importers.
  237. 2003-10-04 Lluis Sanchez Gual <[email protected]>
  238. * ProtocolReflector.cs: The ReflectionImporter property now creates a
  239. reflector if the TypeStubInfo does not provide one.
  240. Do not create XmlSchemaExporter. Take it from the service reflector, sine
  241. it must be reused for all protocol reflectors. Moved some code to
  242. SoapProtocolReflector, since it cannot be reused for all reflectors.
  243. * ServiceDescriptionReflector.cs: Reflect the type for all available
  244. protocols.
  245. * SoapProtocolReflector.cs: Moved here some code from ProtoclReflector.
  246. * HttpGetProtocolReflector.cs, HttpPostProtocolReflector.cs,
  247. HttpSimpleProtocolReflector.cs: new files.
  248. 2003-10-01 Lluis Sanchez Gual <[email protected]>
  249. * ProtocolReflector.cs: Adapted to the changes in TypeStubInfo. Moved some
  250. common code to ServiceDescriptionReflector.
  251. * ServiceDescriptionReflector.cs: Moved some code from ProtocolReflector.cs
  252. 2003-09-28 Lluis Sanchez Gual <[email protected]>
  253. * ExtensionManager.cs: Read extension types from the configuration file.
  254. Added methods for getting extension importers and reflectors.
  255. * ProtocolImporter.cs: Implemented.
  256. * ProtocolReflector.cs: Implemented.
  257. * ServiceDescriptionCollection.cs: Fixed some methods for finding wsdl
  258. elements.
  259. * ServiceDescriptionImporter.cs: moved most of the code to ProtocolImporter.
  260. * ServiceDescriptionReflector.cs: moved most of the code to
  261. ProtocolReflector and SoapProtocolReflector.
  262. * SoapProtocolImporter.cs: Implemented.
  263. * SoapProtocolReflector.cs: Implemented.
  264. * SoapTransportImporter.cs: Implemented.
  265. * SoapHttpTransportImporter.cs: Implemented.
  266. * wsdl.genxs: Added.
  267. 2003-09-14 Lluis Sanchez Gual <[email protected]>
  268. * DocumentableItem.cs MimeContentBinding.cs OperationMessage.cs
  269. OperationMessageCollection.cs PortCollection.cs PortType.cs
  270. PortTypeCollection.cs ServiceCollection.cs ServiceDescriptionCollection.cs
  271. SoapBodyBinding.cs SoapOperationBinding.cs: Several fixes by Erik LeBel
  272. * ServiceDescriptionImporter.cs:
  273. * ServiceDescriptionSerializerBase.cs: regenerated after the changes in
  274. the service description changes.
  275. * ServiceDescriptionReflector.cs: Fixed generation of message parts in
  276. bare format.
  277. 2003-09-11 Lluis Sanchez Gual <[email protected]>
  278. * ServiceDescriptionImporter.cs, ServiceDescriptionReflector.cs: Added
  279. first bits of encoded format support.
  280. 2003-09-04 Lluis Sanchez Gual <[email protected]>
  281. * ServiceDescription.cs: minor fixes.
  282. * ServiceDescriptionImporter.cs: initial implementation.
  283. * ServiceDescriptionReflector.cs: Added support for bare parameter style.
  284. Added support for encoded format.
  285. 2003-09-01 Lluis Sanchez Gual <[email protected]>
  286. * ExtensionManager.cs: Added
  287. * ServiceDescriptionSerializerBase.cs. Added
  288. * ServiceDescription.cs: Reenabled suspport for serialization.
  289. * ServiceDescriptionReflector.cs: Import type and method documentation.
  290. 2003-08-29 Lluis Sanchez Gual <[email protected]>
  291. * ServiceDescription.cs: Disabled suspport for serialization, until I found
  292. an easy way of generate serialization readers and writers.
  293. 2003-08-28 Lluis Sanchez Gual <[email protected]>
  294. * MessageBinding.cs: Added default value attribute for Name property.
  295. * OperationMessage.cs: Added default value attribute for Name property.
  296. * ServiceDescription.cs: Changed order of some properties, so they are
  297. serialized in the right order.
  298. Added GetNamespaceList(), which returns the namespaces to add when serializing
  299. the document.
  300. Implemented classes ServiceDescriptionSerializer and ServiceDescriptionWriter,
  301. that extends the XmlSerializer by adding suport for XmlFormatExtensions.
  302. * ServiceDescriptionReflector.cs: Basic implementation (no support for
  303. extensions yet).
  304. * SoapBinding.cs: Fixed namespace name.
  305. * SoapBodyBinding.cs: Added null check in PartsString property.
  306. * SoapOperationBinding.cs: Fixed namespace name.
  307. 2003-07-22 Lluis Sanchez Gual <[email protected]>
  308. * Binding.cs, Import.cs, Message.cs, MessageBinding.cs, MessagePart.cs,
  309. Operation.cs, OperationBinding.cs, OperationMessage.cs, Port.cs,
  310. PortType.cs, Service.cs: Added XmlIgnore attributes to properties
  311. referencing parent objects.
  312. * OperationMessageCollection.cs: Fixed wrong OnInsert method
  313. * ServiceDescription.cs: Removed unneeded methods in
  314. ServiceDescriptionSerializer.
  315. 2002-08-20 Tim Coleman <[email protected]>
  316. * ServiceDescription.cs:
  317. Add ServiceDescription.ServiceDescriptionSerializer
  318. class.
  319. * ServiceDescriptionFormatExtensionCollection.cs:
  320. Remove reference to "parent".
  321. 2002-08-19 Tim Coleman <[email protected]>
  322. * BindingCollection.cs:
  323. Use base constructor, remove SetParent call
  324. * FaultBindingCollection.cs:
  325. * ImportCollection.cs:
  326. * MessageCollection.cs:
  327. * MessagePartCollection.cs:
  328. * OperationBindingCollection.cs:
  329. * OperationCollection.cs:
  330. * OperationFaultCollection.cs:
  331. * PortCollection.cs:
  332. * PortTypeCollection.cs:
  333. * ServiceCollection.cs:
  334. * ServiceDescriptionFormatExtensionCollection.cs:
  335. Use base constructor
  336. * ServiceDescriptionCollection.cs:
  337. Use base constructor, Remove SetParent method
  338. * ServiceDescriptionBaseCollection.cs:
  339. Make parent object private as according to
  340. class status page.
  341. * OperationMessageCollection.cs:
  342. Use base constructor
  343. Remove excess break's to avoid compiler warning
  344. Remove TODO attribute (confirmed default retval)
  345. 2002-08-15 Tim Coleman <[email protected]>
  346. * FaultBindingCollection.cs:
  347. * ImportCollection.cs:
  348. * MessageCollection.cs:
  349. * MessagePartCollection.cs:
  350. * OperationBindingCollection.cs:
  351. * OperationCollection.cs:
  352. * OperationFaultCollection.cs:
  353. * OperationMessageCollection.cs:
  354. * PortCollection.cs:
  355. * PortTypeCollection.cs:
  356. * ServiceCollection.cs:
  357. * ServiceDescriptionFormatExtensionCollection.cs:
  358. Use parent from ServiceDescriptionBaseCollection
  359. * ServiceDescriptionCollection.cs:
  360. Use parent from ServiceDescriptionBaseCollection
  361. Implement SetParent () method
  362. * ServiceDescriptionBaseCollection.cs:
  363. Add "parent" object.
  364. Add SetParent call to OnSet() and OnInsert ()
  365. 2002-08-12 Tim Coleman <[email protected]>
  366. * Operation.cs:
  367. Fix ParameterOrderString in case ParameterOrder is
  368. null.
  369. * BindingCollection.cs:
  370. Remove Table handling on insert/delete/indexer
  371. because it is handled in base class.
  372. * ServiceDescriptionBaseCollection.cs:
  373. Only add an element to the hashtable if its GetKey ()
  374. method does not return null.
  375. 2002-08-09 Tim Coleman <[email protected]>
  376. * BindingCollection.cs:
  377. * ServiceDescriptionCollection.cs:
  378. Implement Set indexer
  379. * FaultBindingCollection.cs:
  380. * MessageCollection.cs:
  381. * MessagePartCollection.cs:
  382. * OperationFaultCollection.cs:
  383. * PortCollection.cs:
  384. * PortTypeCollection.cs:
  385. * ServiceCollection.cs:
  386. Implement Set indexer, code cleanup
  387. * Message.cs:
  388. Implement FindPartByName ()
  389. * OperationMessageCollection.cs:
  390. Alter OnSet () method
  391. * ServiceDescriptionBaseCollection.cs:
  392. Implement some methods.
  393. * ServiceDescriptionFormatExtensionCollection.cs:
  394. Implement Find (), FindAll (), OnValidate () methods
  395. 2002-08-06 Tim Coleman <[email protected]>
  396. * ServiceDescription.cs:
  397. Add namespace definitions when serializing.
  398. * HttpBinding.cs:
  399. Change namespace definition (wsdl was spelt wsld)
  400. 2002-08-06 Tim Coleman <[email protected]>
  401. * ServiceDescription.cs:
  402. Change the XmlElement name from "type" to "types" for
  403. the Types object
  404. 2002-08-06 Tim Coleman <[email protected]>
  405. * ServerProtocol.cs:
  406. Add new class as implied by class statuc page.
  407. SoapServerProtocol is derived from this.
  408. * SoapServerProtocol.cs:
  409. Change base class to ServerProtocol.
  410. * SoapClientMethod.cs:
  411. This class should not be sealed.
  412. 2002-08-03 Tim Coleman <[email protected]>
  413. * SoapProtocolReflector.cs:
  414. Removed SoapBinding property and made the class
  415. not sealed to agree with class reference page.
  416. 2002-08-03 Tim Coleman <[email protected]>
  417. * ServiceDescriptionBaseCollection.cs:
  418. Removed some NotImplementedException()'s so that
  419. it runs.
  420. 2002-07-26 Tim Coleman <[email protected]>
  421. * ServiceDescription.cs:
  422. Changed the creation of the XmlSerializer after
  423. consulting the System.Xml.Serialization namespace
  424. and trying to serialize a document. Now works somewhat!
  425. 2002-07-25 Tim Coleman <[email protected]>
  426. * OperationMessageCollection.cs:
  427. Some implementation of this class after consulting a
  428. WSDL reference. Now validates the inputs.
  429. 2002-07-24 Tim Coleman <[email protected]>
  430. * ProtocolImporter.cs:
  431. * ProtocolReflector.cs:
  432. Some implementation of these classes. MonoTODO's begone!
  433. * SoapProtocolImporter.cs:
  434. Changed description to literal string "Soap"
  435. * SoapProtocolReflector.cs:
  436. Added a new class based on guesswork and conjecture.
  437. 2002-07-24 Tim Coleman <[email protected]>
  438. * ServiceDescription.cs:
  439. Implement Read/Write methods for serialization/
  440. deserialization.
  441. 2002-07-23 Tim Coleman <[email protected]>
  442. * ServiceDescription.cs:
  443. Add XmlIgnore attribute to ServiceDescriptions property
  444. * OperationFlow.cs:
  445. * ServiceDescriptionImportWarnings.cs:
  446. Explicitly set values in enumeration to match
  447. .NET.
  448. 2002-07-22 Tim Coleman <[email protected]>
  449. * Binding.cs:
  450. * BindingCollection.cs:
  451. * DocumentableItem.cs:
  452. * FaultBinding.cs:
  453. * FaultBindingCollection.cs:
  454. * HttpAddressBinding.cs:
  455. * HttpBinding.cs:
  456. * HttpOperationBinding.cs:
  457. * HttpUrlEncodedBinding.cs:
  458. * HttpUrlReplacementBinding.cs:
  459. * Import.cs:
  460. * ImportCollection.cs:
  461. * InputBinding.cs:
  462. * Message.cs:
  463. * MessageBinding.cs:
  464. * MessageCollection.cs:
  465. * MessagePart.cs:
  466. * MessagePartCollection.cs:
  467. * MimeContentBinding.cs:
  468. * MimeMultipartRelatedBinding.cs:
  469. * MimePart.cs:
  470. * MimePartCollection.cs:
  471. * MimeTextBinding.cs:
  472. * MimeTextMatch.cs:
  473. * MimeTextMatchCollection.cs:
  474. * MimeXmlBinding.cs:
  475. * Operation.cs:
  476. * OperationBinding.cs:
  477. * OperationBindingCollection.cs:
  478. * OperationCollection.cs:
  479. * OperationFaultCollection.cs:
  480. * OperationFlow.cs:
  481. * OperationMessage.cs:
  482. * OperationMessageCollection.cs:
  483. * OutputBinding.cs:
  484. * Port.cs:
  485. * PortCollection.cs:
  486. * PortType.cs:
  487. * PortTypeCollection.cs:
  488. * ProtocolImporter.cs:
  489. * Service.cs:
  490. * ServiceCollection.cs:
  491. * ServiceDescription.cs:
  492. * ServiceDescriptionBaseCollection.cs:
  493. * ServiceDescriptionCollection.cs:
  494. * ServiceDescriptionFormatExtension.cs:
  495. * ServiceDescriptionFormatExtensionCollection.cs:
  496. * ServiceDescriptionImportWarnings.cs:
  497. * SoapAddressBinding.cs:
  498. * SoapBinding.cs:
  499. * SoapBindingStyle.cs:
  500. * SoapBindingUse.cs:
  501. * SoapBodyBinding.cs:
  502. * SoapExtensionImporter.cs:
  503. * SoapExtensionReflector.cs:
  504. * SoapFaultBinding.cs:
  505. * SoapHeaderBinding.cs:
  506. * SoapHeaderFaultBinding.cs:
  507. * SoapOperationBinding.cs:
  508. * SoapTransportImporter.cs:
  509. * Types.cs:
  510. 1. Add missing attributes as determined by reflection
  511. 2. Fix protection levels where appropriate
  512. 3. Add missing items where appropriate
  513. Basically, this was a change to remove all the X's from
  514. the project status page for this namespace :)
  515. 2002-07-19 Tim Coleman <[email protected]>
  516. * Binding.cs:
  517. * BindingCollection.cs:
  518. * ChangeLog:
  519. * DocumentableItem.cs:
  520. * FaultBinding.cs:
  521. * FaultBindingCollection.cs:
  522. * HttpAddressBinding.cs:
  523. * HttpBinding.cs:
  524. * HttpOperationBinding.cs:
  525. * HttpUrlEncodedBinding.cs:
  526. * HttpUrlReplacementBinding.cs:
  527. * Import.cs:
  528. * ImportCollection.cs:
  529. * InputBinding.cs:
  530. * Message.cs:
  531. * MessageBinding.cs:
  532. * MessageCollection.cs:
  533. * MessagePart.cs:
  534. * MessagePartCollection.cs:
  535. * MimeContentBinding.cs:
  536. * MimeMultipartRelatedBinding.cs:
  537. * MimePart.cs:
  538. * MimePartCollection.cs:
  539. * MimeTextBinding.cs:
  540. * MimeTextMatch.cs:
  541. * MimeTextMatchCollection.cs:
  542. * MimeXmlBinding.cs:
  543. * Operation.cs:
  544. * OperationBinding.cs:
  545. * OperationBindingCollection.cs:
  546. * OperationCollection.cs:
  547. * OperationFault.cs:
  548. * OperationFaultCollection.cs:
  549. * OperationFlow.cs:
  550. * OperationInput.cs:
  551. * OperationMessage.cs:
  552. * OperationMessageCollection.cs:
  553. * OperationOutput.cs:
  554. * OutputBinding.cs:
  555. * Port.cs:
  556. * PortCollection.cs:
  557. * PortType.cs:
  558. * PortTypeCollection.cs:
  559. * ProtocolImporter.cs:
  560. * ProtocolReflector.cs:
  561. * Service.cs:
  562. * ServiceCollection.cs:
  563. * ServiceDescription.cs:
  564. * ServiceDescriptionBaseCollection.cs:
  565. * ServiceDescriptionCollection.cs:
  566. * ServiceDescriptionFormatExtension.cs:
  567. * ServiceDescriptionFormatExtensionCollection.cs:
  568. * ServiceDescriptionImportStyle.cs:
  569. * ServiceDescriptionImportWarnings.cs:
  570. * ServiceDescriptionImporter.cs:
  571. * ServiceDescriptionReflector.cs:
  572. * SoapAddressBinding.cs:
  573. * SoapBinding.cs:
  574. * SoapBindingStyle.cs:
  575. * SoapBindingUse.cs:
  576. * SoapBodyBinding.cs:
  577. * SoapExtensionImporter.cs:
  578. * SoapExtensionReflector.cs:
  579. * SoapFaultBinding.cs:
  580. * SoapHeaderBinding.cs:
  581. * SoapHeaderFaultBinding.cs:
  582. * SoapOperationBinding.cs:
  583. * SoapProtocolImporter.cs:
  584. * SoapTransportImporter.cs:
  585. * Types.cs:
  586. Initial implementation