Java、LDAP、ADAM - 如何创建名称中包含正斜杠的容器

发布于 2024-08-18 23:35:24 字数 634 浏览 4 评论 0原文

我在编写一些 Java 代码时遇到问题,这些代码将在 ADAM 中创建一个容器/文件夹,其中容器名称和专有名称包含正斜杠。
例如
cn=测试/测试
dn=CN=test/test,CN=TestStore,DC=MyCompany,DC=COM

LdapContext _ctx = getNewContext(valid_userName, valid_userName, valid_userName);
  // uses InitialLdapContext under the hood 

String containerDN = "dn=CN=test/test,CN=TestStore,DC=MyCompany,DC=COM"
_ctx.createSubcontext(containerDN, attrs); // assume attrs is valid javax.naming.directory.Attributes

我正在​​努力从 Java String 对象中转义正斜杠,但又允许 InitialLdapContext 创建具有该名称的容器。

从 ADAM Adsi Edit 应用程序中,我可以创建带有正斜杠的文件夹,因此我认为该过程也可以通过代码完成。

提前非常感谢...

I am having trouble writing some Java code, which will create a container/folder in ADAM, where the container name and distinughed name contain a forward slash.
e.g.
cn=test/test
dn=CN=test/test,CN=TestStore,DC=MyCompany,DC=COM

LdapContext _ctx = getNewContext(valid_userName, valid_userName, valid_userName);
  // uses InitialLdapContext under the hood 

String containerDN = "dn=CN=test/test,CN=TestStore,DC=MyCompany,DC=COM"
_ctx.createSubcontext(containerDN, attrs); // assume attrs is valid javax.naming.directory.Attributes

I am struggling to escpae the forward slash from the Java String object, and yet allow the InitialLdapContext to create the container with the name.

FRom the ADAM Adsi Edit application, I can create folders with forward slashes, so I presume the process can be done from code as well.

Many thanks in advance ...

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

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

发布评论

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

评论(2

向日葵 2024-08-25 23:35:24

重新阅读 LDAPContext 和 DirContext 的 JavaDocs API ...重载方法 createSubContext() 提供:

public DirContext createSubcontext(Name name, Attributes attrs) throws NamingException

Name 接口、具体类 CompositeName 为我处理特殊字符的转义/取消转义...

非常感谢 JRL!

Re-reading the JavaDocs API for LDAPContext, and DirContext ... an overloaded method createSubContext() offers:

public DirContext createSubcontext(Name name, Attributes attrs) throws NamingException

the Name interface, concrete class CompositeName handles the escaping/un-escaping of special characters for me ...

many thanks JRL !

后知后觉 2024-08-25 23:35:24

来自 Technet,可能有用:

如果组织单位的名称
包含正斜杠字符
(/),系统需要转义
反斜杠形式的字符
() 区分正向
分隔元素的斜杠
规范名称和正斜杠
这是组织的一部分
单位名称。规范名称是
出现在 Active Directory 用户中,并且
显示计算机属性页面
立即转义字符
在正斜杠之前
组织单位的名称。为了
例如,如果一个名称
组织单位是
促销活动/东北及名称
域名是 Reskit.com,
规范名称显示为
Reskit.com/Promotions/东北

From Technet, might be of use:

If the name of an organizational unit
contains a forward slash character
(/), the system requires an escape
character in the form of a backslash
() to distinguish between forward
slashes that separate elements of the
canonical name and the forward slash
that is part of the organizational
unit name. The canonical name that
appears in Active Directory Users and
Computers properties pages displays
the escape character immediately
preceding the forward slash in the
name of the organizational unit. For
example, if the name of an
organizational unit is
Promotions/Northeast and the name of
the domain is Reskit.com, the
canonical name is displayed as
Reskit.com/Promotions/Northeast

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