| Products | Versions | 
|---|---|
| TIBCO SmartSockets | - | 
| Not Applicable | - | 
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());
  }
}