Implementing ActiveDirectory into a basic application Programming Web Development by MaddTechwf ….NET Configuration but I would like to learn to leaverage ActiveDirectory for this. I went to this [article](http://support.microsoft… active directory Programming Software Development by praveenakandhi dear all i am using asp.net1.1 with vb.net i am authenticating the user against the activedirectory if the user is a valid user i want to get the user details such as givenname,sn,department,division etc from the activedirectory can i get any help to solve this problem please thank u for the help hex value instead of string Programming Software Development by BastienP … to implement an auto-extracting process which extract data from ActiveDirectory, process it in order to make a filtered csv file… that because of special characters in user's info in ActiveDirectory, I have to use operator "-u" in csvde… E-mail not working Programming Web Development by preethishivbaba ….Business.StudentAdmin Dim myAD As New Avantus.WebModules.SystemAdmin.Business.ActiveDirectory Dim myReportGen As New Avantus.WebModules.TrainingAdmin.Business.ReportGen Dim… Database versus a Directory? Programming Databases by roswell1329 … --------os --------patch_level ... I've never used a directory service (like ActiveDirectory or OpenLDAP), but after reading about them, they seem like… IPsec Hardware and Software Networking by AbbassM2 … network or do i need a server/client system with activedirectory can i use the packet sniffer to show the difference… Drop columns containing string Programming Software Development by BastienP … order to import the modifications for every user into the ActiveDirectory again (so that we won't have to do the… Re: Drop columns containing string Programming Software Development by BastienP … still have this file with user account data of the ActiveDirectory, a user per line. If this user's account has… Re: Drop columns containing string Programming Software Development by d5e5 … still have this file with user account data of the ActiveDirectory, a user per line. If this user's account has… Delete lines in CSV where data in column equals a fixed value Programming Software Development by BastienP … still have this file with user account data of the ActiveDirectory, a user per line. If this user's account has… File comparison Programming Software Development by BastienP … older than the file 2.csv (2 different extracts from ActiveDirectory). What is currently done is printing the 2 lines from… Powershell - Last logon script with multiple filters Programming Software Development by jason.lopeman … script. Trap {"Error: $_"; Break;} $D = [System.DirectoryServices.ActiveDirectory.Domain]::GetCurrentDomain() $Domain = [ADSI]"LDAP://$D" $Searcher = New… plz Help me Sooner!!!!Mikrotik , Radius Client Hardware and Software Networking by Samerases … Active Direcory I mean take the names of users from ActiveDirectory,, Important to have worked in the Active Directory service Radius… Re: Best way to build a LAN? Hardware and Software Networking by Justin01 …. [url]http://www.microsoft.com/technet/prodtechnol/windowsserver2003/technologies/directory/activedirectory/stepbystep/gpfeat.mspx[/url] Re: read connection string from XML file Programming Software Development by abelLazm using System.DirectoryServices.ActiveDirectory; add this line this includes in the system.DirectoryServices dll Re: Role Manager Programming Web Development by MaddTechwf Would this work in my situation since I'm not pulling roles from ActiveDirectory? Re: Implementing ActiveDirectory into a basic application Programming Web Development by TimCadieux You need to show us the code in question getting userinformation from ActiveDirectory Programming Software Development by santoo hi, Can someone help me in getting the userinformation from the windows Active Directory. My PC is installed with windowsXP.How to set the LDAP Path ? thanks. santosh. ASP.NET/ActiveDirectory: The server is unwilling to process the request. Programming Web Development by jimbennett57 I am trying to add an Active Directory user to a group, and get "The server is unwilling to process the request." on CommitChanges(). I know I am binding to the directory OK and am finding both the groupDN path and userDN path, as I can return the GUID for each. Here is my code - if anyone can help me that would be fantastic! I have … Re: ASP.NET/ActiveDirectory: The server is unwilling to process the request. Programming Web Development by bart6961 I was having this same issue with the exact same block of code. I replace your lines 5 and 6 with the following code and it worked perfectly. [CODE]dirEntry.Invoke("Add", New Object() {userDN})[/CODE] ASP.net with ActiveDirectory authentication Programming Web Development by N4JRY With things slowing down now for Christmas I wish I was the other side of this issue... I believe this is an ASP.net config / web server config issue and I don't quite know where to go from here. I have a two virtual servers; SQL1, WEB1. A web site on WEB1 is using Windows authentication. This appears to work correctly - querying the active… Re: ASP.net with ActiveDirectory authentication Programming Web Development by kvprajapati Take a look at ScottGu's blog - [URL="http://weblogs.asp.net/scottgu/archive/2006/07/12/Recipe_3A00_-Enabling-Windows-Authentication-within-an-Intranet-ASP.NET-Web-application.aspx"]Recipe: Enabling Windows Authentication within an Intranet ASP.NET Web application.[/URL] Hope it helps you. Re: ASP.net with ActiveDirectory authentication Programming Web Development by N4JRY Thankfully the systems admin team are now looking into this. If I get to hear what the solution was I will post it here. N Re: active directory Programming Software Development by QVeen72 Hi, Check this link: [url]http://www.a1vbcode.com/app-3859.asp[/url] REgards Veena Re: hex value instead of string Programming Software Development by mitchems The matching of the beginning X and removal of the ticks is left up to you... [CODE] my $mem='332c206176656e7565204e6577746f6e0d0a'; $mem=~s/([a-fA-F0-9]{2})/chr(hex $1)/eg; print "$mem\n"; [/CODE] Re: hex value instead of string Programming Software Development by mitchems BTW "0d0a" is line feed/carriage return together - like a line terminator in Windows, so whoever input this information probably was using windows to input that line and hit "enter" at the end. Any line with those codes ("0d0a") usually comes from windows. You might want to remove those lines after decoding. It's up to… Re: hex value instead of string Programming Software Development by BastienP Thanks a lot Mike ! I'll try to implement that and publish the code I'll be using. Regards, Bastien Re: hex value instead of string Programming Software Development by BastienP Hi Mike and the rest of Daniweb community, I've been trying to implement that but I always fail to do it exactly how I want it. My goal is to: - first search into the CSV file for some value that starts with "X'" - then take this value, drop the X' and the ending ' which is a the end of the field (always the 2 first character of … Re: hex value instead of string Programming Software Development by mitchems Two quick questions... Does the CSV file have a header row? Are the fields always quoted? Re: hex value instead of string Programming Software Development by BastienP Mike, Yes there's a header, but I can drop it very easily and put it back after processing the file with two separate one-liners perl command (I already got them). The fields remains quoted because I have this issue with the column "DN" that has some comas in it... I can also drop the quotes (and has already done so with other fields), …