对象类型的 WebSphere 层次结构是什么?
WebSphere 的 wsadmin 工具的文档非常糟糕。我正在自动化部署,并不断遇到以下脚本异常:
WASX7129E: Cannot create objects of type "JAASAuthData" in parents of type "Node"
将 JAASAuthData
和 Node
替换为多种不同类型的对象。然后一遍又一遍地显示该消息,您也许会理解我的沮丧。我不断猜测在什么背景下可以创造什么。
类型的层次结构实际上记录在任何地方吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
任何类型的父级都可以使用命令
AdminConfig.parents(type)
进行内省。例如,请注意,由于安全原因,尝试获取
JAASAuthData
的父级会失败。 (但这是安全
)The parents of any type can be introspected with the command
AdminConfig.parents(type)
. e.g.Note that attempting to get the parent of
JAASAuthData
fails for security reasons. (But it'sSecurity
)