I have a WCF service that I expose using different endpoints, one of which uses NetNamedPipeBinding
. The other endpoints use a custom username/password validator to authenticate users, but as far as I can tell, this is not supported by NetNamedPipeBinding
.
How can I add a custom username/password authentication mechanism to a NetNamedPipeBinding
with minimal impact on other endpoints?