Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This topic is specific to a legacy technology. XML Web services and XML Web service clients should now be created using Windows Communication Foundation.
Removes a specified SOAP extension reflector class from within the scope of the configuration file.
Schema Hierarchy
<configuration>
<system.web>
<webServices> Element
<soapExtensionReflectorTypes> Element
<remove> Element for <soapExtensionReflectorTypes>
Syntax
<remove type="SOAP extension reflector type"/>
Attributes and Elements
The following sections describe attributes, child elements, and parent elements.
Attributes
Attribute | Description |
---|---|
type |
Required attribute. The name of the SOAP extension reflector class to remove. |
Child Elements
None.
Parent Elements
Element | Description |
---|---|
configuration |
The root element in every configuration file used by the common language runtime and .NET Framework applications. |
soapExtensionReflectorTypes |
Specifies, for Web services only, SOAP extension reflector classes, which extend the service description (WSDL document) generation process. |
system.web |
Specifies the root element for the ASP.NET configuration section. |
webServices |
Controls the settings of Web services deployed using ASP.NET and of Web service clients running on the .NET Framework. |
Example
The following example removes a SOAP extension reflector class.
<system.web>
<webServices>
<soapExtensionReflectorTypes>
<remove type="typeName"/>
</soapExtensionReflectorTypes>
</webServices>
</system.web>
See Also
Tasks
Walkthrough: Customizing the Generation of Service Descriptions and Proxy Classes
Reference
<webServices> Element
<soapExtensionReflectorTypes> Element
SoapExtensionReflector
Other Resources
ASP.NET Settings Schema
XML Web Services Created Using ASP.NET and XML Web Service Clients