Java version conflict

Post Author: muthuvadugan
CA Forum: General Feedback
Hi,
I ve installed BO XI R2 in my system.
While installing I had Java 1.5 in my system.
Now for some other purposes, I uninstalled Java 1.5 and installed Java1.6.
I ve also updated the environment variables with new path and class path.
But now in my Infoview, when I click "modify" link of any of the WebI report, it gets hanged
(Especially at the stage "Building user interface")
What could be the problem?
I heard that BO does not support java versions beyond 1.4 and 1.5.
Is that true? Or what can be done for that as a solution
Thanks
MuthuVadugan

Post Author: jsanzone
CA Forum: General Feedback
MuthuVadugan,
We too are experiencing problems with Java 1.6, so our solution was to ask clients to hold off on either upgrading to 1.6 or to uninstall it and use either 1.4 or 1.5.  We've contacted Business Objects concerning this matter and have been informed that SP3 for XI R2 will be the eventual fix.  Working with our account rep, he tells us that SP3 is due out from Business Objects sometime in November.  Our service rep has told us that we could get a pre-release of SP3 sooner, however, this would be provided with no warranties implied, i.e. if it blows up our system that Business Objects will not support until post SP3 official release.  Hope this helps in understanding what's going on and your next steps.

Similar Messages

  • Java version conflict - Unable to install Eclipse

    Hi all,
    Good day,
    I have downloaded and installed Java 6 (java_ee_sdk-5_08-jdk-6u17-windows.exe)
    Still my version ( C:\java -version ) shows as 1.4.2
    java version "1.4.2_04"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_04-b05)
    Java HotSpot(TM) Client VM (build 1.4.2_04-b05, mixed mode)
    This prevents me from installing Eclipse because Eclipse requires version 1.5 or higher.
    Any help people????
    Thanks n cheers,
    George, Toronto

    kajbj wrote:
    Huh? That isn't needed. I have don't have any JDK in my path, and I don't have JAVA_HOME set. I just specify the JDK to use in my launch shortcut.You can search eclipse jdk configuration by Google.
    May be following will work
    copy this setting to "eclipse.ini' file int eclipse installtion directory
    +-vm+
    +C:\Java\JDK\1.5\bin\javaw.exe+

  • Java version conflict for LSO

    We are implementing SAP Learning Solution (LSO) 300. A requirement to use SAP's test player is to have jre 1.4.2 installed on users workstation. we have problem rolling any version of jre to the whole enterpise because we have a lot of other apps that requires different versions of java. and sun java and microsoft java may have conflict as well. we are wondering how other company handles this problem.
    Thanks
    Jane Zhou

    Hi Guys!
    From the SAP side the statement is following: use the predefined version because
    we only can support with these JRE component your LSO300.
    The Content Player, Test Player, Authoring Environment may work with a lower release as well, but we are unable to support the probable problems occured by this version difference.
    I suppose your JRE version is under 1.4.2, do I have right?
    I am sorry, that in this case I was unable to provide you a better answer
    If you need further help with this landscape (LSO300+ JRE < v1.4.2) let me know and I try to give you hints, tricks!
    Best regards,
    Zsolt

  • Conflicts on java version

    Hi,
    When I run my swing app. on windows (build prepared using ant1.7) it works fine. It also works on Mac 10.4.11 using jdk (version -- java version "1.5.0_06"Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_06-112) Java HotSpot(TM) Client VM (build 1.5.0_06-64, mixed mode, sharing)).
    Then I updated java (with current available update) running on the same Mac. Now the java version shows -- Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_13-b05-241) Java HotSpot(TM) Client VM (build 1.5.0_13-121, mixed mode, sharing).
    But after doing this, whenever I tried to run the application it crashes and produce following run time exception:--
    java.lang.NullPointerException
    at apple.awt.CWindow.initPeer(CWindow.java:122)
    at apple.awt.ComponentModel.initPeer(ComponentModel.java:72)
    at apple.awt.ContainerModel.initPeer(ContainerModel.java:37)
    at apple.awt.CWindow.initPeer(CWindow.java:54)
    at apple.awt.CFrame.create(CFrame.java:34)
    at apple.awt.CToolkit.createFrame(CToolkit.java:459)
    at java.awt.Frame.addNotify(Frame.java:491)
    at java.awt.Window.show(Window.java:514)
    at java.awt.Component.show(Component.java:1302)
    at java.awt.Component.setVisible(Component.java:1255)
    at com.oneimagesoftware.oneaccess.MainWindow.setLocation(MainWindow.java:815)
    at java.awt.Window.init(Window.java:290)
    at java.awt.Window.<init>(Window.java:319)
    at java.awt.Frame.<init>(Frame.java:419)
    at java.awt.Frame.<init>(Frame.java:384)
    at javax.swing.JFrame.<init>(JFrame.java:150)
    at com.oneimagesoftware.oneaccess.MainWindow.<init>(MainWindow.java:163)
    at com.oneimagesoftware.oneaccess.OneAccessMain.jbInit(OneAccessMain.java:192)
    at com.oneimagesoftware.oneaccess.OneAccessMain.init(OneAccessMain.java:43)
    at com.oneimagesoftware.oneaccess.OneAccessMain.main(OneAccessMain.java:240)
    Note: MainWindow.java is extending jFrame class and I think it fails due to this class.
    Please suggest how to rectify it...

    blackstallion wrote:
    Thanks for the response..
    The MainWindow Class is definded as :
    final public class MainWindow extends JFrame {
    The constructor is
    MainWindow(String appTitle) throws MissingLocaleBundleException {
    super();
    System.out.println("MainWindow call");The stack trace seems a litle bit odd to me:
    java.lang.NullPointerException
    at apple.awt.CWindow.initPeer(CWindow.java:122)
    at apple.awt.ComponentModel.initPeer(ComponentModel.java:72)
    at apple.awt.ContainerModel.initPeer(ContainerModel.java:37)
    at apple.awt.CWindow.initPeer(CWindow.java:54)
    at apple.awt.CFrame.create(CFrame.java:34)
    at apple.awt.CToolkit.createFrame(CToolkit.java:459)
    at java.awt.Frame.addNotify(Frame.java:491)
    at java.awt.Window.show(Window.java:514)
    at java.awt.Component.show(Component.java:1302)
    at java.awt.Component.setVisible(Component.java:1255)
    at com.oneimagesoftware.oneaccess.MainWindow.setLocation(MainWindow.java:815)
    at java.awt.Window.init(Window.java:290)
    at java.awt.Window.<init>(Window.java:319)
    at java.awt.Frame.<init>(Frame.java:419)
    at java.awt.Frame.<init>(Frame.java:384)
    at javax.swing.JFrame.<init>(JFrame.java:150)
    at com.oneimagesoftware.oneaccess.MainWindow.<init>(MainWindow.java:163)
    at com.oneimagesoftware.oneaccess.OneAccessMain.jbInit(OneAccessMain.java:192)
    at com.oneimagesoftware.oneaccess.OneAccessMain.init(OneAccessMain.java:43)
    at com.oneimagesoftware.oneaccess.OneAccessMain.main(OneAccessMain.java:240) Actually all went well, until the application comes to your overridden method MainWindow.setLocation() overriding the setLocation() method in class java.awt.Component. While the standard implementation usually calls the move() method, your overriding implementation calls setVisible() (after all). This happens right at the time, where your construction process is still in progress and the peer has not been established due to this fact. Although I do not know too much details about your code, I guess it might be worth trying to take out the setVisible() method from your setLocation() method and put it into your MainWindow constructor right after the call to super():
    MainWindow(String appTitle) throws MissingLocaleBundleException {
      super();
      setVisible( true );
      System.out.println("MainWindow call");
    }

  • Java version in EBS

    Hi All,
              I am planning to upgrade java version on EBS instance.Windows clients want to upgrade java to 7.
              EBS - 12.1.3
                DB - 11.2.0.3
                OS -  RHEL 5 64bit
              Please find the out put "TXK Technology Inventory Report for EBS Release 12"
    Platform
    LINUX 32-bit
    Tier
    APPS
    OS release
    2.6.18-308.el5
    HTTP Service Properties ():
    Technology Components / Properties
    Component Version/Value
    Oracle HTTP Server version
    10.1.3.4.0
    Sun JDK client version
    1.5.0_13
    JDK version on HTTP server node
    1.6.0_21
    Oracle AOLJ version
    Roll Up Patch J
    Oracle BC4J version
    10.1.3.43.6
    Oracle BiBeans version
    3.1.1.11
    Oracle HTTP client version
    10h
    Java object cache
    10.1.3
    Oracle JRAD libraries version
    10.1.3
    Oracle MDS version
    9.0.6.0.0_45
    OA Framework version
    12.1.3
    Oracle help web version
    2.0.13
    Oracle XML driver version
    10.1.3.130
    Oracle UIX version
    2_3_6_9
    JDK version used by AD utilities on HTTP node
    1.6.0_21
    Number of symbolic links found under directories served by oracle
    HTTP server
    0
    Version of OWA packages
    10.1.2.0.8
    Package OWA_MATCH exists in SYS schema
    TRUE
    OPatch version on 10.1.3 Oracle Home
    1.0.0.0.57
    OCM version on 10.1.3 Oracle Home
    Not
    Configured
    Forms Service Properties ():
    Technology Components / Properties
    Component Version/Value
    Developer 10g version
    10.1.2.3.0
    DB client (RSF) library version in 10.1.2 oracle home
    10.1.0.5.0
    Forms runtime configuration from context file
    servlet
    JDK version used by AD utilities on forms node
    1.6.0_21
    Oracle Application Server patchset version
    10.1.2.3.0
    OPatch version on 10.1.2 Oracle Home
    1.0.0.0.63
    OCM version on 10.1.2 Oracle Home
    Not Configured
    JDK version used by Developer 10g
    1.4.2_14-b05
    Concurrent Processing Service Properties
    Technology Components / Properties
    Component Version/Value
    JDK on concurrent processing node
    1.6.0_21
    JDK version used by AD utilities on CP node
    1.6.0_21
    1- Why the  Platform is showing linux 32 as this instance is running on a Linux 64 bit server   ?
    2 - The same value is showing for Database report  " Platform linux 32 "  as this instance is running on 1 Linux 64 bit server ?  Both DB and Apps running in the same server.
             a) I think Apps doesn't have 64 bit version, but I have installed DB 64 bit only.
    3 - To upgrade the java, Do I need to follow the both Notes ID as per my TXK output ?             
    Deploying  Sun JRE (Native Plug-in) for Windows Clients in Oracle E-Business Suite Release  12 (Note 393931.1)
    Upgrading OracleAS 10g Forms and Reports in Oracle E-Business Suite Release 12 (Note 437878.1)
    4 - Lots of patches are not applied as per the note 437878.1
    5 - Is it mandatory to upgrade JDK as well as per the note  " Using JDK 7.0 Latest Update with Oracle E-Business Suite Release 12.0 and 12.1 ( Doc ID 1467892.1) ?
    6 - Please suggest me on all queries and the order which I have to follow
    Please give me a clear picture .
    Thanks,
    Sal

    Thanks Hussein and ARM.
       I wan to do everything in one project.so I followed below steps. But I stuck in one place:
    1 - Upgrading OracleAS 10g Forms and Reports in Oracle E-Business Suite Release 12 and done successfully
    2 - Deploying JRE (Native Plug-in) for Windows Clients in Oracle E-Business Suite Release 12 (Doc ID 393931.1):
          Upgraded JRE plugin successfully
    3 -  Upgrade JDK to 6
              JDK to 6 [ 1.6_51]
              Using Latest Java 6.0 Update With Oracle E-Business Suite Release 12 (Doc ID 455492.1)
            Successfully completed.
    4 - Upgrade OracleAS 10g to 10.1.3.5
          Note:Upgrading to the Latest OracleAS 10g 10.1.3.x Patch Set in Oracle E-Business Suite Release 12 (Doc ID 454811.1)
          Successfully completed
    5 -  Upgrade JDK to 7u25 on both both 10.1.2 and 10.1.3 Homes
         JDK to 7 [ 1.7.25]
         Note:Using JDK 7.0 Latest Update with Oracle E-Business Suite Release 12.0 and 12.1 (Doc ID 1467892.1)
         While applying patch - 14703419, I got conflict patch with 12848228 which I hv applied during the JDK upgrade to 6. So I hv rolledback the patch 12848228 and applied the patch 14703419
        While running below
    #   cd $ORACLE_HOME/forms/lib
    #   make -f ins_forms.mk sharedlib install
    I got below error:
    /u01/oraapps/TEST/apps/tech_st/10.1.2/jdk/jre/lib/i386/server/libjvm.so: undefined reference to `pthread_cond_timedwait@GLIBC_2.3.2'
    /u01/oraapps/TEST/apps/tech_st/10.1.2/jdk/jre/lib/i386/server/libjvm.so: undefined reference to `pthread_cond_signal@GLIBC_2.3.2'
    /u01/oraapps/TEST/apps/tech_st/10.1.2/jdk/jre/lib/i386/server/libjvm.so: undefined reference to `realpath@GLIBC_2.3'
    /u01/oraapps/TEST/apps/tech_st/10.1.2/jdk/jre/lib/i386/server/libjvm.so: undefined reference to `pthread_cond_wait@GLIBC_2.3.2'
    /u01/oraapps/TEST/apps/tech_st/10.1.2/jdk/jre/lib/i386/server/libjvm.so: undefined reference to `pthread_cond_init@GLIBC_2.3.2'
    /u01/oraapps/TEST/apps/tech_st/10.1.2/jdk/jre/lib/i386/server/libjvm.so: undefined reference to `__stack_chk_fail@GLIBC_2.4'
    /u01/oraapps/TEST/apps/tech_st/10.1.2/jdk/jre/lib/i386/server/libjvm.so: undefined reference to `pthread_cond_destroy@GLIBC_2.3.2'
    collect2: ld returned 1 exit status
    make: *** [frmbld] Error 1
    Please help  me to fix the issue.
    Thanks,
    Sal

  • ERROR: Invalid java version found: while runing Autoconfig

    Hi
    while upgrading EBS 12.1.3 Database from 11.1.0.7 to 11.2.0.2
    We got the below error on autoconfig.
    F:\app\mocppd\product\11.2.0\dbhome_1\appsutil>F:\app\mocppd\product\11.2.0\dbho
    me_1\appsutil\bin\adconfig.cmd contextfile=prod_srv-moc.xml
    Enter the APPS user password: apps
    cygwin warning:
      MS-DOS style path detected: F:\app\mocppd\product\11.2.0\dbhome_1\appsutil\bin
    \adconfig.pl
      Preferred POSIX equivalent is: /cygdrive/f/app/mocppd/product/11.2.0/dbhome_1/
    appsutil/bin/adconfig.pl
      CYGWIN environment variable option "nodosfilewarning" turns off this warning.
      Consult the user's guide for more details about POSIX paths:
        http://cygwin.com/cygwin-ug-net/using.html#using-pathnames
    The log file for this session is located at: F:\app\mocppd\product\11.2.0\dbhome
    _1/appsutil/log/prod_srv-moc/02040321/adconfig.log
    AutoConfig is configuring the Database environment...
    AutoConfig will consider the custom templates if present.
            Using ORACLE_HOME location : F:\app\mocppd\product\11.2.0\dbhome_1
    ERROR: Invalid java version found:
            sh: F:appmocppdproduct11.2.0dbhome_1jdkjre/bin/java: No such file or dir
    ectory
    ERROR: Invalid java version found:
            sh: F:appmocppdproduct11.2.0dbhome_1jdkjre/bin/java: No such file or dir
    ectory
            Classpath                   :
    sh: - : invalid option
    Usage:  sh [GNU long option] [option] ...
            sh [GNU long option] [option] script-file ...
    GNU long options:
            --debug
            --debugger
            --dump-po-strings
            --dump-strings
            --help
            --init-file
            --login
            --noediting
            --noprofile
            --norc
            --posix
            --protected
            --rcfile
            --restricted
            --verbose
            --version
            --wordexp
    Shell options:
            -irsD or -c command or -O shopt_option          (invocation only)
            -abefhkmnptuvxBCHP or -o option
    Version Conflicts among development maintained and customized templates encounte
    red; aborting AutoConfig run.
    The logfile for this session is located at: F:\app\mocppd\product\11.2.0\dbhome_
    1/appsutil/log/prod_srv-moc/02040321/adconfig.logThanks
    Nawneet

    Hi Helios,
    I have changed the prod_srv-moc.xml script and executed the script.
    And now i got the below error.
    F:\app\mocppd\product\11.2.0\dbhome_1\appsutil>F:\app\mocppd\product\11.2.0\dbho
    me_1\appsutil\bin\adconfig.cmd contextfile=prod_srv-moc.xml
    Enter the APPS user password: apps
    cygwin warning:
    MS-DOS style path detected: F:\app\mocppd\product\11.2.0\dbhome_1\appsutil\bin
    \adconfig.pl
    Preferred POSIX equivalent is: /cygdrive/f/app/mocppd/product/11.2.0/dbhome_1/
    appsutil/bin/adconfig.pl
    CYGWIN environment variable option "nodosfilewarning" turns off this warning.
    Consult the user's guide for more details about POSIX paths:
    http://cygwin.com/cygwin-ug-net/using.html#using-pathnames
    The log file for this session is located at: F:/app/mocppd/product/11.2.0/dbhome
    _1/appsutil/log/prod_srv-moc/02040605/adconfig.log
    AutoConfig is configuring the Database environment...
    AutoConfig will consider the custom templates if present.
    Using ORACLE_HOME location : F:/app/mocppd/product/11.2.0/dbhome_1
    Classpath : :F:/app/mocppd/product/11.2.0/dbhome_1/jdb
    c/lib/ojdbc6.jar:F:/app/mocppd/product/11.2.0/dbhome_1/appsutil/java/xmlparserv2
    .jar:F:/app/mocppd/product/11.2.0/dbhome_1/appsutil/java:F:/app/mocppd/product/1
    1.2.0/dbhome_1/jlib/netcfg.jar:F:/app/mocppd/product/11.2.0/dbhome_1/jlib/ldapjc
    lnt11.jar
    Exception in thread "main" java.lang.NoClassDefFoundError: oracle/apps/ad/tools/
    configuration/VersionConflictListGenerator
    Caused by: java.lang.ClassNotFoundException: oracle.apps.ad.tools.configuration.
    VersionConflictListGenerator
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    Could not find the main class: oracle.apps.ad.tools.configuration.VersionConflic
    tListGenerator. Program will exit.
    ERROR: Version Conflicts utility failed.
    Terminate.
    The logfile for this session is located at: F:/app/mocppd/product/11.2.0/dbhome_
    1/appsutil/log/prod_srv-moc/02040605/adconfig.log
    Thanks
    Nawneet

  • Forms not opening - Want to update Java version

    Hi All,
    We have EBS version 12.1.3 and database version 11.2.0.2.It is working fine and end users are able to open forms with java version 6 update x. We have upgraded the EBS in Jan 2012.
    When we install java version 7, it is not opening forms and it is showing error " jinitiator version is too low....etc " . This issue is blocking to update java on our end users PC and maitain security.
    Now Oracle EBS is certified with java 7 and I have gone through some docs to fix this issue but I couldn't get a proper idea.
    My versions:
    a)Apache Version:
    $IAS_ORACLE_HOME/Apache/Apache/bin/httpd -v
    Server version: Oracle-Application-Server-10g/10.1.3.4.0 Oracle-HTTP-Server
    Server built: Jul 7 2008 14:58:00
    b)Java Version
    java version "1.6.0_21"
    Java(TM) SE Runtime Environment (build 1.6.0_21-b06)
    Java HotSpot(TM) Server VM (build 17.0-b16, mixed mode)
    c)Jre version
    cat $FORMS_WEB_CONFIG_FILE|grep sun_plugin_version| cut -c 1-35
    sun_plugin_version=1.5.0_13
    d)Forms Version
    $ORACLE_HOME/bin/frmcmp_batch|grep Forms| grep Version
    Forms 10.1 (Form Compiler) Version 10.1.2.3.0 (Production)
    e)Jinitiator Version
    grep jinit_ver_name $OA_HTML/bin/appsweb.cfg
    jinit_ver_name=Version=1,1,8,7
    1 - Please suggest what step I need to do on server to use the java version 7. and on client
    Thanks,
    Asm

    HI Asm,
    Thanks for the version info
    950984 wrote:
    Thanks for the reply
    I have applied patch p6880880_101000_Linux-x86-64.zip as per the note ID - 1504594.1
    Steps Followed:
    a)backup the current OPatch directory
    b)download and unzip the file ( p6880880_101000_Linux-x86-64.zip ) in $ORACLE_HOME/ ( appsTier)
    c)download p14614795_101231_LINUX.zip
    d)extract file
    e)opatch apply
    Still getting error.
    Invoking fuser to check for active processes.
    OPATCH_JAVA_ERROR=CheckConflict: OPatch cannot process overlay patches because of no OUI support. Please take latest OUI 10.1 patchset from "My Oracle Support" and try again.
    Cannot check bug/file conflict and component prerequisite checks.
    ERROR: OPatch failed during prerequisite check.
    EBS Version - 12.1.3
    DB Version - 11.2.0.3
    OS - RHEL 5 64 bit
    Please suggest me on thisPlease see
    Cannot Apply Patch: OPATCH_JAVA_ERROR=CheckConflict [ID 1544470.1]
    if you read the patch read me file Interim Patch for Base Bugs: 14614795 you will see
    NOTE:
    # 1. Please ensure the patch for bug 9593176 is already applied before you proceed.
    # 2. Upgrade to the latest OUI 10.1 by downloading and installing the same from bug 6640838
    Patch 9593176: MLR TRACKING BUG FOR FORMS 10.1.2.3.0 BUNDLE PATCH
    please confirm
    ;) AppsMasti ;)
    sharing is Caring

  • DI-Adapter version conflict

    Hi,
    since I upgraded from B1iSN 8.8 PL03 to PL07 I sometimes get the following error when I test the integration scenarios:
    com.sap.b1i.xcellerator.XcelleratorException: XCE001 Nested exception: com.sap.b1i.bizprocessor.BizProcException: BPE001 Nested exception: com.sap.b1i.xcellerator.XcelleratorException: XCE001 Nested exception: com.sap.b1i.xcellerator.XcelleratorException: XCE001 Nested exception: java.lang.RuntimeException: DI-Adapter version conflict; local client=2.2.6, remote proxy=2.3.6
    Please note that in the same computer is installed B1iSN server, EventSender and SAP B1 server.
    How can I solve this issue?

    Ricardo,
    Do you have a different address for the DI Proxy than the machine where B1iSN is installed in your landscape?  If you do, you are telling the landscape to look to that address for the DI API.  You could also clear the SM_OBS_DLL folder in the %temp% folder on the B1iSN machine and see if that helps.
    Eddy

  • Resolving version conflict

    1)Developer1,(Client as Client1)creted Hello.java file chked in now the version is 1.0
    2)Developer2,(Client as -
    ) checked out synched edited Hello.java file chked in version is 2.0
    Now both the developers checked out the version2.0 Devloper1 cheked in while developer2 got checkin conflict.
    Assume that by some means he deleted client,he wont remeber what client name he has given. How to merge this conflict.

    How can he check-in and get a version conflict if he doesn't have a client? Checking in is only possible if you have a client.
    Message was edited by: Pascal Willemsen

  • HT1338 download Java version 10.6.8 and above

    Hello
    I have a MAC Pro (OZ X 10.6.8). My netbank "log in" service requires the newest version of Java.
    Have tryed to download Java 6 again - Have also tryed to download the "7 version", but my Mac dosent accept that (think it was Lion version?).
    My netbank is; SR bank, Norway. There is a link on their homepage - but, that dosent help me anything.
    I have also checked under
    JAVA SE 6 IS THERE, both 64 bit and 32 bit. It is also hooked of (activiate...). THe version I got is: 1.6.0_37-bo6-434 (both).If I am not wrong that is the version my bank requires.
    What am bit unsure/conserneded about is if i have the Java version installed (even if I found "Java choice" under programs.
    Can you please help me. This has never been a problem before...(it started when Java had a lot of problem)
    Kind regards Annie
    ([email protected])

    To see if Java is installed (that is, if you haven't disabled it in Java Preferences.app) enter into Terminal in Utilities and hit return.
    java -version
    If you use Safari, Apple has disabled Java 6 from there. Probably also Firefox and Chrome.

  • ReportViewer.jar running under Java Version 6 Update 17

    Hello,
    Does anyone know how to resolve the missing icons issue when running the ReportViewer.jar tool under the above Java version. Under update 16 the viewer had all the correct buttons and icons and worked great. Since the upgrade to Java update 17 the icons have disappeared from the viewer. The buttons are still there but no icons.
    I am using Crystal Reports XI developer edition with the latest service packs on Windows 7.
    Regards
    Adrian

    This solution worked for me. All settings and bookmarks are intact. Thank you.

  • I am trying to revert my Java to 1.6 from 1.7. The System Preferences Java icon is disabled. But when I enter java -version in terminal it shows 1.6.0_65.  Please help me in giving explicit commands to get back my Java 1.6

    I earlier had a java 1.7 installed in my system.  I wanted to revert the version back to 1.6.  I downloaded the file JavaForOSX2014-001.dmg and installed it in my hard disk.  I am not sure where it has installed it but it has successfully done it.  When I open up the terminal and enter java -version it shows 1.6.0_65 version as the java version. 
    But in the System Preferences, Java is disabled and does not show the java as being installed.  Please guide me in getting my java 1.6 back.

    The preferences pain shows this message when I click on the Java icon -- “Java can’t be opened because it isn’t available".

  • What is new in Java syntaxes in new Java versions?

    What is new in Java syntaxes in new Java versions?
    What about this sentenses
    1. for (int c:data), where data is array of integer
    2. ArrayList<Object> () ...
    3. Class<?>...
    I can't find this syntaxes in my books and documentation...
    And what Java version is latest?

    dont crosspost
    Edited by language police

  • How to Launch an Integration Builder under two different java versions

    How to Launch an Integration Builder under two different java versions     1
    1. Situation     2
    2. How To Do     2
    2.1 jre preparation     2
    2.2 Put them into the system     2
    2.3 Execute a Java Web Start under jre 1.4.x version     3
    2.4 Change Java Runtime Versions     3
    2.5 Launch an Integration Builder     6
    1. Situation
    OS: windows 2000 pro – English
    Java version: jdk 1.5.x was already installed. (It’s not permitted to change.)
    I don’t have any authorization to install any software on the PC.
    But I need to use an Integration Builder.
    I already knew URLs of an Integration Builder (http://<hostname>:50000/rep/start/repository.jnlp).
    2. How To Do
    At this moment, an Integration Builder (XI 3.0) can be launch under jre 1.4.x environment (on windows).
    2.1 jre preparation
    I download j2re-1_4_2_10-windows-i586-p.exe from http://java.sun.com/j2se/1.4.2/download.html
    I installed it on my home PC and copied all files from C:\Program Files\Java\ j2re1.4.2_10\ into my USB.
    2.2 Put them into the system
    I pasted j2re1.4.2_10 folder from my USB into the windows 2000 pro system.
    Finally, I could list up all of javaws.exe under this system.
    c:\j2re1.4.2_10\javaws\javaws.exe
    c:\Program Files\Java\jdk1.5.0_05\bin\javaws.exe
    c:\Program Files\Java\jdk1.5.0_05\jre\bin\javaws.exe
    c:\Program Files\Java\jre1.5.0_05\bin\javaws.exe
    2.3 Execute a Java Web Start under jre 1.4.x version
    I executed c:\j2re1.4.2_10\javaws\javaws.exe .
    2.4 Change Java Runtime Versions
    Go to File-> Preferences -> Java
    As you can see, it indicates 1.5 version.
    Click [FIND] button.
    Click [NEXT] button.
    Click the j2re1.4.2_10 folder.
    Click [NEXT] button.
    A JRE Finder is able to find javaw.exe automatically. Or you can indicate C:\j2re1.4.2_10\bin\javaw.exe directly.
    Click [NEXT] button.
    Finally, there are two Java Runtime Versions. Now you need to uncheck the Enabled column of 1.5 version and check 1.4 version.
    Click [OK] button.
    Well, in the General tab, I selected None for Proxies.
    2.5 Launch an Integration Builder
    In the Location field, I typed the URL of an Integration Builder jnlp.
    http://<hostname>:50000/rep/start/repository.jnlp
    SAP Integration Builder comes up inside Applications area.
    Select it and click [Start] button.
    If you click Environment-> Integration Builder (Configuration), you can launch Integration Builder: Configuration.
    [PDF file location] with screenshots
    http://SDN.mobilian.org/SDN/How2LaunchIB.rar
    ===================Advertisement==========================
    How do you search SDN?
    What about [<b>SDN Search Widget</b>]?
    SDN Search Widget
    =========================================================

    I am not getting anywhere with deploying my application or
    applet.
    I have set up my bc4j project. It contains all my VO info,
    links, application module. (proj a)
    I then have another project with DbInfo in it(has all my rowset
    info), Multiple Frames, and my Applet.java file.
    Actually I have an Applet.java file and a Application.java file
    because I was seeing if both/either worked. Anyway they seem the
    same, except for that extra window that comes up when you run the
    applet.
    I follow the steps in the oracle directions (from earlier post).
    And all seems ok. But at ---->
    [*] Select the subdirectory under myhtml where your applet's HTML
    file
    is located, and enter the directory path of the 'staging'
    directory you
    created in step 3 above, if different from the default.</li>
    [*]Select the HTML files that JDeveloper created to run your
    applet.</li>
    [*]Select all of the Java source files in your project that make
    up the
    applet.</li>
    I have no HTML file associated with my applet, at least that I
    know of.
    So do I need to create one, or should it of been done
    automatically.
    Also, I trying to figure out what will be the best way to deploy
    my project. Applet or stand alone application is what my first
    choices have been so far. I have read that there is some issues
    with applets being served from a different server than the
    database. So a stand alone application was my front runner, but
    I haven't gotten either way to work yet.

  • I have a brand new iMac, Yosemite 10.10.1, Java Version 8, Update 25, however, I still get a window when I open Adobe Photoshop CS5, that indicates that I need to install Java SE 6 Runtime. Any suggestions?

    I have a brand new iMac, Retina 5K, Yosemite 10.10.1, with Java Version 8, Update 25, however, I still get a window when I open Adobe Photoshop CS5, that indicates that I need to install Java SE 6 Runtime. Any suggestions?

    Java should be downloaded directly from Apple:
    Java for OS X 2014-001

Maybe you are looking for