在 WebSphere 7(修订包 25)中,我想设置以下值:
'用单元的节点名称为新别名添加前缀'
不幸的是,在使用 WebSphere 'Integrated Solutions Console' 时,这似乎没有使用管理脚本记录下来。
有人可以让我知道如何使用 jython 设置此设置。谢谢你。
在 WebSphere 7(修订包 25)中,我想设置以下值:
'用单元的节点名称为新别名添加前缀'
不幸的是,在使用 WebSphere 'Integrated Solutions Console' 时,这似乎没有使用管理脚本记录下来。
有人可以让我知道如何使用 jython 设置此设置。谢谢你。
我不知道如何直接设置属性,但是您可以通过另一种方式获得您正在寻找的行为。您可以使用 AdminConfig.create,而不是使用 AdminTask.createAuthDataEntry。
security = AdminConfig.getid('/Cell:'+AdminControl.getCell()+'/Security:/')
AdminConfig.create('JAASAuthData',security, [["alias", "aliasWithoutPrefix"],["userId", "myUser"],["password", "myPassword"]])
这将创建一个别名为“aliasWithoutPrefix”的 J2C 身份验证条目。
希望这可以帮助!