ChangeLog 28 KB

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