Tagged Questions
The ldapconnection tag has no wiki summary.
3
votes
2answers
138 views
Sanitize LDAP_bind query
I know that when I query a MySQL database in PHP from user entered data, the data should be sanitized. For a project that I am starting up, I will be authenticating against Active Directory for use ...
2
votes
1answer
58 views
What's the difference in using distinguished name with cn or uid when logging into LDAP?
I'm running into a problem using LDAP to authenticate logins.
We are using a Novell edirectory for authentication of other applications like Jira. ( Jira works perfect ).
I have this application ...
2
votes
2answers
249 views
LDAP: error code 49 - cannot bind the principalDn
I'm a newbie to ApacheDS.I just created a new partition in ApcheDS. When i try to register my connection factory i get above error..(with OracleAQ )
My code is;
// ldap settings
...
2
votes
1answer
566 views
Unable to turn on SecureSocketLayer with DirectoryServices.Protocols.LdapConnection
I am trying to fix a bug with SSL in a product and noticed that although the code sets SSL to be true, in the next line in the code SSL is still at false. I wrote a unit test for this and the unit ...
1
vote
2answers
44 views
Sharing an LDAP connection between classes - best practices?
What I need to do is connect to an LDAP, and then pass this connection to several classes, which do various steps of processing.
The problem I face is if I should pass the connection to these classes ...
1
vote
1answer
46 views
Active directory LDAP String?
I am following the link
http://geekswithblogs.net/frankw/archive/2008/05/18/forms-authentication-with-active-directory-in-asp.net-2.0.aspx
Trying to implement the same in my application.I am ...
1
vote
2answers
138 views
LdapConnection Bind() - does it timeout?
I have some code that allows administrators to manage their organization's users/groups etc and execute extended commands (such as disabling accounts etc). This code is completely separate from the ...
1
vote
1answer
190 views
Creating Active Directory of usernames for LDAP access
I am a newbie to LDAP and Active Directories.
I need to build a active directory of users who are eligible to access a particular conputer. When the user enters the username and password in a web ...
1
vote
0answers
189 views
JLDAP connection error or java exception?
i am getting following error
is it a JLDAP problem or java problem or problem with my code ?
need solution... help required
LDAPException: Unable to connect to server 192.168.0.110:10,389 (91) ...
1
vote
1answer
133 views
LDAP validation using email address?
I am using LDAP validation , now LDAP id am using and its working fine.
I want to use email instead of ldap id. How can i add that.
What will be LDAP config for this ?
now this is working
...
1
vote
3answers
294 views
Sun Directory Server can't connect ldap server
I'am installing ArcGisServer for the Java plataform on Centos 5.5 x86_64, this is not a supported platform but I have overcome almost every problem preventing the success of the installation. It uses ...
1
vote
1answer
375 views
how to bind to an openldap server
I am using the PHP extension.
The username is admin
password is 111111
I try to bind using ldap_bind($rs,'admin','111111')
It gives me an error:
Unable to bind to server: Invalid DN
syntax in ...
0
votes
0answers
23 views
Warning: ldap_bind(): Unable to bind to server: Invalid credentials PHP and LDAP
I'm trying to connect to an LDAP server to authenticate user credentials.
I've found a few users with this same issue but their solutions did not work for me.
here's what I'm using:
<?php
...
0
votes
2answers
48 views
PHP ldap_connect() problems
I am trying to get ldap_connect to work properly. It will work fine via CLI, but not when I open my php file via browser.
Here is what I believe are the relevant details:
Error message: Fatal ...
0
votes
2answers
55 views
LDAP modifying user info and preventing duplicates
Below is my code for a user modifying their own password. This form works flawlessly. Now the problem here is that I want to user to be able to change their email, phone, or even their name. I use an ...
0
votes
2answers
95 views
PHP - Catch timeout exception from ldap_connect()
I've written a little monitoring script in PHP, which should monitor a virtual directory and it's active directories. Everything works fine but when the virtual directory service freezes is my ...
0
votes
0answers
70 views
Creating foreign JNDI settings in weblogic and lookup from Java client
Please post if there is any example/steps to configuring external LDAP and execute LDAP queries on it.
I tried the following
creating Foreign JNDI Providers
Created remote and local JNDI names
...
0
votes
0answers
68 views
LDAP timing out using PHP unless I throttle it - EDIT: 1000 limit in ldap results
Good Morning folks,
I have several scripts which talk to an enterprise LDAP ( MS Active Directory ). I'm finding that if I don't throttle my scripts with sleep() commands I get the following error:
...
0
votes
1answer
263 views
memberOf vs. groupMembership in LDAP (Liferay)
What is the difference b/n memberOf attribute and groupMembership attribute when used in LDAP Authentication settings in Liferay?
The users are imported successfully.
The groups are also imported ...
0
votes
0answers
151 views
Unable to connect to OpenDS server - Directory server error
I'm trying to use OpenDS interactive mode for server configurations but it is not making a connection, even though the directory server is in a running state.
fkaar@ifkaar-desktop:/opt/opends/bin$ ...
0
votes
1answer
215 views
Django Ldap Connection Setup
I am trying to setup a LDAP connection in Django. Do anyone have any sample code? I need to know what information i need to place inside of the settings.py
I keep getting the following error ...
0
votes
1answer
394 views
Using the ldap.yml in Ldap_devise_authenticatable gem
I am trying to use ldap_devise_authenticatable in my rails app. I am referring to https://github.com/cschiewek/devise_ldap_authenticatable and ...