3

UserNamePasswordValidator私はWCFに使用しています。私のコードは似ています。データベースを使用しています。このメソッドで現在の接続コンテキストに関する情報を取得する方法を知っている人はいますか? 失敗した通話の IP アドレスをログに記録したい

public class MyCustomUserNameValidator : UserNamePasswordValidator
{
    // This method validates users. It allows two users, test1 and test2 
    // with passwords 1tset and 2tset respectively.
    // This code is for illustration purposes only and 
    // MUST NOT be used in a production environment because it is NOT secure.   
    public override void Validate(string userName, string password)
    {
        if (null == userName || null == password)
        {
            throw new ArgumentNullException();
        }

        if (!(userName == "test1" && password == "1tset") && !(userName == "test2" && password == "2tset"))
        {
            throw new SecurityTokenException("Unknown Username or Password");
        }
    }
}
4

1 に答える 1

0

これをチェックして

ASP.NET でサーバーの IP アドレスを取得しますか?

あなたの例外では、IPアドレスを取得できます。

于 2012-06-20T13:34:20.340 に答える