3

Does anyone know of a way (using the java command or wsadmin, or......) to find out the current version of jython running behind wsadmin on a WebSphere Application Server 7.0.0.31 ND environment?

user3330451
  • 31
  • 2
  • 4

2 Answers2

4

It is most likely 2.1.0, but the following mini-script should tell you.

import sys
print (sys.version_info)

If it is 2.1 see:

Threadicide
  • 126
  • 7
3

Within wsadmin sys.version will give the version of Jython in use.

ᄂ ᄀ
  • 5,669
  • 6
  • 43
  • 57