Upgrading JDK

Hi!
I need to upgrade my existing JDK to the newer version.
The new JDK comes bundled with
J2EE.
I don't know if it matters, but i already have J2EE (SDK and Application Server) installed on my computer.
I've downloaded and trying to run the following file:
java_ee_sdk-5_08-jdk-6u17-window
The installation fails.
The detail log shows bunch of "uninstall", then it says that the installation either stopped by the user or failed.
I've tried it several times and still the same thing.
Please help!
Thank you very much in advance.
Anna

You pretty much don't anything EE related from Sun ever unless you are really planning to use Glassfish. To use J2EE you need a servlet container (like Tomcat) and a plain old JDK compiler.
Are you trying to upgrade from 5 to 6 or what? If so go and download the jdk (SDK) you want and install it.

Similar Messages

  • Upgrade jdk 1.6.0_15 or higher which class jar I need, I am running eclipse

    Can someone tell me, if I have a class 12.jar with jdk 1.2 and upgrade jdk to 1.6.0_15 or higher, which class jar I need and where can I get it? Ideal would be with some instructions. :) Thanks so much.

    It's all here: http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/index.html

  • How to upgrade jdk in 11i

    Hi expert,
    i have to apply
    241631
    11i.ATG_PF.H.delta.7 (RUP7)
    doc  783600.1
    this patch and its prerequest is developer 6i patchset 19 and a minimum JDK version of 1.5.0 is required on HTTP server nodes. i upgrade form developer 6i successfully. but unable to upgrade jdk 1.5.0.
    i search metalink and google both but unable to find out perfect doc to upgrade jdk 1.5.0 on 11i.
    my current rup patch level is 4 .
    i request to all of u expert plz help me to upgrade jdk 1.5.0. and refer me any doc that help me to upgrade it.
    currently i m using jinitiator  30.
    os linux 4
    ebs 11.5.10.2
    thanks & regards
    pritesh ranjan

    Hi Pritesh,
    plz help me to upgrade jdk 1.5.0. and refer me any doc that help me to upgrade it.
    Please refer:
    Using J2SE Version 5.0 with Oracle E-Business Suite 11i (Doc ID 304099.1)
    How To Upgrade JDK 1.5 / J2SE 5.0 Sub-Versions with e-Business Suite 11i (Doc ID 416499.1)
    Hope this helps !!!
    Thanks &
    Best Regards,

  • Is there a way to upgrade JDK on oracle 11g without upgrading oracle?

    Hi,
    I want to have the latest version of JDK on my oracle 11g server. Is there a way to upgrade JDK on oracle 11g without upgrading oracle?
    My Oracle version is 11.2.0.3 and java version is 1.5.0_35. Want to upgarde to 1.6
    Thanks.
    Edited by: 945559 on Jul 10, 2012 11:42 AM

    945559 wrote:
    I want to have the latest version of JDK on my oracle 11g server. Is there a way to upgrade JDK on oracle 11g without upgrading oracle?Even if you upgraded Oracle it wouldn't be a new version.

  • Upgrade jdk in WSAD 5.1

    I tried to upgrade jdk 1.4 in my WSAD 5.1 to version 1.5 but it did not work.
    With a Java app opening, click Window -> Preferences ->Java ->installed JREs to change the jre to jre 1.5. The complier is still 1.4. So the code with generics can't be complied.
    How to upgrade the complier to 1.5?
    Thanks,

    I've WSAD 5.1 but it's JDK is only 1.3.
    Tried both the options setting jdk1.4.1
    a. window>preferences>java>installed JREs> added jdk1.4 and
    b. window>preferences>java>compiler to 1.4
    but still the server console shows "Java version = J2RE 1.3.1 ", Why?
    Can any one please help me in upgrading the JRE 1.3 to 1.4 or more
    Thans in advance.
    Kiran

  • How to upgrade jdk in standalone forms and reports 10.1.2

    hi all
    i have forms and reports services standalone 10.1.2.0 can any one help me how to upgrade default jdk to jdk 6
    thx very much

    Install JDk6 somewhere else. Rename ORACLE_HOME/jdk to jdk1.4. Create jdk folder in ORACLE_HOME and copy contents of JDK1.6 into jdk.
    But before doing this, check with oralce whether this is compatible. Oracle 0.1.2 supplied JDK is 1.4

  • Upgrade JDK and WebStart - big problems

    I have been developing (compiling and running) a J2EE application using JDK 1.3.1_02. Now I am trying to upgrade it to Java 1.4.2_03. This process has been very frustrating and left me with a bunch of questions.
    The application uses several external JAR libraries (JavaDatePicker, rpValidation) and some J2EE libraries (ejb.jar, jta.jar, oc4jclient.jar, etc...). For the most part, when I examine the manifest of these jars, they say that they were created by java 1.3.
         eg: jta.jar
              "Manifest-Version: 1.0
              Created-By: 1.3.1_02 (Sun Microsystems Inc.)"
    QUESTION #1) Do these jar files need to be upgraded to a v1.4? In other words, can I run an application using Java 1.4 if it references a library that was created with Java v1.3?
    POTENTIAL ANSWER) I don't think that they need to be upgraded b/c if so then the newer JDev (which ships with jdk 1.4) would contain newer versions.
    The application works when I run it from my development environment (JDeveloper 9.0.3.3 with a newly installed JDK 1.4.2_03). However, it does not work when I run it from Java Web Start. The problem comes when it's time to do an RMI lookup on an EJB. At that point the program throws the following exception:
         javax.naming.NamingException: Lookup error: java.lang.NoClassDefFoundError: javax/servlet/http/HttpSessionContext; nested exception is:
              java.lang.NoClassDefFoundError: javax/servlet/http/HttpSessionContext
    This error has never happened before. It only occurs when I changed the descriptor in the jnlp file from <j2se version="1.3"/> to <j2se version="1.4"/>. I know that the class is deployed because I include the jar in the jnlp file.
    local.jnlp:
         <resources>
         <j2se version="1.4"/>
         <jar href="client.jar" />
         <jar href="mymt.zip" />
         <!-- Javadatepicker libraries -->
         <jar href="javadatepicker.jar" />
         <jar href="metouia.jar" />
         <jar href="kunststoff.jar" />
         <!-- RM lookup library -->
         <jar href="RMInterfaces.jar" />
         <!-- J2EE libraries -->
         <jar href="ejb.jar" />
         <jar href="oc4jclient.jar" />
         <jar href="jta.jar" />
         <jar href="jaas.jar" />
         <jar href="jms.jar" />
              <jar href="jmxgrinder.jar" />
              <jar href="jmxri.jar" />
              <jar href="jmxtools.jar" />
         <!-- Field Validation Library -->
         <jar href="rpValidation.jar" />
         <extension name="common" href= "localmt.jnlp" />
         </resources>
    To further complicate things, I did a search and found that HttpSessionContext is: "Deprecated. As of Java(tm) Servlet API 2.1 for security reasons, with no replacement. This interface will be removed in a future version of this API."
    But my code never even calls this class. So I'm guessing that something in one of the libraries calls it. And these libraries must be from the old JDev and thus call old classes. So I upgraded all the j2ee libraries that I bundle in the deployed application with the ones that ship with JDev 9044. However, I still get the same error.
    What I don't understand is why it runs in JDev but not after being deployed with JWS ?! What's wrong with my RMI lookup?

    After upgrade, previous admin account will not work. You will need to add GUI admin account through the console access. So before starting with upgrade process please make sure you have console access available for the appliance. Command would be :
    add-guiadmin [admin] [password]
    Syntax Description
    admin User name for the GUI account.
    password Password for the GUI account.
    Usage Guidelines
    If you do not set up a GUI account using the add-guiadmin command, then there is no way to access the ACS SE other than through the CLI administrator account and a serial connection. After initial installation of the ACS SE, add a web GUI account using this command.

  • Upgrading JDK Tomcat Zip Exception

    Thanks in advance for any help.
    I have a web application that is running on tomcat 5.5.12. It was using JDK 1.4.2_10. I updated my linux machine for the new time changes that started this year. I then tried to update the JDK to 1.4.2_16 so that it would also adhere to the new rules. When I went to startup tomcat again I got the following exception.
    INFO: XML validation disabled
    Nov 2, 2007 2:53:17 PM org.apache.catalina.core.StandardContext start
    SEVERE: Error in dependencyCheck
    java.util.zip.ZipException: invalid entry CRC (expected 0x0 but got 0xe6b54ce)
    at java.util.zip.ZipInputStream.read(ZipInputStream.java:164)
    at java.util.jar.JarInputStream.read(JarInputStream.java:159)
    at java.io.BufferedInputStream.read1(BufferedInputStream.java:220)
    at java.io.BufferedInputStream.read(BufferedInputStream.java:277)
    at java.util.jar.JarInputStream.getBytes(JarInputStream.java:88)
    at java.util.jar.JarInputStream.<init>(JarInputStream.java:65)
    at java.util.jar.JarInputStream.<init>(JarInputStream.java:43)
    at org.apache.catalina.util.ExtensionValidator.getManifest(ExtensionValidator.java:368)
    at org.apache.catalina.util.ExtensionValidator.validateApplication(ExtensionValidator.java:187)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:3998)
    at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:759)
    at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:739)
    at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:524)
    at org.apache.catalina.startup.HostConfig.deployDirectory(HostConfig.java:910)
    at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:873)
    at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:474)
    at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1118)
    at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:310)
    at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1020)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:718)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1012)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:442)
    at org.apache.catalina.core.StandardService.start(StandardService.java:450)
    at org.apache.catalina.core.StandardServer.start(StandardServer.java:680)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:536)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:275)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)
    Nov 2, 2007 2:53:17 PM org.apache.catalina.core.StandardContext start
    SEVERE: Error getConfigured
    I am not sure where to start debugging this, so like I said any help would be appreciated.
    Thanks

    Hello,
    we `re facing a similar or the same problem.
    While upgrading our machines from 1.5.0_10 t9 1.5.0_13 (JDK) we got this error:
    +19.11.2007 14:24:13 org.apache.catalina.core.StandardContext start+
    SCHWERWIEGEND: Error in dependencyCheck
    java.util.zip.ZipException: invalid entry CRC (expected 0x0 but got 0xfc0d5d73)
    +     at java.util.zip.ZipInputStream.read(Unknown Source)+
    Workaround:
    We unzip the war-file and recommpress these files with 7-zip (or else) to bla.war - the new war file is deployable.
    But:
    Has anyone an idea the changes from *.10 to *.13 which provoke this error OR
    has war files to be created in another way as "jar cvf filename.war *" in *.13..?

  • Upgrade JDK

    hi,
    Now i installed jdk1.4.1 in my machine
    i need upgrade to jdk1.4.2
    is it possible to get updates?
    what i can do for this?
    where to go and download?
    Mani

    Hi,
    you have to install the complete new jdk.
    http://java.sun.com/j2se/downloads.html

  • Upgrade JDK 1.6 to 1.7

    All,
    I'm trying to upgrade our JDK from 1.6 to 1.7. We have 5 zones and they are load balance. The question is, when we install the JDK 1.7 on global, all the path, share and symbolic link of new JDK will sync with 5 zones?That's mean we don't need to install JDK 1.7 on each zone?
    Thanks,
    Andrew

    Hi Fareez,
    Hope you are doing good.
    If you go ahead with deployment of this SDA on a 7.00 server, the application will fail to launch with an "java.lang.UnsupportedClassVersion" error.
    The only options are the ones that Rodrigo mentioned previously.
    Thank you!
    Kind Regards,
    Hemanth
    SAP AGS

  • How to upgrade jdk used in jbuilder 5.0?????

    Hi all
    i have jbuilder 5.0 Enterprise which use jdk1.3
    each time i change the jdk configuration and use jdk 6
    it gave me when i compile an error that the file version is incorrect
    and the design window doesnt parsing the components....so plz
    how would i solve this damm problem
    if i cant
    plz provide me with jbuilder 9 or 10x
    but not with jbuilder 2007 because it is soooo complex to me
    thnx all

    Please ask this question at another site, as these forums support Java language questions, not jBuilder (or other IDEe.)

  • Upgrading JDK and JRE in 10.2.0.4 Oracle_Home of 11.5.10.2 EBS ?

    I've tried to find something at Metalink but failed.
    What's the lastest Java Version certified to use with the database ORACLE_HOME (10.2.0.4) in 11.5.10.2 EBS? And what's the procedure to update it?
    There is no hint in note 300482.1 "Overview of Using Java with Oracle E-Business Suite Release 11i" and the Java version related documents.
    I found note 418399.1 "How To Update The Default JDK and JRE Installed In Oracle Database Home 10.1 and 10.2" which states "...When installing a new version it is important that the major version (1.4) remains the same, and you only change the "update" number...." But that note is not EBS related.
    So is there no way to update Java in ORACLE_HOMEs beyond 1.4?
    Thanks
    Martin

    Hi Hussein,
    thx for your help!
    There is no special cause. I'm trying to keep our installations current.
    I thought that I had to update the Database JDK in earlier cases before migrating to autoconfig or before applying MPs. And as Steven Chan wrote something about [the implications of end-of-life of J2SE 1.5 for EBusiness Suite in his blog|http://blogs.oracle.com/stevenChan/2009/06/understanding_j2se_15_endoflife_implications_for_apps.html] I thought that I better should check if I got to update the DB Oracle_Homes, too.
    Martin

  • Upgrade JDK for WS6.1sp7

    I can't find the configuration change needed to point WS6.1sp7 to an installation of JDK 1.5.0 instead of the internal install of 1.4. Any suggestions? I survived the DST issue, but now have an app that requires Java 1.5.
    Thanks

    Ok, great! Both responses are correct and lead to the same result. I had read that part of the manual but comparing to past experience with WS6.0, I was a little confused.
    Thanks!
    ~Aaron

  • JDK 1.4.2_12 for SRM upgrade 5.5

    Hi,
    Our Source System: SRM 2.0(EBP 3.5) Kernel:620, Oracle 8.1.7, HP-UNIX 11.11
    Target System: SRM Server 5.5(Netweaver2004s), Kenel 700, Oracle 10g, HP-UX 11.11
    We are about to upgrade SRM 2.0 to SRM Server 5.5
    Our JDK version on source system : 1.4.1
    If we upgrade JDK 1.4.2_12, any issue with Oracle 10g and SRM 5.5 upgrade?? Please let me know with your valuable suggestions.
    Thanks in advance
    Regards
    Srinivas.

    Hi Srinivas
    Pl check upgrade master guide and installation guides.
    Following links are the official links for these kind of verifications:
    http://service.sap.com/pam
    http://service.sap.com/instguides (here you get all upgrade/install guides)
    Best regards
    Ramki

  • Planning to upgrade my application from JDK 5 to JDK 6

    Hi All,
    We are planning to upgrade JDK from JDK 5 to JDK 6. I would like to the stable release or update in JDK 6.
    Our development environment is Windows and Production environment is Red Hat Linux 5.4 (64bit).
    Please suggest the stable release in JDK 6 to upgrade my application.
    Regards,
    Kiran

    Apple's USB drive won't work with your computer at all.

Maybe you are looking for