如何在WebSphere的jython中导入AdminControl?

时间:2015-09-30 21:55:58

标签: java websphere jython

运行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

1 个答案:

答案 0 :(得分:3)

你做不到。 AdminControl对象由内部类型支持,并在启动时由wsadmin注册。使用它的唯一方法是通过wsadmin -lang jython(可能使用-f script.py)。