Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
204 views

How to find out if a computer is connected to novell eDirectory or Microsoft ActiveDirectory?

I just implemented Novell eDirectory in my application. Since our application supports Microsoft ActiveDirectory I would like to prevent an additional configuration parameter like "Novell yes/no". ...
2
votes
1answer
59 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
135 views

How to save the LDAP SSL Certificate from OpenSSL

I wanted the SSL Certificate of my LDAP Server which is Novell eDirectory. I have used openssl to connect to ldap to view the certificate openssl s_client -connect 192.168.1.225:636 it is printing ...
2
votes
4answers
8k views

Connecting to LDAP from C# using DirectoryServices

I am trying to connect to an edirectory 8.8 server running LDAP. How would I go about doing that in .Net? Can I still use the classes in System.DirectoryService such as DirectoryEntry and ...
1
vote
1answer
62 views

Changing eDirectory Password From Linux Machine

I have Configured LDAP Authentication for my Linux Machines. The LDAP Server is Novell eDirectory. The LDAP Users are able to login into the machine. But when i am issuing passwd command it is asking ...
1
vote
1answer
123 views

How to access a Novell network through System.DirectoryServices?

I'm accessing an ActiveDirectory through public static DirectoryEntry GetRootDSE() { DirectoryEntry rootDSE = new DirectoryEntry("LDAP://rootDSE"); return rootDSE; } ...
1
vote
0answers
117 views

Obtaining raw property value with .NET DirectoryServices

Does anyone know if it's possible to get value of any LDAP object's property X? It seems like that .NET or ADSI removes stuff it cannot handle (de.Properties.Values.Count == ...
1
vote
3answers
605 views

How can I work with Novell eDirectory services in J2SE?

How can I work with Novell eDirectory services in J2SE? Will JNDI work with eDirectory? What are some resources I can use to learn about whatever library or libraries you suggest? I just want to ...
0
votes
2answers
61 views

Wildcards in LDAP connection [closed]

Possible Duplicate: What's the difference in using distinguished name with cn or uid when logging into LDAP? I'm trying to trick an application into logging in a user. I'm not trying ...
0
votes
4answers
1k views

How to change passwords using System.DirectoryServices.Protocols

Our user store is an LDAP server called eDirectory. How do you change user passwords using System.DirectoryServices.Protocols?