ChangeLog 43 KB

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