ChangeLog 31 KB

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