IBM webMethods Hybrid Integration

IBM webMethods Hybrid Integration

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only
  • 1.  EntireX jar files Detect version number

    Posted Wed March 19, 2008 01:38 PM

    Hello everyone,

    my goal is to detect the version number of entxrt1.0.jar file.

    It is running in a productive environment (no EXX Runtime installed), and the customer wants to document the versions of all active components.

    The creation date is 07.01.2003, 12:47:00.

    In later versions the version number is inside MANIFEST.MF, but in this release there is no information concerning EXX release.

    Please, can anyone give me the correct version number (of the EXX version / release)?

    Greetings,
    Karsten


    #webMethods
    #Mainframe-Integration
    #EntireX


  • 2.  RE: EntireX jar files Detect version number

    Posted Wed March 19, 2008 02:19 PM

    The final workaround (if nobody knows the real answer regarding this ancient stub;-) could be to ask the miniruntime component itself !
    i.e. make a java ACI prog that makes a funktion=8 (Stub version) call !

    Finn


    #EntireX
    #Mainframe-Integration
    #webMethods


  • 3.  RE: EntireX jar files Detect version number

    Posted Wed March 19, 2008 08:41 PM

    Not sure if the earlier run time jar file included this function, but you can try it:

      java com.softwareag.entirex.aci.EntireXVersion

    If your jar file is not in the classpath, just add it with the -classpath parameter:

      java -cp entxrt1.0.jar com.softwareag.entirex.aci.EntireXVersion

    #EntireX
    #webMethods
    #Mainframe-Integration