Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WebSphere 7 - Jython Version

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?

like image 505
user3330451 Avatar asked Jan 20 '26 17:01

user3330451


2 Answers

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:

  • https://docs.python.org/release/2.1/
  • http://www.jython.org/archive/21/docs/index.html
like image 135
Threadicide Avatar answered Jan 22 '26 09:01

Threadicide


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

like image 38
ᄂ ᄀ Avatar answered Jan 22 '26 09:01

ᄂ ᄀ