I expected the inspect module would be integrated into wsadmin by default since it is part of jython 2.1, which is the jython version wsadmin seems to be using (2, 1, 0, 'final', 0) according to sys.version_info. I get this error "ImportError: no module named inspect"
I am trying to use inspect.isfunction() and inspect.getargspec() to allow a higher level perl script check that the command usage is correct and to call an arbitrary wsadmin jython function by name.
Is there any way I can emulate these functions behavior without inspect? Also, Why is inspect missing? It seems like it should be there...