ChangeLog 42 KB

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