Accessing Employee ID via LDAP in a Classic ASP/VBScript application - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T03:42:45Z http://stackoverflow.com/feeds/question/826862 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/826862/accessing-employee-id-via-ldap-in-a-classic-asp-vbscript-application 2 Accessing Employee ID via LDAP in a Classic ASP/VBScript application AnonJr 2009-05-05T20:52:32Z 2009-05-22T22:00:27Z <p>I've got an older ASP/VBScript app that I'm maintaining/upgrading and its currently using the older/depreciated means of gathering profile information - like below:</p> <pre><code>strNTUser = Request.ServerVariables("AUTH_USER") strNTUser = replace(strNTUser, "\", "/") Set strNTUserInfo = GetObject("WinNT://"+strNTUser) 'You get the idea' </code></pre> <p>When all I needed was the full name and the description, this was fine. Now I need to access some additional profile information, but I need to use LDAP instead of WinNT. I've Google'd till I was blind, but for the life of me I just can't seem to wrap my brain around connecting via LDAP and getting the info that I need.</p> <p>What do I need to do to get the First Name, Last Name, and Employee ID based on the AUTH_USER?</p> <p><strong>Update</strong>: I figured from the outset that ADSI or some similar interface would be required, but I am apparently an ADIdiot and am getting no useful hint - let alone help - from anything I have found on MSDN or TechNet. More explicit help would be nice...</p> http://stackoverflow.com/questions/826862/accessing-employee-id-via-ldap-in-a-classic-asp-vbscript-application/826916#826916 1 Answer by JP for Accessing Employee ID via LDAP in a Classic ASP/VBScript application JP 2009-05-05T21:10:02Z 2009-05-05T21:10:02Z <p>You should use <a href="http://msdn.microsoft.com/en-us/library/aa772170.aspx" rel="nofollow">ADSI</a> to connect to the directory provider (LDAP) in this case. <a href="http://msdn.microsoft.com/en-us/library/aa705944%28VS.85%29.aspx" rel="nofollow">Here is an example</a> with classic ASP.</p> http://stackoverflow.com/questions/826862/accessing-employee-id-via-ldap-in-a-classic-asp-vbscript-application/898684#898684 0 Answer by Mxyzptlk for Accessing Employee ID via LDAP in a Classic ASP/VBScript application Mxyzptlk 2009-05-22T16:12:42Z 2009-05-22T16:12:42Z <p>4GuysFromRolla has <a href="http://www.4guysfromrolla.com/webtech/041800-1.shtml" rel="nofollow">a pretty good article</a> with a few code samples for ADSI, LDAP and ASP.</p> http://stackoverflow.com/questions/826862/accessing-employee-id-via-ldap-in-a-classic-asp-vbscript-application/900182#900182 1 Answer by AnonJr for Accessing Employee ID via LDAP in a Classic ASP/VBScript application AnonJr 2009-05-22T22:00:27Z 2009-05-22T22:00:27Z <p>I'm sure there's probably a little more efficient way of doing this, but here's the code I ended up using after much searching, trying, and gnashing of teeth...</p> <pre><code>Dim strNTUser, strUser, strDN, strRootTDSE Dim objRootDSE, objConnection, objCommand, objRecordSet, objUser, objNTUserInfo strNTUser = Request.ServerVariables("AUTH_USER") strUser = Mid(strNTUser,(instr(1,strNTUser,"\")+1),len(strNTUser)) Set objConnection = Server.CreateObject("ADODB.Connection") Set objCommand = Server.CreateObject("ADODB.Command") objConnection.Provider = "ADsDSOObject" objConnection.Open "Active Directory Provider" Set objCommand.ActiveConnection = objConnection 'objCommand.Properties("Page Size") = 1000' objCommand.Properties("Searchscope") = 2 'ADS_SCOPE_SUBTREE Set objRootDSE = GetObject("LDAP://rootDSE") strRootTDSE = objRootDSE.Get("defaultNamingContext") Set objRootDSE = Nothing objCommand.CommandText = _ "SELECT distinguishedName FROM 'LDAP://" &amp; strRootTDSE &amp; "' " &amp; _ "WHERE objectCategory='user' AND sAMAccountName = '" &amp; strUser &amp; "'" Set objRecordSet = objCommand.Execute If Not objRecordSet.BOF Then objRecordSet.MoveFirst If Not objRecordSet.EOF Then strDN = objRecordSet.Fields("distinguishedName").Value End If Set objConnection = Nothing Set objCommand = Nothing Set objRecordSet = Nothing Set objUser = GetObject("LDAP://" &amp; strDN) 'I can now use objUser to get the details' </code></pre> <p>I'll happily accept any refactored code, and a reason why I now have to lower the site to "Basic Authentication" in order for this to work.</p> <p>As a side note, I've tried to hard-code as little as possible so I can send it back to the open source project I got the original code from.</p>