Version check of JRE in app

Hi,
I want my application(not web-based or whatever) to know which version of JRE the client is using.
The thing is, I know it's with System.getProperty("java.version"), but I want to compare it with another version string in the application. The user JRE version must be equal or greater than the version.
For ex: if the application was build with 1.4.0_01 and the user has 1.4.1_01, it must be accepted, but not if it's 1.3.x or whatever.
I've done a temporary method with a string tokenizer to evaluate each number and see if it's up to date, but is there a method or utility already there that checks if the version is equal or better?
Thx
Frank

i just have the same kind of problem. even more so, since i noticed that there are possibly more non-numeric characters in the version string, like "1.4.0-beta3", so even using a StringTokenizer splitting the string by the "." and "_" characters (like i think you do, from the example in your posting), the last part would cause a NumberFormatException in many cases.
of course you could include the "-" character in the tokenizer and drop the last token, but you can never be sure if there won't be version strings like "1.5.2b" or such in the future. a workaround here would be taking each character from the token, check if it's a number, add it to another string if so, or stop if it's a non-numeric character or the end of the string. then you could transform the constructed string into an integer and compare it to the corresponding part of the required version.
however, this seems to be quite a lot of not too elegant trickery which i'm not even sure will work in all cases, and it's definitely too much work for a simple version check. anyway, i haven't found any other way yet, too :/ if anyone knows, please let me know...

