ASP & Active Directory
Could anyone show me a sample, snippet, code chunk ... etc of how I can get ASP to find the Active Directory username based on a supplied email address?
For example: I want ASP to query active directory and retrieve the AD username for where user email address = 'whatever@whatever.com'
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
ASP Active Directory
I'm trying to connect to the active directory using asp. I'm having problems with logging in, what happens is the username accepted is not the user logon name but the displayname is accpeted heres the code:
Active Directory
I was wondering whether if it was possible to insert users into active directory using ASP and then also viewing those users as well. Also, how would I implement such tasks in the most secure way?
Active Directory
I have written a script to update user information in the Active Directory using ADSI. Here is part of it: Set User = GetObject("LDAP://<GUID=" & GUID & ">") User.Department = DepartmentName User.SetInfo Set User = Nothing This works fine unless DepartmentName is an empty string (""). Then I get error 0x8007200B: "The attribute syntax specified to the directory service is invalid." This happens with all the attributes I have tried, including TelephoneNumber. Do I need to delete the value of the attribute instead of setting it to an empty string? If so, how do I do it?
Active Directory
I'm trying to add a user to active directory using ASP and am receiving the following error:- Active Directory (0x80070005) General Access Denied Error Does anyone know how to get round this problem?
Active Directory
We have a custom webpage that connects to Active Directory and pulls down the users information which then creates a phone list for the office. We have hardcoded the user name and password in the webpage which has to be a domain admin in order to view the accounts... ( we have tried this with an account that has access to AD but it did not work, we get access denied. The process is we connect to LDAP which also needs to access a domain controller. The problem we are having now is we are being told that we cannot use a domain admin account to do this anymore... the question I have is does anyone know another way of doing this without using a domain admin account.
ASP To Active Directory
I would like to write an ASP ap that asks for username/password and validates against the active directory. Any ideas how/where I can do this? In addition, once these people are logged in I want to be able to send the to exchange's OWA and just be logged in, no second login/password.
Asp And Active Directory
Is there anyway that I can add user to the active directory with asp? Because I found one code to view information but not to add. Or if you can tell me where to see the command for asp and active Directory.
ASP & Active Directory
I would like to check login credentials, ie username and password, from Active Directory via an asp page. This will allow users to login to a restricted area of the website using their windows login and password. I read a thread about it on here, but it just said that it was possible, it didn't say how it was possible.
ASP And Active Directory
Is there something that would let me integrate ASP with Active Directory? I have seen a basic ones where it will allow you to create a login page. I am actually looking for something that will allow ASP to check user authentication but also be able to do such things as check which groups the person is in and allow them into certain pages according to their groups.
ASP Active Directory
We want to be able to allow our users to update this AD profile and sepecifically be able to change the address, city and phone number fields thorough a web page.
Emails From Active Directory
I would like users on a web application to be able to select users from active directory and use their email address - in much the same way as Outlook does. How hard is this to do in asp? Would it be easier to do in .net? I am proficient in asp but have never done this, on the other hand, I am starting to develop my .net skills.
Query Active Directory
how to query active directory from asp for user info? If so do you know of any good tutorials or example pages?
Authenticate To Active Directory
I'd like to set up a new web page that I'm writing in ASP so that it requires the users to authenticate using their domain accounts. The domain controller is Windows 2000 Server which is a member of my University's active directory. Does anyone know if this is even possible?
Active Directory Login
I just want to know that how can i logged in using active directory login on ASP page also i need to redirect pages according to the GROUPs i.e if user succsesful login than it will redirect pages according to the user GROUPS, if user is in Finance Group then it will redirect to finance page and if its in IT GROUP it wil
Adsi IIS And Active Directory Through ASP
I have a script that I have set up to display users and their account status in an asp page, using adsi, then the web viewer can enable and disable accounts using this page. The problem I have is the anonymous user that IIS logs in with does not have the privileges to change accounts etc for active directory. So, I made my server into an SSL server and made it ask for credentials using basic authentication. All works well for administrator as when the admin username and password are used, the script then runs with admin rights. (as this is only a test server I can mess with all security etc before wrecking the real server!!) I delegated control to an OU that I wish to control with ASP and went and logged in as one of the users that was delegated control, but that says the script does not have the rights. So, in effect, the script will not work unless I put in the admin username and passwords. I even delegated control to one user rather than a group but that still don't work. Any ideas please? Is it IIS, AD or ASP that is at fault?
Getting Infor From Active Directory
How would I go about extracting information from Active Directory using an ASP page so I can display things like the phone number, name,address etc....
Access Active Directory
I'm working on a ASP web application which need to use Active Directory as uthentication method. I wonder if I can get some help from you, things like some sample component in VB or some window APIs i can call from asp pageand how to use it to get the username and password info .
Updating Active Directory
I'm looking to update some details in Active directory and was wondering how I could go about doing this,I can search and display items but want users to update there own details.If someone could point me in the right direction for some good resources.
Pulling Name From Active Directory
we just migrated to Windows Server 2003 and active directory. On our intranet I would like to personalize some of the pages my users hit. Let's say I login as petertom, when I go to my main page. Is there a way to grab information form the fields in AD after a person authenticates? Is there a timeout, i.e., user logs in at 8:00 AM, but doesn't hit the intranet until 1:00 PM etc? Eventually I would like people to get to secure areas without needing a login and password, but based on what AU or group they belong to, is this possible as well? Does any of this require changes to be made via IIS? (The intranet is running Win2k server, not Win2003).
Verifying Active Directory Authentication
What is a good resource for integrating ASP applications with Active Directory? I want pages that will allow operations on AD. A prime example is that I want to have an ASP page that would ask users for their AD password and verify...
Active Directory Error '80070005'
I create an ASP application for Windows 2003 server (Czech) with Exchange 2003. When I want to create new user in Active Directory from my application- this error occurs: Active Directory error 80070005' General Access error denied Web application runs under ADMINISTRATOR account and problematic code is: Set oOU = GetObject("LDAP://test.test.cz/ou=skup,dc=test,dc=test,dc=cz") Set oUser = oOU.Create("User", "cn=" & "Test" & " " & "Tester") oUser.Put "sAMAccountName", "Test13" oUser.SetInfo
Updating Active Directory Using SQL/LDAP
i mentioned in a previous thread that i've been trying, with varying degrees of success, to access AD fields through the use of a SQL statement and LDAP. The problem i'm facing now is how to update AD using the same method - i've tried the usual SQL update command, but with no luck. What I need to do is allow the currently logged in user to update specific parts of their AD profile. Finding the username with request.servervariables is simple enough, but whenever I try and write to AD it throws up errors. Does anybody have any experience of this? Is it even possible to update AD using SQL, and if not are there any other methods of doing so?
Add Existing Active Directory User To AD Group?
I have a question concerning ASP classic. I'm trying to add an existing user in active directory to an AD group using a web-based form. Using regular code to do this, I get a general access denied error, upon which further research told me I needed admin rights in order to accomplish the task. I vaguely remember an ASP project I worked on in the past where the script itself authenticated to active directory before requesting information. Is it possible to authenticate to AD (as in, authenticating with my username/password which has access to add users to this specific AD group), then continue with the commands that way? I've resurrected a bit of code from that prior project, and attempted to mix the two together: Code:
ASP, Windows Authentication, Active Directory, STand Alone Client
I am running windows 2000 on a client PC, running IIS and a helpdesk application created in house. Whenever someone on the domain (domain.com we'll call it)...tries to access the helpdesk app, it prompts them for a u/n; password. SWEET! This is what I want. Here's where the problem lies in. WHen they type in their domain username/pwd combo...they get a "failed authentication" as it prompts them back with the fully qualified domain name of the pc the Helpdesk is on followed by their username. In short, they have to enter our domain (domain.com) followed by their username and password to work right. The PC which houses the Helpdesk app is on the domain and is set up to authenticate users based on the domain relation. As a matter of fact, I have say Jack set up with everything but FUll Control. He can get in as long as in the username box it looks something like: Code:
Use Active Directory Group In A Dropdown Form Control
I would like to list IN our Active directory all group that begin named and start with "GRP-" to put in a dopsown list for a form. Maybe for the begging, the code to only list group in AD to display in a webpage can be nice.
LDAP Query For Active Directory From A Remote Machine
I am trying to access user info in a remote Active Directory Server with an ASP application. For testing purpose, I set up a test domain controller (Win2k Server) and installed Active Directory Server. I am able to retrieve the user info with the program below when I run the program(http://testmachine/test.asp) on the test domain controller machine. However, if I run the program(http://machine2/test.asp) from another machine in the same domain (Windows XP), it returns empty record set. Code:
LDAP Query For Active Directory Address Field
I'm trying to retrieve data on all users currently within our active directory system, and although i have had some success there is one field that i still can't extract the values from - postalAddress. I'm using the following code:
Querying Active Directory For Current User's Info
I'm working on a logon script that needs to query AD for the current user's information. Phone numbers, email address, etc. One thing that makes it a little bit more difficult is that I don't have the full dn for the user; I only have the base dc and cn. Microsoft's documentation on all of this is lacking greatly, so I've been racking my brains quite a bit.
Asp/active
i was looking into using active directory to authenticate users, how is this done? what is required to connect to active directory? What is can you pull from active directory with asp?
Active X
I have a pretty resource intensive javascript page that I would like to try to make into an Active X program. I'm a PHP programmer and don't know much about ASP, but the research I've found is talking about using ASPX to create the application. Can anyone offer any suggestions about creating something like this, whether or not PHP can be implemented and where to start. My intention is to have my program be embedded into the browser. **Originally posted in the PHP forumns, I assume a moderator moved it to the ASP forum. Now that we're here, a few questions Do I need a different server configuration to run ASP? I'm currently running apache 2.0. An example of an ActiveX program I'm thinking of can be found on webshots.com. This site uses an ActiveX program to allow users to upload images through their custom application. It has functionality similair to that of some flash I've seen.
Active Content?
What is "active content"? My ASP page just returns HTML.... I have a page with an .htm extension that has a form whose action is an ASP page which generates a report after updating a database with the form data. Under Windowx XP SP2 the IE6 "Information Bar" has the message: "To help protect your security, Internet Explorer has restricted this file from showing active content that could access your computer."
Active User IP's
I just made a simple thing on my page that says Active Users: and the number by adding 1 to session_onstart in global.asa. It seems to work. Is there a way I can have this store IP's of the active user, etc without using a database to store the stuff in?
Active Control
My problem is my active control will download to IE6 sp2, but not download to IE6 sp1. On IE6 sp1, ther is no popup to ask for download.
Active FT/PT Employees
The count in my sql statement calculates a count of FT Active employees and a count of PT Active employees. Now I need a total sum of those two. Is there any possible way of putting a sum in the SQL statement? sqlActiveEmployees = "select employee_type, case when employee_type = '" & EMPLOYMENT_STATUS_FULLTIME & "' then 'Full-Time' else 'Part-Time' end, count(*) from EMPLOYEE_CLIENT where status = " & EMPLOYEE_STATISTIC_ACTIVE & " and client_id NOT IN " & TLC_CLIENT_IDS & " group by employee_type order by employee_type" I write it out to this code: For intCount = 0 to uBound(arrActiveEmployees,2) intTotalEmployees = intTotalEmployees + (nullToZero(arrActiveEmployees(1,intCount)) + (nullToZero(arrActiveEmployees(2,intCount)))) Response.Write "" & arrActiveEmployees(1,intCount) & ": " Response.Write arrActiveEmployees(2,intCount) & "" Nex
Active Desktop
I was thinking about using active desktop, asp, and IIS on my win 2k pro computer to setup a personalized interactive desktop. Has anyone ever done this before? If so do you have a screen shot or maybe some hints/information I could use? I've been searching google. From what I can figure all I have to do is program a webpage that looks and works the way I want. Then just tell active desktop to use it as the home page.
Active Server
I've to startup a server ho housing a E-commerce asp. My S.o. is an OpenBSD Ver 4.2 and i am in panic ....
An Active Link
I'm looking for a function into which I can pass a string, and have it activate any links within that string.Does anyone know of such a thing?
Active Users
I need to display information a list of Active users on a web site.I can do the count using the global.asa but need to display individual information about each "active user" without writing it all to a database and then pulling it out again.Info I need : IP Address - Request.ServerVariables("REMOTE_HOST") The page they are on - Request.ServerVariables("SCRIPT_NAME") the page they were on - Request.ServerVariables("HTTP_REFERER") Can I write this stuff into sessions and call them all out?
Active Connections
I am programming a rather large site which will hopefully attract thousands of visits per day. I have been told by other people that MS access begins to struggle once it has about 15 active connections. Since I am currently using MsAccess to test my scripts along with IIS 5.0 or whatever it is, I guess that at some stage I am going to have to convert all my stuff so that the data is in an SQLServer Database, and that the scripts can read and write to it. could anyone tell me what the transition is like. should I consider using SQL Server from the beginning or will I just have to change a few lines on each page.
Active Users
I'm developing an online shopping cart. Usually the site administrator modifies products etc in the "Store". I want a mechanism for the administrator such that he should be able to view or at-least count the customers or visitors in my "Store" (only in store), users of the other sections should not be counted. Whenever a user in my store signs out or closes the browser (not properly sign out) or even leaves the "Store" the count should decrement.
Built In Active X Components?
I've been playing with ASP for about 3 months, and it just now, today, clicked that I could be using active x stuff with my asp pages. The stuff I make falls into two categories, stuff for inhouse, and stuff that's on brinkster. How can I tell what active x components I can use, and find some docs on them?
How To Check If Db Connection Is Active
I have a MySQL db running off a companies server who i have designed the website for. Their connection has a habit of going down frequently This then causes errors on my site. Is there a way of testing that a database is available, like some kind of error handling script.
Active Users Script
I don't want to use Global.ASA, I will if I have to. Anyhow, I want to know how I can create a active users script. My idea is to create the page location, how long they've been browsing, etc. I do believe it is rather easy to script, but the part I'm not sure of is how I would detect when the user left the website.
Active An Append Query
i have a an apending query on access ,and this query copy the info from one table to another table, and its work preety good on access , but i dont know how can i link with asp so i can i activate it directly throw the asp
Display All Active Inventory
our cart is comersus system db is ms sql.I am sure I will have to create a new page. I am BRAND new to asp. I have been doing vb for desktop. Please help or refer me to a link for details.
Using Active Server Pages
I'd like to use XMLHTTP to retrieve two .cav files, store them as arrays (or cursors), join them and execute an SQL query. Can this be done using script in an .asp page? What objects and procedures should I focus on?
Active Server Pages
This error occurs while trying to execute a asp file which write content into a excel file. strangly it occurs once in a while. what could be the cause?
|