<remove> Element (WSE for Microsoft .NET)
Removes a SOAP transport to the system.
<microsoft.web.services2> Element
<messaging> Element
<transports> Element
<transports>
<remove scheme />
</transports>
Attributes and Elements
Attributes
Attribute | Description |
---|---|
scheme |
Required attribute. The transport scheme to remove. Can be one of the WSE supported schemes or a custom transport scheme. |
Child Elements
None
Parent Elements
Element | Description |
---|---|
Controls the SOAP transport settings for the Microsoft Web Services Enhancements. |
Example
The following code example removes the soap.inproc
transport from the system.
<configuration>
<microsoft.web.services2>
<messaging>
<transports>
<remove scheme="soap.inproc" />
</transports>
</messaging>
</microsoft.web.services2>
</configuration>