Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
251 views

Determine if user is in AD group for .NET 4.0 application

I am trying to determine if a user is a member of an Active Directory (AD) group for an internal ASP.NET 4.0 application. The code below throws an "Attempted to access an unloaded appdomain" ...
4
votes
1answer
67 views

Spring Security: setUserPrincipal manually

In a webapplication with Spring MVC and Spring Security. Is there a way to set UserPrincipal manually? I need to switch to another user by an admin part of my webapplication. In my controller, is it ...
4
votes
4answers
133 views

Confused with C# 'using'

I have seen some code for working with AD in this stackoverflow question I am getting confused about the using statement. I thought that it was just used for things that you are worried could become ...
4
votes
3answers
833 views

Get nETBIOSName from a UserPrincipal object

I am using the System.DirectoryServices.AccountManagement part of the .Net library to interface into ActiveDirectory. Having called GetMembers() on a GroupPrincipal object and filter the results, I ...
4
votes
1answer
927 views

Extending UserPrincipal; FindByIdentity() fails

Extending UserPrincipal to take advantage of its built-in properties... running into an issue when we overload the FindByIdentity() method. From Microsoft's example at ...
3
votes
2answers
848 views

JSF J_security_check How to get number of connected users and their role?

I get the username of the connected user (using j_security_check) this way, through a managed bean: ...... username = ...
3
votes
1answer
760 views

Why does “request.getUserPrincipal().getName()” sometimes return a blank string?

Has somebody an idea, why the getName() method of the UserPrincipal sometimes provides an empty String? Most of the time it returns the correct user name but not every time. This behaviour does occur ...
2
votes
1answer
115 views

Prevent subcontainer objects in PrincipalSearcher Query C#

How can I prevent subcontainer objects in queries to a specific OU with subcontainers (child OU)? To clarify, I don't want to include user objects in children OUs (subcontainers) in the result set. ...
2
votes
1answer
942 views

Get users full name from Machine Context

I have and ASP.NET application that runs on our intranet. In production I can get the user from the domain context and have access to lots of information including their first and last name ...
1
vote
0answers
93 views

Timeout exception calling UserPrincipal.GetGroups from a Windows service

When I run simple console app that calls UserPrincipal.GetGroups, it enumerates the users groups with no problems. However when I run the same code as the same user on the same server but from a ...
0
votes
1answer
85 views

Access denied when trying to add Windows User account

I am trying to programmatically add a user like this below but get an access denied message on the Save. I'm running locally on Windows 7 and the code resides in a console app. /// <summary> ...
0
votes
1answer
108 views

Looking for a Full S.DS.AM Sample with many AD extensions already written

System.DirectoryServices.AccountManagement can be extended to support additional properties for reading and writing AD properties. Is anyone aware of a full/complete sample implementation that works ...
0
votes
0answers
81 views

WCF Service - Local client can't authenticate where remote client can (TransportWithMessageCredential)

I have a WCF service hosted with the WSHttpBinding using TransportWithMessageCredential for security and Windows credential type on the message. I can access and authenticate to this service from a ...
0
votes
0answers
81 views

Populate UserPrincipal from AD Linked Server

I have created an authentication class that uses the AccountManagement namespace to populate UserPrincipals/GroupPrincipals form me. For example: public UserPrincipal GetUserByLoginName(string ...