Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
2k views

PrincipalContext.ValidateCredentials always returns FALSE

I have an MVC application that needs to login and verify a user against active directory. I am using the PrincipalContext.ValidateCredentials method but always get a authentication of false. ...
5
votes
6answers
2k views

ActiveDirectoryMembershipProvider “The specified domain or server could not be contacted.”

I have an application that is using ActiveDirectoryMembershipProvider to grant access to users. The application is hosted on a non-domain machine, with a firewall between the application server and ...
4
votes
1answer
473 views

ActiveDirectoryMembershipProvider “The specified domain or server could not be contacted” AFTER changing to Comcast

My company recently changed from a dedicated T-1 to a broadband business Comcast connection. Immediately after, this problem began. Our development machines are local, but our Active Directory ...
3
votes
4answers
983 views

Query From LDAP for User Groups

How To Get User group of user from LDAP active directory in C# .NET for ASP. In my Scenario I want to Pass user name to method which query from LDAP Active directory and tell me my user is Member of ...
3
votes
2answers
484 views

MVC Active Directory Membership

I am trying to make use of the active directory membership rather than SQL but there is very limited documentation available online. I have managed to connect my application to the domain controller ...
3
votes
1answer
2k views

Error: Only LDAP Connection Strings are Supported against Active Directory

I have the following ASP.NET Membership section defined in the Web.config file: <membership defaultProvider="AspNetActiveDirectoryMembershipProvider"> <providers> <clear/> ...
2
votes
2answers
69 views

Is there a way i can give permissions based on the groups of active directory in my asp.net web application?

I am trying to achieve the following: Authenticate users against Active directory. If the user belongs to group "A" i want to limit user rights If the user belongs to group "B" i want to have some ...
2
votes
1answer
77 views

Extending Active Directory Membership Provider

I have an ASP.NET web site that will use Active Directory to store Users. There is a requirement to allow users to use their emails as username. Active directory will not allow characters like "@" in ...
2
votes
2answers
247 views

ActiveDirectoryMembershipProvider not accepting FQDN

We are trying to set up the ActiveDirectoryMemebershipProvider for an ASP.NET intranet application that is supposed to automatically sign the users into the application when it is accessed in the ...
2
votes
2answers
498 views

Custom Role Provider with ActiveDirectory Authentication

I'm creating a custom Role provider based on the ASP.NET Role provider. I have 3 tables. One for Users, one for Roles, one for UsersInRoles.The Users table has no password column because the users are ...
1
vote
0answers
141 views

Will the ActiveDirectoryMembershipProvider traverse a one-way domain trust (in SharePoint)?

We are implementing SharePoint in an environment with multiple separate domain forests that will be used to authenticate users using claims based authentication. The various domains have a one-way ...
1
vote
1answer
65 views

Using ConfigurableActiveDirectoryMembershipProvider in Spring.Net

I want to use ConfigurableActiveDirectoryMembershipProvider in my code. I have my current settings as <add name="XXXXMembershipProvider" type="System.Web.Security.ActiveDirectoryMembershi ...
1
vote
1answer
159 views

Reading Active Directory on Windows XP Machine

i have the Problem that i cant connect (and read) the active directory under windows xp. The solutions ive tryed so far are http://www.codeproject.com/KB/IP/StorerActiveDirectory.aspx and ...
1
vote
2answers
383 views

Active Directory Membership Provider with AD LDS

I am trying to create web app that is using ActiveDirectoryMembership with AD LDS When I try to register a new user, or login with existing user, I am getting this error "If either of the properties ...
1
vote
1answer
372 views

Can you use an email address as the login with Active Directory and SharePoint?

Assuming email addresses are all different, so not from one or two single email suffixes. I know there is UPN login, but I believe that to be with predefined UPN Suffixes, not 1000s of unique ones. ...
1
vote
1answer
53 views

Using SqlMembershipProvider when ActiveDirectoryProvider fails to log a user in

I have a requirement to allow access to an app with users being authenticated by AD. Sadly, not all of the users who can access the app will have been authenticated this way so I need to provide a ...
1
vote
0answers
153 views

What is the domain name when using ActiveDirectoryMembershipProvider against ADAM (AD LDS)

Ok, I've come a long way in my quest to authenticate WCF invokers against AD LDS, right now I have ActiveDirectoryMembershipProvider set up so that even the VS2010 Project/ASP.NET configuration tool ...
1
vote
1answer
2k views

How to determine user DN after authentication against an Active Directory?

