| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- 2007-10-17 Atsushi Enomoto <[email protected]>
- * WebServicesSection.cs : r87621 has changed WebConfigurationManager
- to not read web.config, which caused couple of configuration
- regressions. So enable ConfigurationManager again.
- 2007-10-04 Atsushi Enomoto <[email protected]>
- * WebServicesSection.cs : reverted r83640 which likely caused
- couple of NUnit regressions on the buildbot. WebConfigurationManager
- is indeed needed since webServices section is on web.config.
- ChangeLog was also missing which resulted in some wasted hours :(
- http://lists.ximian.com/pipermail/mono-patches/2007-August/098511.html
- 2007-01-29 Atsushi Enomoto <[email protected]>
- * SoapExtensionTypeElement.cs : use null for default Type value.
- 2007-01-25 Atsushi Enomoto <[email protected]>
- * TypeTypeConverter.cs :
- New internal stuff, TypeConverter for a type name.
- * SoapExtensionTypeElement.cs :
- For Type property, use above. Part of #80619 fix.
- 2006-12-14 Atsushi Enomoto <[email protected]>
- * SoapExtensionTypeElement.cs : another config property fix.
- 2006-12-01 Atsushi Enomoto <[email protected]>
- * WebServicesSection.cs : internal Instance -> public Current.
- * SoapExtensionTypeElement.cs, SoapEnvelopeProcessingElement.cs,
- ProtocolElement.cs : fixed some property default values.
- 2006-01-09 Chris Toshok <[email protected]>
- * SoapEnvelopeProcessingElement.cs: fix dumper output.
- * SoapExtensionTypeElement.cs: same.
- * ProtocolElement.cs: same.
- * WsiProfilesElement.cs: same.
- * WebServicesSection.cs: same.
- 2006-01-06 Raja R Harinath <[email protected]>
- * TypeElement.cs (TypeElement) [string variant]: Use Type.GetType.
- * SoapExtensionTypeElement.cs (SoapExtensionTypeElement) [string variant]:
- Likewise.
- 2006-01-05 Chris Toshok <[email protected]>
- * ProtocolElementCollection.cs,
- SoapExtensionTypeElementCollection.cs,
- WsiProfilesElementCollection.cs, TypeElementCollection.cs: Flesh
- out these classes. Untested at the moment, but no more
- NotImplementedExceptions.
-
- * WebServicesSection.cs (Diagnostics): add TODO.
- * WsdlHelpGeneratorElement.cs: add TODO on DeserializeElement and
- Reset.
- * TypeElement.cs (.ctor): fill in the Type overload, and add a
- comment and TODO for the string overload.
- * DiagnosticsElement.cs: some cleanup.
- * SoapExtensionTypeElement.cs (GetKey): new internal method, used
- by SoapExtensionTypeElementCollection.
- 2006-01-04 Chris Toshok <[email protected]>
- * WebServicesSection.cs (EnabledProtocols): implement.
- 2006-01-04 Chris Toshok <[email protected]>
- * WebServiceProtocols.cs: use 1 << n instead of explicit numbers.
- * WebServicesSection.cs (Instance): new property to make it easier
- to port over the existing configuration code.
- (IsSupported): new method, same rationale.
- 2006-01-03 Chris Toshok <[email protected]>
- * DiagnosticsElement.cs: new implementation.
-
- * PriorityGroup.cs: new implementation.
-
- * ProtocolElementCollection.cs: new implementation.
-
- * ProtocolElement.cs: new implementation.
-
- * SoapEnvelopeProcessingElement.cs: new implementation.
-
- * SoapExtensionTypeElementCollection.cs: new implementation.
-
- * SoapExtensionTypeElement.cs: new implementation.
-
- * TypeElementCollection.cs: new implementation.
-
- * TypeElement.cs: new implementation.
-
- * WebServiceProtocols.cs: new implementation.
-
- * WebServicesSection.cs: new implementation.
-
- * WsdlHelpGeneratorElement.cs: new implementation.
-
- * WsiProfilesElementCollection.cs: new implementation.
-
- * WsiProfilesElement.cs: new implementation.
-
- 2005-08-15 Gert Driesen <[email protected]>
- * XmlFormatExtensionPointAttribute.cs: AllowElements is true by
- default.
- 2005-06-06 Kornél Pál <[email protected]>
- * WebServicesConfigurationSectionHandler.cs: Added support for HttpPostLocalhost and HttpSoap12
- 2005-06-05 Konstantin Triger <[email protected]>
- * WebServicesConfigurationSectionHandler.cs: moving static fields to AppDomain in Java builds
- 2004-06-01 Gert Driesen <[email protected]>
- * WebServicesConfigurationSectionHandler.cs: removed unused variables
- 2004-02-05 Alon Gazit <[email protected]>
- * XmlFormatExtensionAttribute.cs:
- * XmlFormatExtensionPointAttribute.cs:
- * XmlFormatExtensionPrefixAttribute.cs: This attribute is inherited by
- derived classes.changed the AttributeUsage attribute.
- 2004-01-24 Lluis Sanchez Gual <[email protected]>
-
- * XmlFormatExtensionPrefixAttribute.cs: Allow multiple usage.
-
- 2003-12-12 Lluis Sanchez Gual <[email protected]>
-
- * WebServicesConfigurationSectionHandler.cs: Removed TODO.
- 2003-10-03 Gonzalo Paniagua Javier <[email protected]>
- * WebServicesConfigurationSectionHandler.cs: keep the file name of the
- configuration file around for wsdlHelpGenerator.
- 2003-09-25 Lluis Sanchez Gual <[email protected]>
-
- * WebServicesConfigurationSectionHandler.cs: added support for
- soapExtensionReflectorTypes, soapExtensionImporterTypes and
- serviceDescriptionFormatExtensionTypes.
- 2003-08-28 Lluis Sanchez Gual <[email protected]>
- * XmlFormatExtensionPointAttribute.cs: Fixed constructor. Member name
- was not set.
- 2003-07-08 Gonzalo Paniagua Javier <[email protected]>
- * WebServicesConfigurationSectionHandler.cs: added <soapExtensionTypes>
- support.
- 2003-07-03 Gonzalo Paniagua Javier <[email protected]>
- * WebServicesConfigurationSectionHandler.cs: support remove/clear for
- <protocols>. Fixed IsSupported.
- 2003-07-03 Gonzalo Paniagua Javier <[email protected]>
- * WebServicesConfigurationSectionHandler.cs: singleton.
- 2003-07-02 Gonzalo Paniagua Javier <[email protected]>
- * WebServicesConfigurationSectionHandler.cs: New file that handles
- system.web/webServices section.
- 2002-07-21 Tim Coleman <[email protected]>
- * ChangeLog:
- * XmlFormatExtensionAttribute.cs:
- * XmlFormatExtensionPointAttribute.cs:
- * XmlFormatExtensionPrefixAttribute.cs:
- New files added
|