How do I find the version of the SmartSockets jar file I am using?

How do I find the version of the SmartSockets jar file I am using?

book

Article ID: KB0087207

calendar_today

Updated On:

Products Versions
TIBCO SmartSockets -
Not Applicable -

Description

Resolution:
Windows - cd to %RTHOME%\java\lib
Unix - cd to $RTHOME/java/lib

Run the following

java -classpath ./ss.jar com.smartsockets.Version


To find the version programmatically do the following:

//

import com.smartsockets.*;


public class jar_rev {

  /**
   * Prints the SmartSockets for Java version.
   */
  public static void main(String args[] ) {

    Tut.out(Version.getVersion());

  }
}

Issue/Introduction

How do I find the version of the SmartSockets jar file I am using?