ChangeLog 22 KB

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