如何使我的自定义用户名密码验证器工作

本文关键字:密码 验证 工作 用户 何使 我的 自定义 | 更新日期: 2023-09-27 18:37:02

我一直在尝试让它工作几个小时,但没有任何运气。我正在尝试创建一个具有验证的 WCF Web 服务。我希望要求服务的使用者执行以下操作:

ServiceReference1.XServiceClient client = new ServiceReference1.XServiceClient();
client.ClientCredentials.UserName.UserName = "username";
client.ClientCredentials.UserName.Password = "password";

在他可以调用任何服务方法之前。我发现我必须创建一个自定义用户名密码验证程序,所以我在解决方案中创建了类库项目以包含自定义验证程序类。我只是想验证它是否有效。

namespace XServices
{
    public class CustomUserNameValidator : UserNamePasswordValidator
    {
        public override void Validate(string username, string password)
        {
            if (!(username == "test" && password == "password"))
            {
                throw new FaultException("Invalid username or password!");
            } 
        }
    }
}

然后,我尝试对 WCF 项目中的 web.config 文件进行必要的更改以支持它。不幸的是,这是我遇到第一个麻烦的地方。

这是我现在的 web.config 文件。

<?xml version="1.0"?>
<configuration>
  <connectionStrings>
    <!-- connection strings ommitted for security reasons -->
  </connectionStrings>
  <system.web>
    <compilation debug="true" targetFramework="4.0" />
    <customErrors mode="Off"/>
  </system.web>
  <system.serviceModel>
    <behaviors>
      <serviceBehaviors>
        <behavior>
          <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
          <serviceMetadata httpGetEnabled="true" />
          <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
          <serviceDebug includeExceptionDetailInFaults="true"/>
        </behavior>
        <behavior name="CustomValidator">
          <serviceCredentials>
            <userNameAuthentication userNamePasswordValidationMode="Custom" customUserNamePasswordValidatorType="CustomUserNameValidator.XServices.CustomUserNameValidator, CustomUserNameValidator"/>
          </serviceCredentials>
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <bindings>
      <wsHttpBinding>
        <binding name="Binding1">
          <security mode="Message">
            <message clientCredentialType="UserName" />
          </security>
        </binding>
      </wsHttpBinding>
    </bindings>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
  </system.serviceModel>
  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
  </system.webServer>
</configuration>

MSDN 文档非常不清楚 customUserNamePasswordValidatorType 是如何工作的。示例 https://msdn.microsoft.com/en-us/library/aa702565(v=vs.110).aspx完全掩盖了它,所以我不知道我是否正确。更糟糕的是,如果您为该参数输入的内容不正确,它不会引发错误。它只是默默地忽略了它。长话短说,没有调用我的自定义验证程序的 Validate 方法。我不知道为什么,经过几个小时的谷歌搜索,我还没有找到任何有效的方法。请帮忙。

如何使我的自定义用户名密码验证器工作

在服务配置中,您忘记将服务行为与您的服务相关联。因此,您的服务对自定义验证程序一无所知。

缺少以下部分:

<services>
    <service behaviorConfiguration="CustomValidator" name="ServiceName...">
    <endpoint name="EndpointName..." bindingConfiguration="Binding1" address="..." binding="wsHttpBinding" contract="..." />
    </service>
</services>