Multiple version of JRE in company..How to manage? (newbie question)

Greetings..this is a newbie question
We have 48 versions of JRE running in on XP IE6 in our company.
Some version beat up other JAVA applications.
It's a mess.
How can anyone manage this many versions?
Can we consolidate down to a few versions?
I saw some posts on changing the JRE dynamically or perhaps using a wrapper with a product from "sourceforge".
Are these viable?
Thanks in advance

We have 48 versions of JRE running in on XP IE6 in
our company.
Some version beat up other JAVA applications.
It's a mess.can you elaborate on how some versions "beat up" other apps?
How can anyone manage this many versions?you don't, each computer should periodically upgrade (IMO) but you shouldn't care. if you do, tell your users to load the latest version
Can we consolidate down to a few versions?sure
I saw some posts on changing the JRE dynamically or
perhaps using a wrapper with a product from
"sourceforge".
Are these viable?i have no idea what this is, but I have doubts about your problem, if it exists at all

Similar Messages

  • My computer says I cannot use icloud because I have multiple versions of outlook installed. How do I find out which versions are installed and how do I decide which one to delete?

    My computer states that I have multiple versions of outlook installed and that i cannot use icloud. How d if find out which versions are installed and which ne to delete without interrupting the other?

    That's a Windows/Office problem. You should ask in the Microsoft support forums.

  • Multiple Version of JRE

    I think many people have asked this question, but all solution that I can find do not solve my problem.
    I have 2 applications, app A needs JRE1.6 and the app B needs 1.3.0_2. After I installed app A with JRE1.6, app B crashs with "IHYAXMLWriter no implemented in this version" exception after started.
    I tried to disable using jre1.6 for applet in IE Tools->Internet Options ->Advance menu, disable jre1.6 in Java control panel, and enable jre1.3 in jre 1.3 control panel. However, evertime when I try to run app B, IE still uses JRE1.6 and crashes (I can tell because I enabled the Java Console).
    Does anyone know how to solve this?
    Thanks very much!

    flounder wrote:
    DrLaszloJamf wrote:
    ChuckBing wrote:
    This document [Deploying Java Applets With Family JRE Versions in Java Plug-in for Internet Explorer|http://java.sun.com/javase/6/webnotes/family-clsid.html] has solutions - but you may not like what you have to do.
    Let's see: blah. blah, blah, sailor suit, blah, blah, blah, unpleasant ointment, blah, blah...
    Don't forget the goat!No! Not the goat!

  • Multiple users on a network share: how to manage versions, prevent overwriting?

    Setting up file shares on a Mini Server with 10.8 server.
    How can a group of users share access to a volume, while managing versions of a file (other than saving with a new file name) and preventing two users editing a file simultaneously and overwriting each other's work?

    Bridge determine if an image has cache by scanning local database in the local user data folder.
    You can try enabling export local cache. This might also meet your request.
    1) Open Edit > Preference dialog.
    2) Select Cache section.
    3) Check Automatically Export Cache To Folders When Possible.
    This will export cache to the folder where the images stay in. And Bridge will automatically import this cache to central cache when a new user access to this folder.

  • Calculated values: how to? Newbie question

    Hi,
    I have a view object with attributes X and Y (both numbers). How can I add a computed attribute (X*Y) ?
    I tried to
    - do "New" attribute in View Object wizard"
    - then set flag Queriable to false
    - remove that attribute from the SQL query
    - edit the code of the method getX*Y() to return getX().multiply(getY());
    but It doesn't work. I get an error (oracle.jbo.DMLException) JBO-26080: Error while selecting entity for Poste
    ----- LEVEL 1: DETAIL 0 -----
    (java.sql.SQLException) ORA-00904: "AMOUNT_TOTAL" : invalid identifier
    => My questions are
    1) How can I add a computed attribute on a view so it will work
    2) I have a master and a detail view object. I want the master to have an attribute getAverage() computed on the detail row set. If I override the get() method in the master view object, how can I get the detail rows so I can compute it ?
    The computing of these attributes are actually a little trickier than just a multiply operation. That's why I don't want to do it via a select sum().. or select avg(..).
    Help much appreciated.
    Rodolphe -

    When you build a view link, you have an option to generate accessor (see the 'View Link Properties' panel on the View Link wizard).
    You can also set the accessor name. The default is to generate an accessor to traverse from the master to detail.
    When you call this accessor, it will return an oracle.jbo.RowIterator. Using that, you can traverse through rows in the detail. For example:
    // This is on DeptView
    public BigDecimal getAverageSal()
       // Get Emp's that belong to this Dept.
       // 'EmpView' is the view link accessor name.
       oracle.jbo.RowIterator iter = (oracle.jbo.RowIterator) getAttribute("EmpView");
       oracle.jbo.Row rowDetail;
       float salTot = 0.0;
       int count = 0;
       while ((rowDetail = iter.next()) != null)
          int sal = ((Integer) rowDetail.getAttribute("Salary")).intValue();
          salTot += sal;
          count++;
       if (count == 0) return new BigDecimal((double) 0.0);
       return new BigDecimal((double) (salTot / count));
    }Thanks.
    Sung

  • How to change the default JRE when there are several version of JRE in Sys

    How to change the default JRE when there are several version of JRE in System?
    i have installed j2sdk1.5.0 then installed j2ee1.4,then installed Weblogic6.1 which use jdk1.3
    Now the JRE is jdk1.3\bin
    When run class that was compiled with jdk1.5,throw:
    java.lang.UnsupportedClassVersionError
    How can i change the jre to 1.5?

    There is a workaround to move from 1.5 version to the older 1.4 version. But this could be specific to the browser setting the JRE version.
    Excerpts from sun docs:
    However, a user can still run older versions. To do so, launch the Java Plug-in Control Panel for the older version, then (re)select the browser in the Browser tab.
    Example:
    Assume you are running on Microsoft Windows with Microsoft Internet Explorer, have first installed version 1.4.2, then version 5.0, and you want to run 1.4.2.
    Go to the j2re1.4.2\bin directory where JRE 1.4.2 was installed. On a Windows default installation, this would be here: C:\Program Files\Java\j2re1.4.2\bin
    Double-click the jpicpl32.exe file located there. It will launch the control panel for 1.4.2.
    Select the Browser tab. Microsoft Internet Explorer might still appear to be set (checked). However, when 5.0 was installed, the registration of the 1.4.2 JRE with Internet Explorer was overwritten by the 5.0 JRE.
    If Microsoft Internet Explorer is shown as checked, uncheck it and click Apply. You will see a confirmation dialog stating that browser settings have changed.
    Check Microsoft Internet Explorer and click Apply. You should see a confirmation dialog.
    Restart the browser. It should now use the 1.4.2 JRE for conventional APPLET tags.
    Details are here
    http://java.sun.com/j2se/1.5.0/docs/guide/deployment/deployment-guide/jcp.html
    My system (Windows XP) has the version 1.5_09 set as the default. However i just installed JRE 1.5_06 and would like to revert back to _06 as the default JRE..
    Will update if i find more information

  • Solaris 11 IPS:  How do you post multiple versions of the same package?

    How do you post multiple versions of the same software package on a single IPS instance(port)? Oracle was able to do it here with versions 151 and 175 of S11:
    http://pkg.oracle.com/solaris/release/
    Unfortunately, based on my searches, no where in the documentation (http://www.oracle.com/technetwork/server-storage/solaris11/technologies/ips-323421.html) does it explain to the development community how this is done. The best I can do is create pkg repo instances on different ports to host each different software version.
    We are trying to deploy an IPS repository for our drivers and utilities that our customers can link to and pull updates from. We have been able to post a software package to the repository using the command:
    pkgsend publish -s http://localhost:1234 -d ./ Appv1.p5m
    This posts the package on the IPS repository instance at port 1234 on the server. However, we would like to post multiple versions of the package on the server at the same URL. Why the same URL? So that our customers and end-users need only point to a single URL to pull down our software rather than having to add a new URL to the publisher list each time we have an update. We want at least 5 of the previous software versions to be available on the server. Posting each version of the application or driver on a different IPS instance on a different port will require customers to add multiple URLs to their publisher list and they also will not be able to initiate remote scans for updates.
    Has anybody been able to do this? Is any documentation forthcoming?
    Edited by: user13489824 on Jun 25, 2012 10:17 AM

    dhduvall: Thanks for your response. Yes, one would think that as long as the version numbers are different, you should be able to accumulate multiple versions of a package in a repository. It looks like Oracle has done it in their S11 repository unfortunately, as far as I know, they have not shared the steps on how to do this. I would like to publish two versions of the same package. I.E. two different manifests with two different fmri.pkg version strings and two different binaries.
    If I publish one package after another like this:
    pkgsend publish -s http://localhost:1234 Appv1.p5m
    pkgsend publish -s http://localhost:1234 Appv2.p5m
    Then only the second package shows up in the repository, as if it over-wrote the first one.
    Running pkgsend with two manifest, like this:
    pkgsend publish -s http://localhost:1234 Appv1.p5m Appv2.p5m
    Will cause pkgsend to combine the packages and manifests as if they were a single package... not what I am trying to do.
    Both approaches are complete without errors but neither achieves what I am trying to do.
    alan.pae: Thank you. Unfortunately, the link didn't really help. I've read Oracle's white papers and IPS developer guide so I'm familiar with the topics covered.
    Lex: Yes, I know. I specified the versions in the pkg.fmri value string.

  • How can I create multiple versions of a video within the same project?

    OK...this is a probably a very basic question but I'm not sure how to word it clearly.
    How can I create multiple versions of a video within the same project? What I mean is that I have a bout 50 minutes of video and I want to make two DVDs using different clips from this original 50 minutes of footage. It would be a real pain to have to re-import the video AGAIN for the second DVD. I suppose I could drop anything I don't want to burn to DVD back into the clips pane but that would wipe out all my transitions wouldn't it? I want to save each project in their “raw” form so I can burn additional DVDs later otherwise I would just do them one at a time and not care about one of them being destroyed.
    Wow...that was a mess. Does anyone understand what the heck I’m asking? I hope so.

    How can I create multiple versions of a video within the same project?
    You can't. You make separate projects using the same or different clips, segments, transitions, titles, etc. You can even duplicate the first project and then modify/make the desired changes in the duplicated project. Each project can then be burned as a different DVD or as different titles on the same DVD if there is enough room.

  • How do I have multiple versions of the same .chm?

    Our developers recently were required to make changes to an earlier version of our software (thank goodness for backups). So I'm having to revert to that earlier version, make changes, and create a revised .chm. HOWEVER, I already had completed the upcoming release's .chm and don't want to lose all of those changes. To make matters more complicated, I also have requests for changes to the Help for the future release.
    So, how does everyone have multiple versions of the .chm on their system at the same time and keep them separate, yet compile the right files with the right version? I had thought I could just create a new folder with the files that changed for the various versions, but updating them in Word 2007 is not a pretty proposition. I'll then have to import them in and replace the "old" ones. There has to be an easier way! I'm sure other people do this on a regular basis, but this is the first time I've had to go back a version, maintain the next version, and start work on a yet-to-be-released version all at the same time.

    It never ceases to amaze me how questions on the forum are like buses, none for an hour then three come along. Not your fault but this was asked just a couple of days ago.
    When your developers issue a new version you need to save a copy of the source, we just zip it up. Then you carry on editing for the next version and zip that up and go again.
    Then when a change is required to an older version, you dig it up, amend it and zip it again.
    Not sure how it works with source control. The above is easier and reliable, assuming you manage it tightly.
    See www.grainge.org for RoboHelp and Authoring tips

  • How can i create multiple versions of a photo in ios8?

    I Often want to create different versions of the same photo....with different crops, contrast, etc and keep them.  In iPhoto, that was done with the duplicate command, but there does not seem to be the same capability in ios8.  Any ideas?

    How can I create multiple versions of a video within the same project?
    You can't. You make separate projects using the same or different clips, segments, transitions, titles, etc. You can even duplicate the first project and then modify/make the desired changes in the duplicated project. Each project can then be burned as a different DVD or as different titles on the same DVD if there is enough room.

  • Actual and Plan Versions annual view - Multiple versions per company code

    Good Day,
    Iu2019m creating an FI-CO query with an annual view of both Actuals and Plan Values, which uses period and version as input values. The dilemma is around the plan versions which are hardcoded per company codes (eg. 1 Company Code = versions 501 u2013 512)
    Can anyone suggest a possible solutions as normally there is only one version used for planning but in this instance there are multiple versions per Company Code.
    Currently the report is hardcoded for one Company Code and going forward it should cater for more than one(Company Company* 12 Version)
    Kind Regards

    Remove restriction on comp code. There could be 2 models.
    1. Include comp code, value type and version in the rows. This way you get multiple records for a comp code. One record for actual data and one record each for plan versions. To have this model at the query, the data model in the cube also should be in this way (what we call as the account model), multiple records differentiated into actual/plan by valuetype and different versions by version.
    2. Include comp code in rows. Create selections, one for actuals (restrict with key fig and value type 10, actuals), one for each plan versions (restrict key fig with value type 20, version 501. Create one selection for each version this way). This way we have one record per comp code with diff key fig for actual and plan versions. We call this as key fig model. To have this model at the query, the data model in the cube could be account model or key fig model. If it is key fig model then no need of selections. The key fig could be taken directly from the cube.

  • How to find out if I am using a 32 bits or 64 bits version of JRE?

    How to find out if I am using a 32 bits or 64 bits version of JRE?
    If I have 2 instances of Java installed in 2 seperate directories, one 32 bits and other 64 bits on Linux. How do I identify which directory holds which version?
    Is there any command that can output this info?
    Regards,
    Billamama

    With a Sun JDK or JRE, you can use java -version:
    $ java -version
    java version "1.6.0"
    Java(TM) SE Runtime Environment (build 1.6.0-b105)
    Java HotSpot(TM) Server VM (build 1.6.0-b105, mixed mode)
    ... switch to the 64-bit JDK ...
    $ java -version
    java version "1.6.0"
    Java(TM) SE Runtime Environment (build 1.6.0-b105)
    Java HotSpot(TM) 64-Bit Server VM (build 1.6.0-b105, mixed mode)
    The last line says "64-Bit."

  • HT5361 Why is that when I am composing a new message do I end up with multiple versions of my message I am composing up in my Google Trash mailbox?  How can I stop this from happening?

    Why is that when I am composing a new message do I end up with multiple versions of my message I am composing up in my Google Trash mailbox?  How can I stop this from happening?

    It was very hard to see what the box says because the message displays for less than one second. However, I was able to record it with my iphone and pause it until I got a shot of the message. The box says the following:
    "Do you want the application “java” to accept incoming network connections?
    Clicking deny may limit the application’s behavior. This setting can be changed in the Firewall pane of Security preferences."
    I did make some changes. I will see if it works.
    Thank you!!!

  • HT5925 I am trying to send data from my computer to my ipad, how do i do this if icloud says I cannot use it as I have multiple versions of outlook

    I am trying to send data from my computer to my ipad, how do i do this if icloud says I cannot use it as I have multiple versions of outlook

    Have you had more than one version of Outlook?

  • In windows how do we install and activite multiple versions of tuxedo at the same time ?

    Hi All,
    In windows how do we install and activate multiple versions of tuxedo at the same time ?
    Advance wishes

    You can run different versions of Tuxedo on the same server, as long as they are installed in different directories.
    See PeopleTools 8.53 installation manual Task 3-1: Installing Oracle Tuxedo
    You can install Oracle Tuxedo once for each release on a machine, regardless of the number of PeopleSoft
    applications or databases the server supports. For example, if you are a PeopleSoft 9.1 customer and have
    Oracle Tuxedo 6.5 installed, you may install Oracle Tuxedo 6.5 and Oracle Tuxedo 11gR1 on the same
    machine in separate directories. For example:
    On Windows, you may install into C:\oracle\tuxedo11gR1_VS2010 and C:\tux65.
    On UNIX, you may install into /home/oracle/tuxedo11gR1 and /prod/tuxedo/6.5.
    E-TUX: Can Multiple Versions of Tuxedo Coexist on One Physical UNIX or Linux Server? (Doc ID 607828.1)

Maybe you are looking for

  • In  sale sorder based production order can i consume unrestirced stock

    HI,      i am creating Production order using co08 with respect to sales order.the ( bom items)components to be cosumend for that production order should be sales order stock compulsory. if i want to consume against sales order how can i consume stoc

  • Block creation of new line item in SO

    Hi, Scenario: In the sales order, the order quantity of line item 10 is 10pcs, only 5pcs is shipped. I want to allow the remaining 5pcs to be able to ship at some other time. However, no modification is allowed in the order quantity of this line item

  • How to do when re-install an instance of RAC

    Hi all, We have a RAC system with two nodes, using ASM, Oracle database 10gR2 (10.2.0.40), OS: RHEL 4U6. Now one node in this system down because of hardware problems. We shutdown this node, whole this system is currently running on another healthy n

  • How to create a status bar in Forms 6i

    Hi, I am using Forms6i. I am calling a C application which takes some time to execute...So I would like to display a status bar in forms saying....Processing..Please Wait... And, once the control comes back to forms from the C program, this status sh

  • Free Upgrade to CS6 with Purchase of CS5.5

    In case anyone is considering moving to CS5.5 now would be a good time. Any CS5.5 purchase now gets a free upgrade to CS6 when it ships. Bob