Silverlight Active Directory身份验证

时间:2010-10-14 12:41:24

标签: silverlight authentication active-directory

我如何获得当前用户。以及我如何通过用户通过Active Directory验证用户并通过。

2 个答案:

答案 0 :(得分:0)

您应该使用ASP.NET身份验证来实现此目的。为了实现这一点,我强烈建议您使用RIA服务,其中包含在Silverlight应用程序中启用ASP.NET身份验证所需的所有管道。

启用ASP.NET身份验证后,您将能够编辑配置文件以使用AD身份提供程序,就像在任何其他ASP.NET Web应用程序中一样。

有关MSDN

上的ActiveDirectoryMembershipProvider的更多信息

答案 1 :(得分:0)

[OperationContract]
    public string GetCurrentUserWindowsLogin()
    {
        return Environment.UserName;
    }

    [OperationContract()]
    public User DoLogIn(string login, string password)
    {

        string userName = String.Format(@"ELEGION\{0}", login);
        string SERVER = "LDAP://Caesar.elegion.local";

        User user = null;

        try
        {
            DirectoryEntry entry = new DirectoryEntry(SERVER, userName, password, AuthenticationTypes.ReadonlyServer);
            object nativeObject = entry.NativeObject;

            if (nativeObject != null)
            {
                HeRMeSSunRiseDBEntities ent = EntitySingleton.Entities;
                user = ent.Users.Where(l => l.Login == login && l.IsDisabled == false).FirstOrDefault();
                if (user != null)
                {
                    user.ADObject = entry.Guid.ToString();
                    ent.SaveChanges();
                    return user;
                }
            }
        }
        catch (DirectoryServicesCOMException cex)
        {
            Debug.Write(cex.Message);
        }
        catch (Exception ex)
        {
            Debug.Write(ex.Message);
        }



        return user;}