我正在通过访问 ActiveDirectory
public static DirectoryEntry GetRootDSE()
{
DirectoryEntry rootDSE = new DirectoryEntry("LDAP://rootDSE");
return rootDSE;
}
现在我需要访问 Novell 网络。
在MSDN:System.DirectoryServices 命名空间中,看起来我只需将“LDAP:”更改为“NDS:”,真的这么简单吗:
public static DirectoryEntry GetRootDSE()
{
// changed LDAP:// to NDS://
DirectoryEntry rootDSE = new DirectoryEntry("NDS://rootDSE");
return rootDSE;
}
或者是否必须记住其他一些事情?
如果有人对我的问题有更多信息会很好...
PS:我正在使用.Net2.0