What is the order of the endpoint behavior in WCF? I want logging to happen only if the request passes the validation block. But in my case, even if the check fails, requests are logged by the checking interceptor.
I have two behavior extensions:
<behaviorExtensions> <add name="validation"/> <add name="Auditing"/> </behaviorExtensions>
and then in my behavior:
<behaviors> <endpointBehaviors> <validation ruleset"AuthenticationRuleSet"/> <Auditing /> </endpointBehaviors> </behaviors>
source share