ChangeLog 36 KB

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