运行websphere的Jython时,我无法调用AdminControl命令
IDictionary(TKey, TValue)
我从IBM或其他地方看不到任何表明需要导入AdminControl的内容,因此我不确定为什么上述内容无效。
注
WebSphere 8.5
我用命令运行jython:
Jython 2.1 on java1.6.0 (JIT: j9jit26)
Type "copyright", "credits" or "license" for more information.
>>> cellName = AdminControl.getCell()
Traceback (innermost last):
File "<console>", line 1, in ?
NameError: AdminControl
答案 0 :(得分:3)
你做不到。 AdminControl对象由内部类型支持,并在启动时由wsadmin注册。使用它的唯一方法是通过wsadmin -lang jython
(可能使用-f script.py
)。