| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849 |
- 2006-07-24 Atsushi Enomoto <[email protected]>
- * ProtocolImporter.cs, ServiceDescriptionImporter.cs :
- some 2.0 API fixes from betas to RTM.
- 2006-06-08 Chris Toshok <[email protected]>
- * ExtensionManager.cs: remove the CONFIGURATION_2_0 from ifdefs.
- NET_2_0 implies this now.
- 2006-05-03 Ankit Jain <[email protected]>
- * wsdl.genxs: Call ReadExtension for all unknown elements.
- * ServiceDescription.cs (ServiceDescription.ReadExtension): Add
- XmlDocument param. For NET_2_0, add any elements with no corresponding
- extensions to the DocumentableItem.Extensions property.
- (ServiceDescriptionSerializer.Serialize): Use
- WriteRoot_ServiceDescription instead of WriteTree.
- (ServiceDescriptionSerializer.Deserialize): Use
- ReadRoot_ServiceDescription instead of ReadTree.
- * ServiceDescriptionSerializerBase.cs: Regenerate.
- 2006-04-27 Ankit Jain <[email protected]>
- * OperationMessage.cs (Extensions): Remove, incorrectly added in earlier
- commit.
- * OperationInput.cs (Extensions):
- * OperationOutput.cs (Extensions):
- * OperationFault.cs (Extensions): Override and implement missing property.
- 2006-04-27 Ankit Jain <[email protected]>
- * ServiceDescriptionSerializerBase.cs (ServiceDescriptionWriterBase):
- Make it internal.
- 2006-04-27 Ankit Jain <[email protected]>
- * DocumentableItem.cs (ExtensibleAttributes):
- (Extensions): Add missing NET_2_0 properties.
- * Port.cs:
- * OperationBinding.cs:
- * MessagePart.cs
- * Binding.cs:
- * Types.cs:
- * Service.cs:
- * OperationMessage.cs:
- * Message.cs:
- * Import.cs:
- * Operation.cs:
- * PortType.cs: Override and implement Extensions property. Add
- XmlFormatExtensionPoint attribute.
- * MessageBinding.cs: Abstract Extensions property is not present in
- NET_2_0.
- * wsdl.genxs: Update to process unknown attributes as ExtensibleAttributes in NET_2_0.
- * ServiceDescriptionSerializerBase.cs: Regenerated from wsdl.genxs
- * ServiceDescription.cs (ServiceDescription.AddUnknownAttribute): New. Add attribute to
- attributes collection.
- (ServiceDescription.SetExtensibleAttributes): Set DocumentableItem.ExtensibleAttributes
- property.
- * ServiceDescriptionFormatExtensionCollection.cs
- (ServiceDescriptionFormatExtensionCollection.SetParent): Set only if
- value is a ServiceDescriptionFormatExtension type object.
- 2006-03-12 VLadimir Krasnov <[email protected]>
- * ServiceDescription.cs: removed TARGET_JVM directives from
- serializer member
- 2006-01-04 Chris Toshok <[email protected]>
- * ExtensionManager.cs: add CONFIGURATION_2_0 stuff.
- * ServiceDescriptionReflector.cs: add CONFIGURATION_2_0 stuff.
- 2005-12-07 Lluis Sanchez Gual <[email protected]>
- * ProtocolImporter.cs: nullify message fields before processing a
- new method.
- * SoapProtocolImporter.cs: Only use the wrapped format if both the
- input and output messages specify that format. If one of them is not,
- then use bare format. This partially fixes bug #75019.
- 2005-10-05 Atsushi Enomoto <[email protected]>
- * wsdl.genxs, ServiceDescriptionSerializerBase.cs : dependent fix on
- XmlSchema.Read(). Fixed bug #76311.
- * ServiceDescription.cs : name is null by default otherwise it fails
- to be written.
- 2005-09-01 Ilya Kharmatsky <ilyak at mainsoft.com >
- * In WebReference.cs excluded by TARGET_J2EE directives
- constructors / methods which use CodeDom API (unsupported in
- J2EE configuration.
-
- 2005-08-15 Gert Driesen <[email protected]>
- * DocumentableItem.cs: DocumentationElement is also available in .NET
- 1.1.
- * MimeMultipartRelatedBinding.cs: Changed XmlElement name of Parts
- property to match MS.NET.
- * OperationMessageCollection.cs: Removed GetKey override to match
- MS.NET.
- * ServiceDescriptionImportWarnings.cs: SchemaValidation and
- WsiConformance should only be exposed in 2.0 profile.
- * ServiceDescriptionFormatExtension.cs: Parent should not be ignored
- on 2.0 profile.
- 2005-06-14 Lluis Sanchez Gual <[email protected]>
- * SoapProtocolReflector.cs: Set the part name when using bare encoded format.
- * ServiceDescriptionFormatExtensionCollection.cs: Use IsInstanceOfType instead
- of Type.IsAssignableFrom when possible.
- 2005-06-06 Kornél Pál <[email protected]>
- * ServiceDescriptionReflector.cs: Added support for HttpPostLocalhost and HttpSoap12
- 2005-06-05 Konstantin Triger <[email protected]>
- * ServiceDescriptionSerializerBase.cs: Perform correct name encoding
- * ServiceDescription.cs, SoapTransportImporter.cs: moving static fields to AppDomain in Java builds
- 2005-04-11 Lluis Sanchez Gual <[email protected]>
- * ServiceDescriptionCollection.cs: Notify the parent importer
- when a service description is added.
- * ServiceDescriptionImporter.cs: Register wsdl docs added to the
- collection.
- 2005-02-07 Lluis Sanchez Gual <[email protected]>
- * HttpSimpleProtocolImporter.cs: Fixed warning.
- 2004-11-08 Lluis Sanchez Gual <[email protected]>
- * HttpPostProtocolReflector.cs: Avoid generating an empty part attribute.
- This was causing problems when importing the wsdl from MS Visual Studio.
- 2004-10-26 Lluis Sanchez Gual <[email protected]>
- * ProtocolImporter.cs, HttpSimpleProtocolImporter.cs,
- SoapProtocolImporter.cs: When appsettingurlkey is provided, generate
- code that reads the url from the config file, instead of doing it at
- the moment of generation. This fixes bug #68795.
- 2004-10-01 Lluis Sanchez Gual <[email protected]>
- * HttpSimpleProtocolImporter.cs: Fix import of arrays of primitive types.
- 2004-09-13 Lluis Sanchez Gual <[email protected]>
- * ServiceDescriptionReflector.cs: Don't generate empty schemas.
- 2004-09-03 Lluis Sanchez Gual <[email protected]>
- * ProtocolImporter.cs: Fixing the fix. The generated class must always
- be added.
- 2004-09-01 Lluis Sanchez Gual <[email protected]>
- * BasicProfileChecker.cs: Some small fixes.
- * FaultBinding.cs: Removed useless code.
- * HttpSimpleProtocolImporter.cs, SoapProtocolImporter.cs: Take into account
- that now we may be generating code for a binding which is not referenced
- by any port. In this case Port is null.
- * MessageBinding.cs: Properly set the parent operation binding.
- * OperationBinding.cs: When adding messages, set its parent property.
- * ProtocolImporter.cs: Support generation of proxies for wsdl documents
- that do not have any Service entry. In this case, it now generates
- a proxy for every binding.
- 2004-08-24 Lluis Sanchez Gual <[email protected]>
- * BasicProfileChecker.cs: Implemented more rules.
- * ConformanceChecker.cs: Added service list property in
- ConformanceCheckContext.
- * MessagePart.cs: Added some convenient internal properties.
- * OperationMessageCollection.cs: Added property for getting the fault
- message.
- * ServiceDescriptionFormatExtensionCollection.cs: The find method now
- can return subclasses of the provided class.
- * WebServicesInteroperability.cs: Set the context schema when processing
- a schema.
- 2004-07-28 Lluis Sanchez Gual <[email protected]>
- * BasicProfileChecker.cs, ConformanceChecker.cs,
- WebServicesInteroperability.cs: Fixed build errors. I commited before
- it was ready :-(.
-
- 2004-07-28 Lluis Sanchez Gual <[email protected]>
- * BasicProfileChecker.cs: Added checks for R2101, R2102, R2105, R2110, R2111
- * ConformanceChecker.cs: Added check methods for schema objects.
- * WebServicesInteroperability.cs: Added checks for schema objects.
- 2004-07-26 Lluis Sanchez Gual <[email protected]>
- * HttpSimpleProtocolImporter.cs: Implemented internal method to support
- the new asyc model.
- * ProtocolImporter.cs: Generate code for the new async model.
- Added support for generating server skeletons in addition to client
- proxies.
- * ServiceDescriptionImporter.cs: Removed unneded check.
- * SoapProtocolImporter.cs: Added support for generating server skeletons in
- addition to client proxies.
- 2004-07-23 Lluis Sanchez Gual <[email protected]>
- * ServiceDescriptionImporter.cs: Fixed bug when getting documents from a
- reference.
- * SoapProtocolImporter.cs: Create code exportes using the corrent generation
- options. Added final attribute to the generated methods (so generated
- methods are not virtual any more).
- * WebServicesInteroperability.cs: Fixed bug when getting documents from a
- reference. Added check for Import elements.
-
- 2004-07-22 Lluis Sanchez Gual <[email protected]>
- * ProtocolImporter.cs: Added some internal properties needed for 2.0
- features.
- * ServiceDescriptionImporter.cs: Implemented some 2.0 methods.
- * SoapProtocolImporter.cs: Create xml importers using the correct
- ImportContext and generation options.
- * WebReference.cs: It is now internal for 1.1 profile. Implemented some
- properties.
- * CodeGenerationOptions.cs: Made internal in 1.1 profile.
- * ImportContext.cs: Implemented.
- * XmlSchemaImporter.cs: Implemented some 2.0 constructors.
- 2004-07-14 Lluis Sanchez Gual <[email protected]>
- * ConformanceChecker.cs, BasicProfileChecker.cs: New files that implement
- the basic infrastructure for basic profile conformance checking.
- * BasicProfileViolation.cs: Take normative information from the rule object.
- * BasicProfileViolationCollection.cs: Added Add method.
- * ServiceDescriptionFormatExtension.cs: Little fix.
- * WebServicesInteroperability.cs: Implemented basic support for conformance
- checking.
- 2004-07-13 Lluis Sanchez Gual <[email protected]>
- * Binding.cs, Message.cs, MessageBinding.cs, MessagePart.cs, Operation.cs,
- OperationBinding.cs, OperationMessage.cs, Port.cs, PortType.cs,
- Service.cs, ServiceDescription.cs,
- Name property moved to NamedItem in 2.0.
- * DocumentableItem.cs, ServiceDescriptionFormatExtension.cs,
- ServiceDescriptionImportWarnings.cs, ServiceDescriptionImporter.cs,
- SoapFaultBinding.cs: Added 2.0 api.
- * BasicProfileViolation.cs, BasicProfileViolationCollection.cs,
- NamedItem.cs, Soap12AddressBinding.cs, Soap12Binding.cs,
- Soap12BodyBinding.cs, Soap12FaultBinding.cs, Soap12HeaderBinding.cs,
- Soap12OperationBinding.cs, WebReference.cs, WebReferenceCollection.cs,
- WebServicesInteroperability.cs: Mostly implemented new 2.0 classes.
- 2004-07-01 Lluis Sanchez Gual <[email protected]>
- * SoapProtocolReflector.cs: Don't generate wsdl for unknown header
- attributes.
- 2004-06-25 Lluis Sanchez Gual <[email protected]>
- * HttpSimpleProtocolImporter.cs: Added null check. The XmlTypeMapping for
- the return type will be null if the method returns void.
- 2004-06-22 Lluis Sanchez Gual <[email protected]>
- * HttpSimpleProtocolImporter.cs: Import return types as XmlTypeMapping,
- not as XmlMemberMapping. This allows the use of the correct AddMetadata
- method for generating attributes.
- 2004-06-11 Gert Driesen <[email protected]>
- * SoapProtocolImporter.cs: Added stub for missing IsSoapEncodingPresent
- method
- * MimeContentBinding.cs: removed extra Default attribute from Part
- 2004-06-10 Lluis Sanchez Gual <[email protected]>
- * HttpSimpleProtocolImporter.cs: Add needed XmlInclude attributes to the
- generated class. Generate the correct data type for input parameters.
- * SoapProtocolImporter.cs: Like in MS.NET, take the first output parameter
- as the return value of the method. When generating a header variable,
- use the type name as the base for the variable name, not the part name.
- 2004-06-02 Lluis Sanchez Gual <[email protected]>
- * HttpSimpleProtocolImporter.cs: Fixed case of generated methods to match
- MS behavior. Always use import input parameters as System.String.
- * ProtocolImporter.cs: Remove _x0020_ from type names.
- * SoapProtocolImporter.cs: Fixed case of generated methods to match
- MS behavior.
-
- 2004-06-01 Gert Driesen <[email protected]>
- * Binding.cs: removed extra XmlIgnore attribute on ServiceDescription
- * Import.cs: removed extra XmlIgnore attribute on ServiceDescription
- * Message.cs: removed extra XmlIgnore attribute on ServiceDescription
- * MessageBinding.cs: removed extra DefaultValue attribute from Name,
- removed extra XmlIgnoreAttribute from OperationBinding
- * MessagePart.cs: removed extra XmlIgnore attribute on Message
- * MimeContentBinding.cs: removed extra DefaultValue attribute on Part
- * Operation.cs: removed extra XmlIgnore attribute on PortType
- * OperationBinding.cs: removed extra XmlIgnore attribute on Binding
- * OperationMessage.cs: removed extra XmlIgnore attribute on Operation
- * Port.cs: removed extra XmlIgnore attribute on Service
- * PortType.cs: removed extra XmlIgnore on ServiceDescription
- * Service.cs: removed extra XmlIgnore on ServiceDescription
- * ServiceDescriptionFormatExtension.cs: removed extra XmlIgnore
- attribute on Parent
- * SoapHeaderBinding.cs: added XmlElement attribute on Fault
- * HttpSimpleProtocolImporter.cs: removed unused variable
- * ServiceDescriptionImporter.cs: removed unused variable
- * SoapProtocolImporter.cs: removed unused variable
- 2004-05-25 Lluis Sanchez Gual <[email protected]>
- * BindingCollection.cs: Fixed this[string] property.
- 2004-05-24 Lluis Sanchez Gual <[email protected]>
- * ProtocolImporter.cs: issue a warning if no services have been found.
- 2004-03-02 Lluis Sanchez Gual <[email protected]>
- * SoapBinding.cs: Added missing attributes. The class is not sealed.
- * SoapBodyBinding.cs: Removed unneeded attributes.
- 2004-03-02 Lluis Sanchez Gual <[email protected]>
- * ProtocolImporter.cs: Little fix in schema classification.
-
- 2004-02-27 Lluis Sanchez Gual <[email protected]>
- * ExtensionManager.cs: Create all serializers for soap extensions at once.
- * HttpSimpleProtocolImporter.cs: Assign the correct set of schemas to the
- schema importers (do not mix literal schemas with encoded schemas).
- * ProtocolImporter.cs: Added LiteralSchemas and EncodedSchemas properties.
- Separation between literal and encoded schemas is needed to avoid importing
- for example a literal schema as encoded. Also implemented ClasifySchemas,
- which separates literal from encoded schemas. I really don't like doing it
- in this way, but I haven't found another way.
- * SoapProtocolImporter.cs: Add type include attributes to the generated
- proxy classes.
-
- 2004-02-11 Lluis Sanchez Gual <[email protected]>
- * SoapProtocolReflector.cs: Fixed bug #53247. Element name asigned to the
- message part (in literal+bare format) was incorrect.
- 2004-01-27 Lluis Sanchez Gual <[email protected]>
- * SoapProtocolImporter.cs, SoapProtocolReflector.cs: Support methods with
- "any" as return type. In this case, the part of the return message contains
- a reference to the type that describes the "any" element.
- 2004-01-24 Lluis Sanchez Gual <[email protected]>
- * ExtensionManager.cs: Support more than one XmlFormatExtensionPrefixAttribute
- un one soap extension.
- * HttpSimpleProtocolImporter.cs: Made class internal.
- * HttpSimpleProtocolReflector.cs.cs: ReflectMethodBinding(): GET and POST
- do not use method bindings. Return null.
- * ProtocolReflector.cs: Several fixes: do not generate binding if it doesn't
- have any operation, avoid port and binding name colisions, and other minor
- fixes.
- * ServiceDescription.cs: Collect the namespaces to be added to the root
- element of a serializaed wsdl document from the soap extensions.
- * ServiceDescriptionSerializerBase.cs: Made classes internal.
- * SoapAddressBinding.cs, SoapFaultBinding.cs, SoapOperationBinding.cs,
- SoapProtocolImporter.cs: Class should not be sealed.
- * SoapBodyBinding.cs: Set the correct class attributes.
- * SoapHeaderBinding.cs: Class should not be sealed. Added missing method.
- * SoapHeaderFaultBinding.cs: Fixed class attributes.
- 2004-01-21 Lluis Sanchez Gual <[email protected]>
- * HttpSimpleProtocolImporter.cs: pass the web service class list to the xml
- importers to make sure that no data classes are created with the same
- name as the web service.
- * ProtocolImporter.cs: Use port name as class name only if there is more
- than one port using the same protocol. This fixes big #52742.
- 2004-01-19 Lluis Sanchez Gual <[email protected]>
- * HttpSimpleProtocolReflector.cs, SoapProtocolReflector.cs:
- Use GetWebServiceLiteralNamespace instead of WebServiceLiteralNamespace.
- * ProtocolReflector.cs: Port names must be unique in a service description.
- This fixes bug #53019.
- * ProtocolImporter.cs: Little fix.
- 2004-01-14 Lluis Sanchez Gual <[email protected]>
- * ProtocolImporter.cs, SoapProtocolImporter.cs: Added support for OneWay
- operations (those don't have output message).
- * SoapProtocolReflector.cs: Set the correct element name and
- namespace for headers (those are not managed like other data classes).
- 2004-01-13 Lluis Sanchez Gual <[email protected]>
- * ProtocolReflector.cs: in the case a new ServiceDescription is created,
- the name of the BindingInfo was not copied into the new ServiceDescriptor.
- Patch by Yaacov Akiba Slama.
- 2003-12-12 Lluis Sanchez Gual <[email protected]>
-
- * HttpSimpleProtocolImporter.cs: In ImportOutMembersMapping(), support part
- without element name (use anyType in this case).
- In GetOutMimeFormatter(), support MimeContentBinding.
- * ProtocolImporter.cs, SoapProtocolImporter.cs: Improved error and warning
- handling. Minor fixes.
- 2003-11-11 Lluis Sanchez Gual <[email protected]>
- * ServiceDescription.cs, SoapBinding.cs, SoapHeaderBinding.cs,
- SoapHeaderFaultBinding.cs: Removed some TODOs and FIXMEs.
- 2003-10-20 Lluis Sanchez Gual <[email protected]>
- * ServiceDescription.cs: Fixed implementation of CanRead.
- 2003-10-15 Lluis Sanchez Gual <[email protected]>
- * MessageBinding.cs: Name property should be null by default.
- * ProtocolImporter.cs: Take into account the previous change.
- 2003-10-15 Lluis Sanchez Gual <[email protected]>
- * HttpSimpleProtocolReflector.cs, ProtocolReflector.cs:
- Fixed naming of messages.
- * ProtocolImporter.cs: It now iterates through all bindings. It creates
- a namespace for all bindings.
- * ServiceDescriptionImporter.cs: Some code moved to ProtocolImporter.
- * SoapProtocolImporter.cs: Improved support for RPC format. It now is working.
- 2003-10-13 Lluis Sanchez Gual <[email protected]>
- * HttpSimpleProtocolReflector.cs, SoapProtocolReflector.cs:
- Get the namespace for literal types from LogicalTypeInfo, since it may not
- be the same as the service namespace.
- * ProtocolReflector.cs: Access LogicalTypeInfo to get WS info common to
- all protocols.
- * ServiceDescription.cs: Added soap/encoded namespace.
- * SoapProtocolImporter.cs: Added some bits of RPC format support.
-
- 2003-10-06 Lluis Sanchez Gual <[email protected]>
- * ProtocolImporter.cs: Moved some code to ServiceDescriptionImporter.
- WebServiceBindingAttribute addition moved to SoapProtocolImporter.
- Moved GetServiceUrl here (from SoapProtocolImporter).
- * ServiceDescriptionImporter.cs: Added support for HttpGet and HttpPost
- importers.
- * SoapProtocolImporter.cs: Minor fixes.
- * HttpSimpleProtocolImporter.cs, HttpGetProtocolImporter.cs,
- HttpPostProtocolImporter.cs: new files that implement HttpGet and HttpPost
- importers.
- 2003-10-04 Lluis Sanchez Gual <[email protected]>
- * ProtocolReflector.cs: The ReflectionImporter property now creates a
- reflector if the TypeStubInfo does not provide one.
- Do not create XmlSchemaExporter. Take it from the service reflector, sine
- it must be reused for all protocol reflectors. Moved some code to
- SoapProtocolReflector, since it cannot be reused for all reflectors.
- * ServiceDescriptionReflector.cs: Reflect the type for all available
- protocols.
- * SoapProtocolReflector.cs: Moved here some code from ProtoclReflector.
- * HttpGetProtocolReflector.cs, HttpPostProtocolReflector.cs,
- HttpSimpleProtocolReflector.cs: new files.
-
- 2003-10-01 Lluis Sanchez Gual <[email protected]>
- * ProtocolReflector.cs: Adapted to the changes in TypeStubInfo. Moved some
- common code to ServiceDescriptionReflector.
- * ServiceDescriptionReflector.cs: Moved some code from ProtocolReflector.cs
- 2003-09-28 Lluis Sanchez Gual <[email protected]>
-
- * ExtensionManager.cs: Read extension types from the configuration file.
- Added methods for getting extension importers and reflectors.
- * ProtocolImporter.cs: Implemented.
- * ProtocolReflector.cs: Implemented.
- * ServiceDescriptionCollection.cs: Fixed some methods for finding wsdl
- elements.
- * ServiceDescriptionImporter.cs: moved most of the code to ProtocolImporter.
- * ServiceDescriptionReflector.cs: moved most of the code to
- ProtocolReflector and SoapProtocolReflector.
- * SoapProtocolImporter.cs: Implemented.
- * SoapProtocolReflector.cs: Implemented.
- * SoapTransportImporter.cs: Implemented.
- * SoapHttpTransportImporter.cs: Implemented.
- * wsdl.genxs: Added.
- 2003-09-14 Lluis Sanchez Gual <[email protected]>
- * DocumentableItem.cs MimeContentBinding.cs OperationMessage.cs
- OperationMessageCollection.cs PortCollection.cs PortType.cs
- PortTypeCollection.cs ServiceCollection.cs ServiceDescriptionCollection.cs
- SoapBodyBinding.cs SoapOperationBinding.cs: Several fixes by Erik LeBel
- * ServiceDescriptionImporter.cs:
- * ServiceDescriptionSerializerBase.cs: regenerated after the changes in
- the service description changes.
- * ServiceDescriptionReflector.cs: Fixed generation of message parts in
- bare format.
- 2003-09-11 Lluis Sanchez Gual <[email protected]>
- * ServiceDescriptionImporter.cs, ServiceDescriptionReflector.cs: Added
- first bits of encoded format support.
- 2003-09-04 Lluis Sanchez Gual <[email protected]>
- * ServiceDescription.cs: minor fixes.
- * ServiceDescriptionImporter.cs: initial implementation.
- * ServiceDescriptionReflector.cs: Added support for bare parameter style.
- Added support for encoded format.
- 2003-09-01 Lluis Sanchez Gual <[email protected]>
- * ExtensionManager.cs: Added
- * ServiceDescriptionSerializerBase.cs. Added
- * ServiceDescription.cs: Reenabled suspport for serialization.
- * ServiceDescriptionReflector.cs: Import type and method documentation.
- 2003-08-29 Lluis Sanchez Gual <[email protected]>
- * ServiceDescription.cs: Disabled suspport for serialization, until I found
- an easy way of generate serialization readers and writers.
- 2003-08-28 Lluis Sanchez Gual <[email protected]>
- * MessageBinding.cs: Added default value attribute for Name property.
- * OperationMessage.cs: Added default value attribute for Name property.
- * ServiceDescription.cs: Changed order of some properties, so they are
- serialized in the right order.
- Added GetNamespaceList(), which returns the namespaces to add when serializing
- the document.
- Implemented classes ServiceDescriptionSerializer and ServiceDescriptionWriter,
- that extends the XmlSerializer by adding suport for XmlFormatExtensions.
- * ServiceDescriptionReflector.cs: Basic implementation (no support for
- extensions yet).
- * SoapBinding.cs: Fixed namespace name.
- * SoapBodyBinding.cs: Added null check in PartsString property.
- * SoapOperationBinding.cs: Fixed namespace name.
-
- 2003-07-22 Lluis Sanchez Gual <[email protected]>
- * Binding.cs, Import.cs, Message.cs, MessageBinding.cs, MessagePart.cs,
- Operation.cs, OperationBinding.cs, OperationMessage.cs, Port.cs,
- PortType.cs, Service.cs: Added XmlIgnore attributes to properties
- referencing parent objects.
- * OperationMessageCollection.cs: Fixed wrong OnInsert method
- * ServiceDescription.cs: Removed unneeded methods in
- ServiceDescriptionSerializer.
- 2002-08-20 Tim Coleman <[email protected]>
- * ServiceDescription.cs:
- Add ServiceDescription.ServiceDescriptionSerializer
- class.
- * ServiceDescriptionFormatExtensionCollection.cs:
- Remove reference to "parent".
- 2002-08-19 Tim Coleman <[email protected]>
- * BindingCollection.cs:
- Use base constructor, remove SetParent call
- * FaultBindingCollection.cs:
- * ImportCollection.cs:
- * MessageCollection.cs:
- * MessagePartCollection.cs:
- * OperationBindingCollection.cs:
- * OperationCollection.cs:
- * OperationFaultCollection.cs:
- * PortCollection.cs:
- * PortTypeCollection.cs:
- * ServiceCollection.cs:
- * ServiceDescriptionFormatExtensionCollection.cs:
- Use base constructor
- * ServiceDescriptionCollection.cs:
- Use base constructor, Remove SetParent method
- * ServiceDescriptionBaseCollection.cs:
- Make parent object private as according to
- class status page.
- * OperationMessageCollection.cs:
- Use base constructor
- Remove excess break's to avoid compiler warning
- Remove TODO attribute (confirmed default retval)
- 2002-08-15 Tim Coleman <[email protected]>
- * FaultBindingCollection.cs:
- * ImportCollection.cs:
- * MessageCollection.cs:
- * MessagePartCollection.cs:
- * OperationBindingCollection.cs:
- * OperationCollection.cs:
- * OperationFaultCollection.cs:
- * OperationMessageCollection.cs:
- * PortCollection.cs:
- * PortTypeCollection.cs:
- * ServiceCollection.cs:
- * ServiceDescriptionFormatExtensionCollection.cs:
- Use parent from ServiceDescriptionBaseCollection
- * ServiceDescriptionCollection.cs:
- Use parent from ServiceDescriptionBaseCollection
- Implement SetParent () method
- * ServiceDescriptionBaseCollection.cs:
- Add "parent" object.
- Add SetParent call to OnSet() and OnInsert ()
- 2002-08-12 Tim Coleman <[email protected]>
- * Operation.cs:
- Fix ParameterOrderString in case ParameterOrder is
- null.
- * BindingCollection.cs:
- Remove Table handling on insert/delete/indexer
- because it is handled in base class.
- * ServiceDescriptionBaseCollection.cs:
- Only add an element to the hashtable if its GetKey ()
- method does not return null.
- 2002-08-09 Tim Coleman <[email protected]>
- * BindingCollection.cs:
- * ServiceDescriptionCollection.cs:
- Implement Set indexer
- * FaultBindingCollection.cs:
- * MessageCollection.cs:
- * MessagePartCollection.cs:
- * OperationFaultCollection.cs:
- * PortCollection.cs:
- * PortTypeCollection.cs:
- * ServiceCollection.cs:
- Implement Set indexer, code cleanup
- * Message.cs:
- Implement FindPartByName ()
- * OperationMessageCollection.cs:
- Alter OnSet () method
- * ServiceDescriptionBaseCollection.cs:
- Implement some methods.
- * ServiceDescriptionFormatExtensionCollection.cs:
- Implement Find (), FindAll (), OnValidate () methods
-
- 2002-08-06 Tim Coleman <[email protected]>
- * ServiceDescription.cs:
- Add namespace definitions when serializing.
- * HttpBinding.cs:
- Change namespace definition (wsdl was spelt wsld)
- 2002-08-06 Tim Coleman <[email protected]>
- * ServiceDescription.cs:
- Change the XmlElement name from "type" to "types" for
- the Types object
- 2002-08-06 Tim Coleman <[email protected]>
- * ServerProtocol.cs:
- Add new class as implied by class statuc page.
- SoapServerProtocol is derived from this.
- * SoapServerProtocol.cs:
- Change base class to ServerProtocol.
- * SoapClientMethod.cs:
- This class should not be sealed.
- 2002-08-03 Tim Coleman <[email protected]>
- * SoapProtocolReflector.cs:
- Removed SoapBinding property and made the class
- not sealed to agree with class reference page.
- 2002-08-03 Tim Coleman <[email protected]>
- * ServiceDescriptionBaseCollection.cs:
- Removed some NotImplementedException()'s so that
- it runs.
- 2002-07-26 Tim Coleman <[email protected]>
- * ServiceDescription.cs:
- Changed the creation of the XmlSerializer after
- consulting the System.Xml.Serialization namespace
- and trying to serialize a document. Now works somewhat!
- 2002-07-25 Tim Coleman <[email protected]>
- * OperationMessageCollection.cs:
- Some implementation of this class after consulting a
- WSDL reference. Now validates the inputs.
- 2002-07-24 Tim Coleman <[email protected]>
- * ProtocolImporter.cs:
- * ProtocolReflector.cs:
- Some implementation of these classes. MonoTODO's begone!
- * SoapProtocolImporter.cs:
- Changed description to literal string "Soap"
- * SoapProtocolReflector.cs:
- Added a new class based on guesswork and conjecture.
- 2002-07-24 Tim Coleman <[email protected]>
- * ServiceDescription.cs:
- Implement Read/Write methods for serialization/
- deserialization.
- 2002-07-23 Tim Coleman <[email protected]>
- * ServiceDescription.cs:
- Add XmlIgnore attribute to ServiceDescriptions property
- * OperationFlow.cs:
- * ServiceDescriptionImportWarnings.cs:
- Explicitly set values in enumeration to match
- .NET.
- 2002-07-22 Tim Coleman <[email protected]>
- * Binding.cs:
- * BindingCollection.cs:
- * DocumentableItem.cs:
- * FaultBinding.cs:
- * FaultBindingCollection.cs:
- * HttpAddressBinding.cs:
- * HttpBinding.cs:
- * HttpOperationBinding.cs:
- * HttpUrlEncodedBinding.cs:
- * HttpUrlReplacementBinding.cs:
- * Import.cs:
- * ImportCollection.cs:
- * InputBinding.cs:
- * Message.cs:
- * MessageBinding.cs:
- * MessageCollection.cs:
- * MessagePart.cs:
- * MessagePartCollection.cs:
- * MimeContentBinding.cs:
- * MimeMultipartRelatedBinding.cs:
- * MimePart.cs:
- * MimePartCollection.cs:
- * MimeTextBinding.cs:
- * MimeTextMatch.cs:
- * MimeTextMatchCollection.cs:
- * MimeXmlBinding.cs:
- * Operation.cs:
- * OperationBinding.cs:
- * OperationBindingCollection.cs:
- * OperationCollection.cs:
- * OperationFaultCollection.cs:
- * OperationFlow.cs:
- * OperationMessage.cs:
- * OperationMessageCollection.cs:
- * OutputBinding.cs:
- * Port.cs:
- * PortCollection.cs:
- * PortType.cs:
- * PortTypeCollection.cs:
- * ProtocolImporter.cs:
- * Service.cs:
- * ServiceCollection.cs:
- * ServiceDescription.cs:
- * ServiceDescriptionBaseCollection.cs:
- * ServiceDescriptionCollection.cs:
- * ServiceDescriptionFormatExtension.cs:
- * ServiceDescriptionFormatExtensionCollection.cs:
- * ServiceDescriptionImportWarnings.cs:
- * SoapAddressBinding.cs:
- * SoapBinding.cs:
- * SoapBindingStyle.cs:
- * SoapBindingUse.cs:
- * SoapBodyBinding.cs:
- * SoapExtensionImporter.cs:
- * SoapExtensionReflector.cs:
- * SoapFaultBinding.cs:
- * SoapHeaderBinding.cs:
- * SoapHeaderFaultBinding.cs:
- * SoapOperationBinding.cs:
- * SoapTransportImporter.cs:
- * Types.cs:
- 1. Add missing attributes as determined by reflection
- 2. Fix protection levels where appropriate
- 3. Add missing items where appropriate
- Basically, this was a change to remove all the X's from
- the project status page for this namespace :)
- 2002-07-19 Tim Coleman <[email protected]>
- * Binding.cs:
- * BindingCollection.cs:
- * ChangeLog:
- * DocumentableItem.cs:
- * FaultBinding.cs:
- * FaultBindingCollection.cs:
- * HttpAddressBinding.cs:
- * HttpBinding.cs:
- * HttpOperationBinding.cs:
- * HttpUrlEncodedBinding.cs:
- * HttpUrlReplacementBinding.cs:
- * Import.cs:
- * ImportCollection.cs:
- * InputBinding.cs:
- * Message.cs:
- * MessageBinding.cs:
- * MessageCollection.cs:
- * MessagePart.cs:
- * MessagePartCollection.cs:
- * MimeContentBinding.cs:
- * MimeMultipartRelatedBinding.cs:
- * MimePart.cs:
- * MimePartCollection.cs:
- * MimeTextBinding.cs:
- * MimeTextMatch.cs:
- * MimeTextMatchCollection.cs:
- * MimeXmlBinding.cs:
- * Operation.cs:
- * OperationBinding.cs:
- * OperationBindingCollection.cs:
- * OperationCollection.cs:
- * OperationFault.cs:
- * OperationFaultCollection.cs:
- * OperationFlow.cs:
- * OperationInput.cs:
- * OperationMessage.cs:
- * OperationMessageCollection.cs:
- * OperationOutput.cs:
- * OutputBinding.cs:
- * Port.cs:
- * PortCollection.cs:
- * PortType.cs:
- * PortTypeCollection.cs:
- * ProtocolImporter.cs:
- * ProtocolReflector.cs:
- * Service.cs:
- * ServiceCollection.cs:
- * ServiceDescription.cs:
- * ServiceDescriptionBaseCollection.cs:
- * ServiceDescriptionCollection.cs:
- * ServiceDescriptionFormatExtension.cs:
- * ServiceDescriptionFormatExtensionCollection.cs:
- * ServiceDescriptionImportStyle.cs:
- * ServiceDescriptionImportWarnings.cs:
- * ServiceDescriptionImporter.cs:
- * ServiceDescriptionReflector.cs:
- * SoapAddressBinding.cs:
- * SoapBinding.cs:
- * SoapBindingStyle.cs:
- * SoapBindingUse.cs:
- * SoapBodyBinding.cs:
- * SoapExtensionImporter.cs:
- * SoapExtensionReflector.cs:
- * SoapFaultBinding.cs:
- * SoapHeaderBinding.cs:
- * SoapHeaderFaultBinding.cs:
- * SoapOperationBinding.cs:
- * SoapProtocolImporter.cs:
- * SoapTransportImporter.cs:
- * Types.cs:
- Initial implementation
|