Click here to Skip to main content
15,892,298 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,
I am using ADFS ,Active Directory and asp.net based relying party application.
In my active directory structure there are two OU (customer and CustomerSupport). I am creating a user in customer OU through C# code and using UPN field as user logon name. And Creating same UserId from backend in customerSupport OU.
Now I am using below code in my relying party application for retrieving the user from OU’s.
C#
public static string GetADPath(string userType)
        {
            if (_logger.IsDebugEnabled)
                _logger.Debug("ADHelper:Enter GetADPath");
            // Local variables
            string adPath = string.Empty;
            try
            {
                if (userType.Equals(Constants.UserType.Customer))
                    adPath = Utility.GetConfigSetting(Constants.AppSettings.CustomersOUPath);
                else if (userType.Equals(Constants.UserType.CustomerSupport))
                    adPath = Utility.GetConfigSetting(Constants.AppSettings.CustomersSupportOUPath);
                if (_logger.IsDebugEnabled)
                    _logger.Debug("ADHelper:Exit GetADPath");
                return adPath;
            }
            catch (ApplicationException appex)
            {
                if (_logger.IsErrorEnabled)
                    _logger.Error("ADHelper:Exception occurred in GetADPath. Message: ", appex);
                throw appex;
            }
            catch (Exception ex)
            {
                if (_logger.IsErrorEnabled)
                    _logger.Error("ADHelper:Exception occurred in GetADPath. Message: ", ex);
                throw ex;
            }
        }


Now my problem is if the same user-Id and password is created on both OU’s. Then CustomerSupport OU user never get login in relying party application its throw rights error.Even I have provided all admin rights in the CustomerSupport OU user’s.
But each time my application check Customer OU’s user (normal user) and user can login other application as normal user.
When I changed the password of CustomerSupport OU user’s then it’s throw “ invalid Id password error”.And user never login in the Relying Party application.
Please any one can suggest how can I handle this situation.
Thanks in Advance.
Posted
Updated 24-Mar-12 8:44am
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900