Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to identify version of XPages Extension Library?

How can I find out what version of the XPages Extension Library is running on a Domino server?

"tell http osgi ss" lists a lot of different versions.

like image 528
Per Henrik Lausten Avatar asked Feb 01 '12 15:02

Per Henrik Lausten


1 Answers

If you have access to the Domino server you can issue the command

tell http osgi ss com.ibm.xsp.extlib

The output of the command will show all the deployed versions of ExtLib but only the ones marked as active will be used by the server. This will always be the latest version if multiple versions are deployed.

If you don't have access to the Domino server then you can use an internal utility of ExtLib to return the version number. This sample code could be added to a computed field control to display the version number :

var v = com.ibm.xsp.extlib.util.ExtLibUtil.getExtLibVersion();
return "XPages ExtLib version: "+v
like image 166
Declan Lynch Avatar answered Oct 22 '22 07:10

Declan Lynch