<soapExtensionTypes> Element

This topic is specific to a legacy technology. XML Web services and XML Web service clients should now be created using Windows Communication Foundation.

Specifies the SOAP extensions used to inspect or modify the SOAP message during processing on the Web service or client. SOAP extensions augment the functionality of Web services.

Schema Hierarchy

<configuration>
  <system.web>
    <webServices> Element
      <soapExtensionTypes> Element

Syntax

<soapExtensionTypes> 
   <add type="soap extension class" 
        priority="number"
        group="0|1"/>
</soapExtensionTypes>

Attributes and Elements

The following sections describe attributes, child elements, and parent elements.

Attributes

None.

Child Elements

Child Element Description

<add>

Adds a specified SOAP extension class that provides extended processing of SOAP messages on the Web service or client.

<remove>

Removes a specified SOAP extension class from within the scope of the configuration file.

<clear>

Removes all SOAP extensions from within the scope of the configuration file.

Parent Elements

Element Description

configuration

The root element in every configuration file used by the common language runtime and .NET Framework applications.

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.

Remarks

The <soapExtensionTypes> element specifies classes derived from the SoapExtension class.

See Also

Reference

<webServices> Element
SoapExtension

Concepts

SOAP Message Modification Using SOAP Extensions

Other Resources

ASP.NET Settings Schema
XML Web Services Created Using ASP.NET and XML Web Service Clients