Until now I was always using the System.DirectoryServices in my c# application. Due to the fact that I want to use a container platform which doesn't support this library I wanted to use the Novell LDAP library.
Until now the connection string looked like this:
new Directoryentry("GC://domain.com")
I tried it with the Novell library like this:
LDAPConnection().connect("GC://domain.com",389);
I always get the error message "INVALID ADDRESS". I also tried it without the GC infront of the domain, but then I always get an empty search result.
Could someone please help me? Thanks!