对象类型的 WebSphere 层次结构是什么?

发布于 2024-12-21 05:21:32 字数 307 浏览 2 评论 0原文

WebSphere 的 wsadmin 工具的文档非常糟糕。我正在自动化部署,并不断遇到以下脚本异常:

WASX7129E: Cannot create objects of type "JAASAuthData" in parents of type "Node"

JAASAuthDataNode 替换为多种不同类型的对象。然后一遍又一遍地显示该消息,您也许会理解我的沮丧。我不断猜测在什么背景下可以创造什么。

类型的层次结构实际上记录在任何地方吗?

The documentation for WebSphere's wsadmin tool is pretty dire. I'm automating deployments and constantly coming across the following scripting exception:

WASX7129E: Cannot create objects of type "JAASAuthData" in parents of type "Node"

Replace JAASAuthData and Node with objects of numerous, varying types. Then show the message over and over again and you'll perhaps understand my frustration. I'm constantly guessing at what can be created in what context.

Is the hierarchy of types actually documented anywhere?

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

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

发布评论

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

评论(1

你另情深 2024-12-28 05:21:32

任何类型的父级都可以使用命令AdminConfig.parents(type)进行内省。例如,

print AdminConfig.parents('GenericJMSConnectionFactory')
> JMSProvider

请注意,由于安全原因,尝试获取 JAASAuthData 的父级会失败。 (但这是安全

The parents of any type can be introspected with the command AdminConfig.parents(type). e.g.

print AdminConfig.parents('GenericJMSConnectionFactory')
> JMSProvider

Note that attempting to get the parent of JAASAuthData fails for security reasons. (But it's Security)

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