Similar Messages

  • Version Checking Methods for JRE

    Hi,
    I am trying to ascertain how the version checking mechanisms for JRE interoperate. I am aware of 2 methods that Java/JRE uses to check the Client Version JRE
    Method 1 – Non Static Version Checking on the JRE Client Side
    Method 2 – Class ID Version Checking on the Web Server Side
    Q1. If a JRE Client connects to a Web Server that requires a specific version of JRE, then the client pc will be prompted to download that JRE version ?
    Q2. However if the client already has a later JRE version installed and Non Static Versioning is enabled on the client, then the later JRE version will be used ? I presume in this case the client is not prompted to download JRE ?
    Q3. Alternatively if the appsweb.cfg on the Web Server is using a Family CLSID ( or even a Dynamic CLSID for that matter ) and the Client already has installed a JRE version in that class, again I presume the Client will use this and the client will not be prompted to download JRE ?
    Q4. Does anyone know where the latest Class Id’s for the various JRE versions are listed ? Oracle Note 290807.1 seems to list them. However the link it has to the latest JRE version points you to JRE 1.8.0_40, yet the Class Ids that the same note lists, does not go as far as that version ( it seems to only list up to JRE 1.8.0_31 ). I presume you could guess the Clas Id for Update 40, given the entries for the other versions i.e.
    clsid : CAFEEFAC-0018-000-0040-ABCDEFFEBCBA
    sun_plugin_version=1.8.0_40
    Is the above correct ?
    Any advice greatly appreciated,
    Jim

    Sounds exactly like a dns timeout issue.

  • Where can I download old version of adobe connect mobile app?

    We are using old version of Adobe connect Pro (version <7.5)
    The recent version of Adobe connect mobile app does not work with our server.
    I want to get old version of  adobe connect mobile app.
    Thanks,
    JD Park

    If you are producing software how do you detect the Firefox version and show whether or not it is compatible ? You may be interested in http://hacks.mozilla.org/2012/01/firefox-goes-2-digit-time-to-check-your-ua-sniffing-scripts/
    If you are, or your clients are in a corporate environment there is a possibility that Firefox ESR will be in use.
    * https://wiki.mozilla.org/Enterprise#How_to_Participate_and_Post
    * http://www.mozilla.org/en-US/firefox/organizations/
    My understanding is that ESR has been brought out primarily to deal with this sort of problem ensuring software may be certified in an enterprise, and does not change as often (so it will remain as Firefox 10 with point releases for a while).

  • JVM version check -version:1.4* does not always work

    Jdk1.5 (and later 1.4.2) has a version checking feature in java -version: flag.
    i.e.,
    [ronnc@bill ronnc]$ java -version:1.4.2_05-b04 -version
    java version "1.4.2_05"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_05-b04)
    Java HotSpot(TM) Client VM (build 1.4.2_05-b04, mixed mode)
    [ronnc@bill ronnc]$ java -version:1.4* -version
    java version "1.4.2_05"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_05-b04)
    Java HotSpot(TM) Client VM (build 1.4.2_05-b04, mixed mode)
    I have this working on some machine but on several machine it just refuses to work in a very perculia way.
    [builder@apollo builder]$ java -version:1.4.2_05-b04 -version
    java version "1.4.2_05"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_05-b04)
    Java HotSpot(TM) Client VM (build 1.4.2_05-b04, mixed mode)
    [builder@apollo builder]$ java -version:1.4* -version
    Unable to locate JRE meeting specification "1.4*"
    I've looked into the launcher source code (it checks version info from dir name or jre/RELEASE file) and I think i've setup everything right still having trouble understanding why it doesn't work on some machine. It seems to me that acceptable_release() function doesn't return correctly.
    Anyone have any idea why? Also does anyone know how I can get the source to libjvm.so so that I can look at what it's doing.
    rOnn c.

    It's not documented anywhere except from the command line help
    [ronnc@bill ronnc]$ java -showversion
    java version "1.4.2_05"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_05-b04)
    Java HotSpot(TM) Client VM (build 1.4.2_05-b04, mixed mode)
    Usage: java [-options] class [args...]
    (to execute a class)
    or java [-options] -jar jarfile [args...]
    (to execute a jar file)
    where options include:
    -client to select the "client" VM
    -server to select the "server" VM
    -hotspot is a synonym for the "client" VM [deprecated]
    The default VM is client.
    -cp <class search path of directories and zip/jar files>
    -classpath <class search path of directories and zip/jar files>
    A : separated list of directories, JAR archives,
    and ZIP archives to search for class files.
    -D<name>=<value>
    set a system property
    -verbose[:class|gc|jni]
    enable verbose output
    -version print product version and exit
    -version:<value>
    require the specified version to run
    -showversion print product version and continue
    -jre-restrict-search | -jre-no-restrict-search
    include/exclude user private JREs in the version search
    -? -help print this help message
    -X print help on non-standard options
    -ea[:<packagename>...|:<classname>]
    -enableassertions[:<packagename>...|:<classname>]
    enable assertions
    -da[:<packagename>...|:<classname>]
    -disableassertions[:<packagename>...|:<classname>]
    disable assertions
    -esa | -enablesystemassertions
    enable system assertions
    -dsa | -disablesystemassertions
    disable system assertions
    Do you see -version:<value> ? I've done my research please do yours.

  • IE not paying attention to version checking in JWS

    I have an application which requires Java 1.6.0_10 or later, and I have the following JNLP:
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+"
         codebase="http://pebbleit.hope.edu/game"
         href="HCG-Applet.jnlp">
        <information>
            <title>Pebble It</title>
            <vendor>HCG Group/Hope College</vendor>
        </information>
        <resources>
            <!-- Application Resources -->
            <j2se version="1.6.0_10+"
                  href="http://java.sun.com/products/autodl/j2se" />
            <jar href="hcg.jar" main="true" />
            <jar href="miglayout-swing.jar" main="false"/>
              <property name="jnlp.packEnabled" value="true"/>
        </resources>
         <applet-desc main-class="cusack.hcg.gui.TheApplet"
         name="Pebble It"
         width = "800"
         height = "600">
         </applet-desc>
    </jnlp>And the following code to launch it:
    <script src="http://www.java.com/js/deployJava.js"></script>
    <script>
    // using JavaScript to get location of JNLP file relative to HTML page
    var dir = location.href.substring(0, location.href.lastIndexOf('/')+1);
    deployJava.launchButtonPNG='http://pebbleit.hope.edu/images/Pebble_Button.gif';
    var url = dir + "game/HCG-Applet.jnlp";
    deployJava.createWebStartLaunchButton(url, '1.6.0_10+');
    </script>In Firefox, the version checking works and it updates Java as needed.
    In IE 8 (perhaps all IE), it does NOT check this, but tries to run it anyway. I was not totally suprised (but still irritated) when it did this with Java 1.6.0_7 installed since the documentation mentions that some browsers do not check the minor revision, but when I just tried it with Java 5.0 update 19, I was kind of shocked. It downloads the jarfile and tries but fails to run it (of course it fails!).
    So, is there something wrong with my files?
    Thanks.
    EDIT: Well, I just tried with Firefox on a machine and it did the same thing. Strange. I KNOW in the past it did it correctly with Firefox. So now I suspect I introduced an error somewhere--Anything obvious in my files?
    Edited by: WhyNotFerzle on Mar 27, 2010 1:04 PM
    Another EDIT: I am starting to suspect that something is getting cached in some unknown location. I have done several tests using the machine in question, and I know it USED to update properly on that machine. This morning I deleted all new version of Java until I only had Java 5.0 update 19, and it now fails on both IE and Firefox--running JWS 5.0 and failing to load (obviously because the code is Java 6). So I am wondering if since it ran once, it is no longer doing the check properly, somehow storing information somewhere that it has the proper Java. Is this possible? I have tried clearing the JWS cache, and that didn't seem to help. I am baffled.
    Edited by: WhyNotFerzle on Mar 27, 2010 1:08 PM

    greencosmos wrote:
    Hi, for the exact version check and update of JRE I actually do not know much.
    Here's link for version checking and auto update.
    http://java.sun.com/javase/6/docs/technotes/guides/javaws/developersguide/launch.html#creating
    Hope this could be some help.The top of that page indicates that the information on it is out of date.
    In any case, I have read and reread the documentation I can find about JWS, and it is inconsistent. Some pages claim that if the Java version does not meet the minimum requirement, it will redirect to the download page. Other pages claim it will automatically download it. As I have outlined above, it seems to do one or the other on different machines for no discernible reason.
    I even looked at the source code for createWebStartLaunchButton:
         * Outputs a launch button for the specified JNLP URL.  When clicked, the
         * button will ensure that an appropriate JRE is installed and then launch
         * the JNLP application.  minimumVersion is of the form #[.#[.#[_#]]], and
         * is the minimum JRE version necessary to run this JNLP application. 
         * minimumVersion is optional, and if it is not specified, '1.4.2'
         * will be used.
         * If an appropriate JRE or Web Start installation is detected,
         * the JNLP application will be launched, otherwise installLatestJRE()
         * will be called.
         * After installLatestJRE() is called, the script will attempt to detect
         * that the JRE installation has completed and launch the JNLP application,
         * but there are circumstances (such as when the JRE installation
         * requires a browser restart) when this cannot be fulfilled.
        createWebStartLaunchButton: function(jnlp, minimumVersion) {
            if (deployJava.returnPage == null) {
                // if there is an install, come back and run the jnlp file
                deployJava.returnPage = jnlp;
            var url = 'javascript:' +
                      'if (!deployJava.isWebStartInstalled("' +
                          minimumVersion + '")) {' +
                          'if (deployJava.installLatestJRE()) {' +
                            'if (deployJava.launch("' + jnlp + '")) {}' +
                          '}' +
                      '} else {' +
                          'if (deployJava.launch("' + jnlp + '")) {}' +
            document.write('<' + 'a href="' + url +
                           '" onMouseOver="window.status=\'\'; ' +
                           'return true;"><' + 'img ' +
                           'src="' + deployJava.launchButtonPNG + '" ' +
                           'border="0" /><' + '/' + 'a' + '>');
        },It clearly says in the documentation and can be seen in the code that it is supposed to automatically install the latest JRE.
    So, why isn't it doing this consistently?
    A further look at the file may help--the documentation for installLatestJRE:
         * Triggers a JRE installation.  The exact effect of triggering an
         * installation varies based on platform, browser, and if the
         * Deployment Toolkit plugin is installed.
         * In the simplest case, the browser window will be redirected to the
         * java.com JRE installation page, and (if possible) a redirect back to
         * the current URL upon successful installation.  The return redirect is
         * not always possible, as the JRE installation may require the browser to
         * be restarted.
         * In the best case (when the Deployment Toolkit plugin is present), this
         * function will immediately cause a progress dialog to be displayed
         * as the JRE is downloaded and installed.
         */So apparently if the Deployment Toolkit plugin is not present, it redirects. What is the Deployment Toolkit plugin? The script that calls the function is called the Deployment Toolkit script. Are these different things?
    Seriously, why is this so difficult? All I want is for the JRE to update when needed if a user clicks the launch button. I do not know who thought just automatically redirecting to the download page was a good idea as a fallback, but it is very confusing to people. ("Java? What's Java? I don't want to download Java. I clicked on a button to play Pebble It. This must be a virus or something. I guess I'll go do something else."). At least it could pop up a window saying "You need a newer version of Java in order to run this. Do you want to download it now?"
    In any case, doesn't ANYBODY know how to make this work properly? What should boil down to 1 line of code is taking me HOURS to figure out!
    By the way, I'd add Duke Dollars, but the option isn't showing up. I must not have anymore.

  • AutoPatch version checking issue.

    Hi,
    I am applying the patch using adpatch utility, and getting following error.
    Please advise.
    APPS:12.0.6
    Os: Linux
    Performing version checking...
    Cannot open patch file:
    /d01/oracle/SILP_8017/apps/apps_st/appl/ad/12.0.0/bin/bom/forms/US/CSTFELCU.fmb
    Error occurred in version checking.
    See above error messages or AutoPatch log file for details.
    Exiting AutoPatch...
    Freeing includes hash table
    Freeing fixes hash table
    Freeing basedons hash table
    Freeing entities hash table
    You should check the file
    /d01/oracle/SILP_8017/apps/apps_st/appl/admin/SILP17/log/adpatch.log
    for errors.
    Thanks,

    Hi;
    Performing version checking...
    Cannot open patch file:
    /d01/oracle/SILP_8017/apps/apps_st/appl/ad/12.0.0/bin/bom/forms/US/CSTFELCU.fmbYour applmgr user has permission on this path?If no give the permission right and retest
    If you have right permisson then please check log file for error details.
    You should check the file
    /d01/oracle/SILP_8017/apps/apps_st/appl/admin/SILP17/log/adpatch.logRegards
    Helios

  • Opatch version  check failed

    Hi,
    I am applying patch on 11.2.0.1 grid infrastructure . i am getting following error.. Please help on this
    [root@vm14 9655006]# opatch auto /home/oracle/9655006 -oh /u01/app/11.2.0/grid
    Executing /usr/bin/perl /u01/app/11.2.0/grid/OPatch/crs/patch112.pl -patchdir /home/oracle -patchn 9655006 -oh /u01/app/11.2.0/grid -paramfile /u01/app/11.2.0/grid/crs/install/crsconfig_params
    opatch auto log file location is /u01/app/11.2.0/grid/OPatch/crs/../../cfgtoollogs/opatchauto2012-02-23_19-45-31.log
    Detected Oracle Clusterware install
    Using configuration parameter file: /u01/app/11.2.0/grid/crs/install/crsconfig_params
    OPatch is bundled with OCM, Enter the absolute OCM response file path:
    /u01/app/11.2.0/grid/OPatch/ocm.rsp
    Enter 'yes' if you have unzipped this patch to an empty directory to proceed  (yes/no):yes
    The opatch minimum version  check for patch /home/oracle/9655006/custom failed  for /u01/app/11.2.0/grid
    The opatch minimum version  check for patch /home/oracle/9655006/etc failed  for /u01/app/11.2.0/grid
    The opatch minimum version  check for patch /home/oracle/9655006/files failed  for /u01/app/11.2.0/grid
    Opatch version check failed for oracle home  /u01/app/11.2.0/grid
    Opatch version  check failed
    update the opatch version for the failed homes and retry
    [root@vm14 9655006]# opatch version -oh /u01/app/11.2.0/grid
    OPatch Version: 11.2.0.1.9
    OPatch succeeded.

    Hi;
    Use opatch version and compare version wiht requested version which is mention in patch's read me pre-req part. If you need newer version than you need to apply lasted Opatch version which is again mention in read me part of patch
    So please reread your patch's read me part :)
    Regard
    Helios

  • Portal logon app is older version than the standard logon app

    HI guys,
    My trace files are full of below error:
    This constructor should not be used by portal component. Probably the issue is that the portal logon app is
    older version than the standard logon app.
    How to resolve this..
    Regards,
    Urbane

    Dear Urbane,
    Hope you are doing good.
    Hope the link mentioned earlier helps. If the issue persists, do the below:
    1)
    Set the parameters back to the state they were after installation. This will synchronise the configurations with the default SAP
    settings and restart the cluster. Check sap note; 1589548.
    2)
    If the logs are still populated with the portal logon app error, then do a force deployment of the latest patch for EPBC2 component as this patch should resolve the issue.
    Thank you and have a nice day :).
    Kind Regards,
    Hemanth
    SAP AGS

  • Is there a way to get a version of the Garage Band app that runs on version 5.1.1?  I have an iPad 1 and can't get any higher iOS.  The App store is telling me that Garage Band only runs on iOS 7.

    Is there a way to get a version of the Garage Band app that runs on version 5.1.1?  I have an iPad 1 and can't get any higher iOS.  The App store is telling me that Garage Band only runs on iOS 7.

    Unfortunately the answer is still no.

  • Since I downloaded the latest version of iTunes, my remote app on iPhone and iPad does not connect to iTunes library... Any ideas?

    Since I downloaded the latest version of iTunes, my remote app on iPad and iPhone does not recognise ,or connect to, my iTunes library... Any ideas ?

    Hi Pittgo76,
    If you appear to missing your iTunes library after a recent update, you may find the following article helpful:
    Apple Support: No content shows up in iTunes after updating
    http://support.apple.com/kb/ts1967
    Regards,
    - Brenden

  • How can i check the office web app server(wac client) is calling custom WOPI host?

    I am getting an error when I testing my wopi host(which is the same as
    example) with Office Web app server "Sorry, there was a problem and we can't open this document.  If this happens again, try opening the document in Microsoft Word."
    1-how can find the log files of this error?
    2-how can i check the office web app server(wac client) is calling my WOPI host?
    I am not sure about cumunication between owa to wopi host. I actually dont know how to implement checkfile and getfile functions to wopi host for waiting for call back from owa client.
    Note:I am sure that office web app server is configured true. Because i test it with sharepoint 2013 and editing and viewing is working well.

    Hi,
    According to your post, my understanding is that
    CheckFileInfo is how the WOPI application gets information about the file and the permissions a user has on the file. It should have a URL that looks like this:
    HTTP://server/<...>/wopi*/files/<id>?access_token=<token>
    While CheckFileInfo provides information about a file, GetFile returns the file itself. It should have a URL that looks like this:
    HTTP://server/<...>/wopi*/files/<id>/contents?access_token=<token>
    There is a great article for your reference.
    http://blogs.msdn.com/b/officedevdocs/archive/2013/03/20/introducing-wopi.aspx
    You can also refer to the following article which is about building an Office Web Apps(OWA) WOPI Host.
    http://blogs.msdn.com/b/scicoria/archive/2013/07/22/building-an-office-web-apps-owa-wopi-host.aspx
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Suddenly started receiving a error message when checking for updates in app store nsurlerrordomain error - 1012 how to fix?

    Suddenly started receiving a error message when checking for updates in app store nsurlerrordomain error - 1012 how to fix?

    Thanks Linc I will sit tight for a while to see what happens before chasing up customer service.  Cheers.

  • I used to send photos from my Lumix Tz-40 camera directly to my iPad using the cameras WIFI. Since I installed IOS7 the connection no longer works. Anyone got any ideas. I have already installed the latest version of Panasonic's Image App (1.7.1)

    I used to send photos from my Lumix Tz-40 camera directly to my iPad using the camera's WIFI. It was all working well until I installed IOS7.  The connection no longer works. The camera still keeps the iPad in its connection history. The camera's wifi network still appears when I select a WiFi network from the iPad but the Wifi status icon never appears on the iPad. So the connection is never made.
    Anyone got any ideas. I have already installed the latest version of Panasonic's Image App (1.7.1)

    Hi there,
    You're running an old version of Safari. Before troubleshooting, try updating it to the latest version: 6.0. You can do this by clicking the Apple logo in the top left, then clicking Software update.
    You can also update to the latest version of OS X, 10.8 Mountain Lion, from the Mac App Store for $19.99, which will automatically install Safari 6 as well, but this isn't essential, only reccomended.
    Thanks, let me know if the update helps,
    Nathan

  • How to stop version check that happens in the background after timeout?

    Hi all,
    I have a problem that seriously makes my swing application (installed using webstart) very slow for some time.
    Steps to reproduce my problem :
    1. Deploy the jars of application in the web server running on Machine A( either in LAN or running on public IP).
    2. Download the application on Machine B using the link.
    3. Shutdown Machine A.
    4. Now try to start the application on Machine B. The starting of the application has become very slow.
    After some time(long enough) the application is started. Even now, the application is slow for first few minutes.
    Below is the part of jnlp that we used.:
    +<?xml version="1.0" encoding="utf-8"?>+
    +<jnlp spec="1.0" codebase="$$codebase" href="LaunchMyApplication.jnlp">+
    +<information>+
    +<title>My Application</title>+
    +<vendor>XYZ</vendor>+
    +<description kind="short">XXXXXXXX</description>+
    +<icon href="../../../../images/myapp_splash2009.gif" kind="splash"/>+
    +<icon href="../../../../images/myapp_logo.jpg"/>+
    +<offline-allowed/>+
    +</information>+
    +<security>+
    +<all-permissions/>+
    +</security>+
    +<resources>+
    +<property name="abc.type" value="client"/>+
    +<j2se version="1.5" initial-heap-size="48m" max-heap-size="256m"/>+
    +     +
    +     <!-- jar details -->+
    +     ...........+
    +     ..........+
    +     +
    +</resources>     +
    +<application-desc main-class="com.abc.xyz.Login">+
    +     <argument>..........</argument>+
    +</application-desc>+
    +</jnlp>+
    My assumsion is
    When I start my application, version checking will happen. But the cache server system(machine A) is not available. Due to this initial slowdown has occurred.
    After the timeout has occured, my application has started. Since the version checking continuous in the background, my application is again slow.(Even when my application server and database system are in the same LAN of my client machine).
    This slowdown is certainly not desirable.
    This slowness isn't there when there Machine A( in which my webserver is installed) is running and my webserver (Tomcat 5.0 in my case) is not started.
    Is my assumsion is correct?
    If correct, how do I stop version checking process that happens in the background after initial timeout?
    I think update check and policy attribute may not help me as I wanted to stop this background version check altogether. Also, my java sersion is 1.5_0_14.
    Please help me out in this.
    Thanks in advance..,
    Chakri.

    Talk to Apple here...
    http://www.apple.com/feedback/

  • How to remove preinstalled files of adobe photoshop from my mac mini so that i can install a new version of the same software.The previous version was removed using the app cleaner software.Could not continue installation bcoz of earlier files

    How to remove preinstalled files of adobe photoshop from my mac mini so that i can install a new version of the same software.The previous version was removed using the app cleaner software.Could not continue installation of the new version because of the existance of files from the previous version.plz help

    What "app cleaner software" ? I ask because installing Photoshop over a previous version has never been a problem. Perhaps your difficulty stems from another source, eg. "cleaner software" ?
    If you look in your hard drive, at the root level there is a Library. In there is a folder called Application Support, and in that you will find a folder called Adobe. Files from your previous version are there.
    However, I urge you to call Adobe support to make sure you are not doing anything that would mess up other Adobe applications.
    http://www.adobe.com/support/connect/connecthostedsupport.html

