active-directory

Is using bindAuthentication with Spring and Active Directory impossible?

Hi, I want to authenticate the useres of my webapplication against our internal active directory. I have the applicationContext-security set up as follows: <beans:beans xmlns="http://www.springframework.org/schema/security" xmlns:beans="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-ins...

Can you authenticate into SSAS with AD LDS (ADAM) accounts?

I'm very new to AD LDS and experienced but not qualified with SSAS, so my apologies for my ignorances with these. We have a couple implementations where we expose SSAS via an HTTPS proxy (msmdpump.dll) and currently we have a temporary domain setup handling this (where our end-users have a second account+creds to manage because of this ...

ldap login form works, but need to add active-directory group access

I created a form that asks you to log in, then verifies the user/pass against the ldap server/active-directory, if successful, it creates a session, which will be checked on every page. Now I want to check the session, which is the username of the person who is logged in, and do a search for them using ldap_search, so I can check what g...

With ADSI SetPassword method how a password is transmited to AD Server

My question is how ADSI performs SetPassword operation. According to what I have read ADSI is a COM interface and it has more capabilities than AD provides through LDAP. While you are suppose to update unicodePwd attribute of a personaccount entity through LDAP, ADSI provides you SetPassword call. I know that ADSI & AD provides Kerberos ...

System.DirectoryServices.AccountManagement not working on the server

I am using System.DirectoryServices.AccountManagement to find the logged-in user's AD entry. It is working great in the VS2008 WebDev server on developers machines. But when we installed the code on the development server (windows server 2008), we get an access error. Both the developer's machine and the development server are membe...

need to display info for user within active-directory

The following code will search for the user within the domain controller, but I want to display the info of each thing noted within the justthese variable: "displayname","mail","samaccountname","sn","givenname","department","telephonenumber" $dn = "dc=xxx,dc=xxx"; $justthese = array("displayname","mail","samaccountname","sn","givenname"...

Can AD Membership Provider be configured to use Kerberos

I have a web app that uses the Active Directory Membership Provider and when a user changes their password, they can login with either the old password or the new password for a while. This KB article (http://support.microsoft.com/kb/906305/en-us) leads me to believe that this behavior is caused by NTLM authentication. Is there ...

Get Active Directory Attributes for Users on Legacy Exchange Servers

I would like to create a CSV file of the users on our Exchange 2003 servers, and include some attributes from their AD account. In particular, I would like to pull certain AD values for the users with RecipientTypeDetails = LegacyMailbox. I have tried a few different methods for targeting and filtering (ldapfilter, filter, objectAttrib...

Syncronize AD changes in SQL server

Our sysadmin renamed several of our AD groups that we are using in SQL server. The SQL login still has the old name. Is there a way to syncronize AD and our SQL logins? ...

Sync Between Providers With Different Identities Using Sync Framework

Hello, I'm trying to use Sync Framework to synchronize user data between Active Directory and an application that provides a web service. I've created two FullEnumerationSimpleSyncProvider classes, one for Active Directory and one for the web service, and created a common data type and metadata columns that can be shared by both. Curren...

How can I get a list of all users that belong to a specific department from Active Directory?

Here's what I'm trying to do: I want to get a list of all users and groups that belong to a specific department (entered by the user) from Active Directory using VB.Net and DirectoryServices. Any suggestions? ...

How to create a login with struts2 and LDAP/Active Directory?

Hi, I need to create a login and account validation using struts 2 and ldap/AD, so the flow would be: Display login page User inputs his username and password Validates user's existence in ldap/ad Redirect to welcome page with message and user's name How should I get it done in Struts 2 and Ldap/ad? Thank you. ...

can bind successfully to the ldap server, but needs to know how to find user w/i AD

I create a login form to bind to the ldap server, if successful, it creates a session (which the user's username is stored within), then I go to another page that has session_start(); and it works fine. What I want to do now, is add code to test if that user is a member of a specific group. So in theory, this is what I want to do if(u...

synchronze active directory from hardware firewall

I want to acess my active directory directly through my firewall so that i can make changes into the user and group users directly from the firewall.Is there any command or method to enable this process? ...

Websphere 6.1 Ldap Active Directory

I have recently upgraded from websphere 5.1.2 to websphere 6.1 server. I had some ldap code to query active direcotry that worked fine on 5.1.2 but now does not work on 6.1. I get the following exception: Caused by: java.security.NoSuchAlgorithmException: Mode: SSL not implemented Is this because the security IBM is using is not com...

Active Directory authentication for Non-Domain users

I have a web application using windows authentication. I also want to authenticate non-domain users against AD. Can I have domain members can enter site directly, and non-members enter their domain username and password. How can I do this? ...

Automatic AD Auth

Hi everyone, I'm developing an ASP .NET application, nothing fancy just another LOB App. Our company's authentication model is based on a typical AD setup. Nearly all of our applications are written on Sharepoint so it is a requirement that the authentication is "automatic", meaning that once you are logged on your machine you have acc...

Assembly reference from ASP.NET App_Code directory

I have trouble getting a custom ObjectDataSource for an asp:ListView control to work. I have the class for the DataSource in the App_Code directory of the web application (as required by the asp:ListView control). using System; using System.Collections.Generic; using System.ComponentModel; using System.Configuration; using System.Data; ...

ASP.NET / Active Directory - Supporting auto login for domain users

I am developing a simple ASP.NET website that will run on the intranet on a WS2008(IIS7) box and respond to users running XP/IE8. Everything is domain connected and I am trying to automatically login the users much like SharePoint does. On my dev machine (XP), when running the site through VS, everything works. I can pickup on the user ...

Given a user's SID, how do I get their userPrincipalName?

I have a list of user's security identifiers and I need to get a list of userPrincipalName's... is there any way that I can get it without loading up the users DirectoryEntry and pulling in the userPrincipalName property? I need the most efficient method possible because this is done a lot ...