I'm accessing an ActiveDirectory through
public static DirectoryEntry GetRootDSE()
{
DirectoryEntry rootDSE = new DirectoryEntry("LDAP://rootDSE");
return rootDSE;
}
Now I need to access a Novell network.
In MSDN: System.DirectoryServices Namespace it looks like I only have to change "LDAP:" to "NDS:" so, is it really this easy:
public static DirectoryEntry GetRootDSE()
{
// changed LDAP:// to NDS://
DirectoryEntry rootDSE = new DirectoryEntry("NDS://rootDSE");
return rootDSE;
}
or do if have to keep some other things in mind?
Would be nice if someone has some further information for my problem...
P.S.: I'm using .Net2.0