Maybe you are looking for

  • HP Deskjet 5550  issues-can't print but iMac definitely recognizes printer!

    I recently added my iMac to my network of PC desktop and laptop, supported by a Home Portal (router) and an Airport Express for streaming music from iTunes. Works great! With the new iMac, I cannot get any documents to print, even though the iMac rec

  • RAW files destroyed in Win to Mac copy?

    I'm trying to import raw files into LR 1.4.1 but I get an error message that "some import operations were not performed".  It worked just fine on the PC. When I bought the Mac, the Apple Store staff copied my files over to the Mac.  I have a sub-fold

  • IOS 5.0.1 update on an iPhone 4S:  "not eligible for the requested build"???

    I just connected my iPhone 4S to iTunes and clicked "update".  It downloaded the update (took about 10 minutes), and then reports:  "The iPhone could not be updated.  This device isn't eligible for the requested build." I thought the iPhone 4S was th

  • Generating an SWF using Javascript

    Has anyone had any success generating an swf using nothing but javascript. Is there a module or an API that I can tap into to accomplish this feat. Thank you for your time

  • Does Model Configurator in ID works for ProComp Interaction model

    Hi All, I am trying to simulate a scenario for process modeling.   In ESR,     1) I created two Process Component Models     2) One Process interaction model     3) Integration scenario model on top of it.     Then I am trying simulating directory ob