ChangeLog 25 KB

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