如何通过System.DirectoryServices访问Novell网络?

发布于 2024-11-01 09:43:13 字数 737 浏览 0 评论 0原文

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

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清君侧 2024-11-08 09:43:13

首先,ldap:// 符号在某种程度上是 AD 特定的,并假设当前框是服务器,并且运行此进程的当前用户将是所使用的凭据。

因此,对于 eDirectory,您可能需要 ldap://serverIp:port(端口为 389 或 636)。但不确定用户和密码参数是什么。

First off, the ldap:// notation is somewhat AD specific, and assumes that the current box is the server, and the current user running this process will be the credentials used.

So for eDirectory, you probably want ldap://serverIp:port (389 or 636 for port). Not sure what the user and password parameters are though.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文