Specifies the custom filters applied to SOAP messages received by WSE.
<input> <add type="CustomFilter,CustomFilterAssembly" /> </input>
None
<add> Element for <input>
Optional element. Adds a custom filter for incoming SOAP messages.
<filters> Element
Controls the custom filters applied to SOAP messages sent and received by WSE applications.
Before adding the <input> element to a configuration file, you must add the microsoft.web.services2 configuration section handler to the configuration file. For details about adding the microsoft.web.services2 configuration section handler, see <section> Element (WSE for Microsoft .NET).
The following code example specifies that the custom filter CustomFilter runs when SOAP messages are received.
CustomFilter
<configuration> <microsoft.web.services2> <filters> <input> <add type="CustomFilter,CustomFilterAssembly" /> </input> </filters> </microsoft.web.services2> </configuration>