ChangeLog 35 KB

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