I'm using DirectoryServices to authenticate a user against an ADLDS (the lighteweight Active Directory). After I pass authentication. How can I determine the DN or SID of the currently logged in user? ...
1
vote
2answers
724 views

How to create a PeopleEditor?

I am building a windows application that upload documents to sharepoint document library and modify its column. My problem is that i'm uploading a file to document libary that has a people editor ...
0
votes
1answer
40 views

Active directory - How to know the error produced when changing password?

When I try to change a password from a web I get the next error: The password supplied is invalid. Passwords must conform to the password strength requirements configured for the default provider. ...
0
votes
0answers
62 views

ActiveDirectoryMembershipProvider throwing Attribute not recognized 'passwordFormat'

I am using ASP.NET 3.5 SP1 and banging my head against the wall trying to get Membership working with the ActiveDirectoryMembershipProvider. It seems as though our passwords are stored as plain text ...
0
votes
0answers
276 views

PrincipalContext not connecting

I am attempting to use PrincipalContext for a webservice that I am developing. I have already been using forms authentication on the web server in a different application and it works fine. The ...
0
votes
0answers
52 views

Asp.net membership with AspNetSqlMembershipProvider and AspNetActiveDirectoryMembershipProvider?

Can we implement membership from asp.net using both AspNetSqlMembershipProvider and AspNetActiveDirectoryMembershipProvider? I mean i want to implement the membership for a web application developed ...
0
votes
1answer
107 views

How to differentiate new added objects and updated objects in DirSync search results (Active Directory)?

Both new added objects and updated objects are returned in DirSync search results, from Active Directory server. How to differentiate them, in SearchResponse? ...
0
votes
2answers
150 views

Using ActiveDirectoryMembershipProvider with SqlMembershipProvider

I want to create a web-app (a website) used in house by staff only. I want to use active directory membersip provider to authenticate users. The thing that is confusing me is how do I manage profiles ...
0
votes
1answer
116 views

LastLoginDate issue with custom membership provider in Sitecore 6

I am trying to make a custom membership provider to work with Sitecore. The custom membership provider has to work with AD, so when I wrote it I had it inherit from ...
0
votes
0answers
37 views

Useful error mesage for AdMembership provider

I'm looking to get usefull error message for the ADMembership provider (or our of AD at all really) for the following cases. User fails to log in User fails to change password. If the process throws ...
0
votes
1answer
136 views

Login to active directory

Hi I have an active directory that is installed on a machine that belong to different domain than the domain I am doing development on. And there is no trust relationship between the two domains. ...
0
votes
1answer
85 views

What is the easiest way to learn how to connect to LDAP using c# outside of a domain?

Is there a way that I can host a light weight version of LDAP on my developer box, so I can test out scenarios like creating a new domain account when a new employee is hired. I am building an IT ...
0
votes
3answers
2k views

Query Active Directory from ASP.NET and bind result to List View

I managed to do ASP.NET authentication work wih AD. Now, I want to query an OU in AD and display the result either ListView or GridView in ASP.NET page. Here's the Domain Controller: dc.itlab.edu ...
0
votes
1answer
490 views

Find current users active directory group C++

How would I go about querying what active directory group the currently logged in user belongs to? I am assuming it will be through LDAP but I havnt been able to find much on how to get this ...
0
votes
2answers
241 views

How to make the ActiveDirectoryMembershipProvider accept an empty password?

We are developing a web application that uses forms authentication and the ActiveDirectoryMembershipProvider to authenticate users against the Active Directory. We soon found out that the provider ...
0
votes
1answer
84 views

How to add the distrubtion group in Active Directory for a user?

How to add the distrubtion group from Powershell in Active Directory ? I have user in active directory and i want to add the user into particular group rather than going and server because that part ...
0
votes
1answer
545 views

Unable to connect to ADAM with Windows domain\username

I'm having some difficulty connecting to an ADAM instance from my Commerce Server 2007 ASP .NET solution, and I believe it relates to my config file somehow. The short version is that I can connect ...
0
votes
2answers
904 views

LDAPS with ActiveDirectoryMembershipProvider on ASP.Net Webforms

I have set the ActiveDirectoryMembershipProvider connectionProtection attribute to secure, according to MSDN documentation states that when this is set to secure the following holds: "The ...
-1
votes
1answer
472 views

ActiveDirectoryMembershipProvider to validate a user

I would like to use the ValidateUser method of the ActiveDirectoryMembershipProvider to validate that a user exists in AD. I am taking in the username and password in a form. I would like to then ...