0
votes
0answers
28 views
Using JavaScript to get an LDAP multi-valued string attribute
I am trying to retrieve an object attribute in Active Directory that appears to be a multi-valued string (See canonicalName). After performing a search:
var conn;
conn.Open = 'Pr …
1
vote
2answers
42 views
LDAP Active Directory path
I am trying to add a user to Active Directory through an MPS Web Service. I've been trying a long time to find the correct LDAP-url to use to tell it to add the new user to the Us …
0
votes
1answer
19 views
How to specify a baseDN when connecting to LDAP via python?
I want to connect to a ldap server with python-ldap using a specific baseDN.
import ldap
baseDN="ou=unit,o=org.c=xx" # doesn't work
#baseDN="" # works
host="ldaps://test.org.xx: …
1
vote
1answer
14 views
LDAPS - shouldn’t certificate be assign to exactly the same hostname to which I try to connect?
Hi,
I try to connect to an LDAP server by LDAPS protocol, and I define the URL using the IP of the server.
The keystore I use contain a certificate which was issued to this serve …
2
votes
1answer
40 views
Authenticate against Active Directory/ISA from php
I have a complicated problem, exacerbated by the fact I don't really know where to start!
Over the last few years, I've developed a number of php web-based systems. When I built t …
1
vote
1answer
29 views
Why would the Net::LDAP gem prevent tests from running?
I have installed the ruby-net-ldap gem version 0.0.4 on my OS X (Snow Leopard) system. When I include the line...
config.gem('ruby-net-ldap')
in environment.rb, my tests won't r …
0
votes
2answers
39 views
What gems should I use to have a Ruby app talk to an LDAP server?
My overall goal is to let users of my Rails app authenticate against our organization's ActiveDirectory server over LDAP. (Did I say that right?)
I'd like to try the Ruby ActiveLD …
0
votes
2answers
83 views
List of email address to public folders in exchange
How do i get a list of all e-mail address for exchange public folders?
Will reply on my own, will accept the best reply offered.
1
vote
4answers
84 views
LDAP authentication server why ?
I have read about LDAP on wikipedia and I kind of understand what it is. However what I did not get what why so many organizations are using LDAP authentication server over having …
0
votes
0answers
16 views
Authenticating AD via LDAP with a TRUST via PHP
I've got php code that works as expected to authenticate a user against an Active Directory domain using LDAP. The same domain now has a one-way trust enabled - users in the trust …
0
votes
0answers
11 views
How to define an auto-increment number for LDAP structure?
Hi all,
I have one attribute (groupIDNumber), I want to make it work as auto-increment number?
How can we define that attr?
Thank for your help,
-nm
0
votes
1answer
54 views
appending to hash while looping
I will make this quick. I'm using Ruby/LDAP to search using my base_dn criteria. I get a result back (of type Entry). I can convert object of type Entry to Hash with to_hash metho …
0
votes
2answers
65 views
Retrieve empty attributes of LDAP DN.
Hi Community!
I am currently programming a tool (in ANSI C) for my company which reads from an LDAP Directory and outputs all the data in a specific format (that is: the name form …
1
vote
1answer
29 views
iPlanet LDAP and C# PageResultRequestControl
I am trying to do a paged search on an iPlanet LDAP. Here's my code:
LdapConnection ldap = new LdapConnection("foo.bar.com:389");
ldap.AuthType = AuthType.Anonymous;
ldap.Session …
2
votes
2answers
73 views
List all computers in active directory
Im wondering how to get a list of all computers / machines / pc from active directory?
(Trying to make this page a search engine bait, will reply myself. If someone has a better r …
