Latest IBM JDK version supported by SAP

Hi there, we are having some Java performance issues in our landscape and the recommendation from SAP is to install the latest IBM JDK release supported by SAP, can you help me determine what the latest release is and where I can find the download?
Thanks

Hey James,
  The best thing to do is to check the Product Availability Matrix (PAM) for your release on service marketplace.
http://service.sap.com/pam
We're on Netweaver7 with EhP1 and the PAM suggestst the latest server-side JDK supported for us is 1.4.2. Here's the results or "java -version" on an ECC6.0 server in our landscape:
root@#######:/>java -version
java version "1.4.2"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2)
Classic VM (build 1.4.2, J2RE 1.4.2 IBM AIX 5L for PowerPC (64 bit JVM) build caix64142-20080122 (SR10) (JIT enabled: jitc))
Hope this helps.
-Kevin

Similar Messages

  • Soap Version supported by SAP J2EE Engine 7.0

    Hi,
    Cna somebody tell me that which version of SOAP is supported by SAP J2EE Engine 7.0?
    Thanks in advance,
    manish

    Hi Manish,
    Have you checked the other link, that I have supplied, check it up, the page says that:
    "If you have any problems with the SOAP Processor within the SAP Web AS, our customer support can help you. Please create a problem message on the SAP Service Marketplace under the component BC-MID-SRT (SOAP Run Time). "
    So you might want to parallelly post your query over there too, cause i don't see any other note describing the version.
    Regards,
    Siddhesh

  • Question on IBM JDK Version when Installing OBIEE 11.1.1.7.0  on IBM AIX on POWER Systems (64-bit) / O.S. 6.1

    Hi,
    Certification Matrix gives us JDK Version: JDK 1.7.0 SR3+ IV33133   64 Bit
    Does anybody know whether  this is the exact JDK Version or if we can install anything more than this version?
    Thanks very much for your help in advance.

    Thank you for your suggestion. I can certainly try pointing to a different temp folder, but how much space does it need?
    /u00/temp appears to have quite a bit of space available...
    [oracle@oel58 logs]$ df -k
    Filesystem 1K-blocks Used Available Use% Mounted on
    /dev/mapper/VolGroup00-LogVol00
    16663980 3820232 11983588 25% /
    /dev/sda2 99188500 18500088 75568500 20% /u00
    /dev/sda1 101086 41172 54695 43% /boot
    tmpfs 3170304 1063332 2106972 34% /dev/shm
    shmfs 3170304 1063332 2106972 34% /dev/shm
    ShareVB 320864252 168386324 152477928 53% /media/sf_ShareVB
    [oracle@oel58 logs]$ df -k /u00/temp
    Filesystem 1K-blocks Used Available Use% Mounted on
    /dev/sda2 99188500 18500088 75568500 20% /u00
    Also, I verified TMP, TMPDIR, and TEMP all point to /u00/temp.
    And the preinstallation check shows this:
    Checking Temp space: must be greater than 1536 MB. Actual 73797 MB Passed
    Checking swap space: must be greater than 500 MB. Actual 5951 MB Passed
    Checking monitor: must be configured to display at least 256 colors. Actual 16777216 Passed
    It might be worth mentioning, as well, that I get the same result, whether I use ...Disk1/runInstall.sh or ...Disk1/install/linux64/runInstall.sh
    The file I originally posted came from trying the linux64 installer.
    What else can we check/try?
    Edited by: user733825 on Mar 28, 2013 6:26 PM
    What is it that tells the installer there is an application server running? Is it checking for some WebLogic environment variable I may have incorrectly configured? I have a WebLogic server running, and it is hosting a Forms server and a help server. Why does the installer think there is no Application Server installed?
    Edited by: user733825 on Mar 28, 2013 7:23 PM

  • BOE XI 3.1 jdk version

    <h4> Hi,
    Is JDK1.6 supported for BOE XI 3.1 application server?
    According to platform requirements for linux  (page 7)  it seems that  Tomcat 5.5 , jdk 1.5.0_xx is supported.
    Of course in the same document there's also written: </h4>
    Application Server Incremental Release Support Policy
    Specified application servers versions have been successfully tested by Business Objects. Incremental releases of the specified versions defined by the last number in the application server name will be supported as they are made available, but may not have been tested by Business Objects. Exceptions in support will be documented.
    JDK Version Support Policy
    JDK major versions are specified to ensure the use of correct version when there are multiple choices provided
    by the vendor. Business Objects tests and supports any _xx release installed with a given application server.
    <h4>
    So must I assume that Tomcat 6 and jdk 1.6.0_xx is supported?
    Thanks,
    Fabbio
    </h4>
    Edited by: fabbio on Sep 14, 2009 6:17 PM

    With service pack 2 tomcat 6.0 is now supported but you will need to add it as 5.5 still comes packaged with the product. JDK 1.6 was not tested with tomcat per the [supported platforms for XI 3.1 SP2|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/402db6eb-845d-2c10-a38c-aafde85ec769&overridelayout=true]
    If using other web/apps that support 1.6 (weblogic or websphere) then 1.6 can be used.
    Regards,
    Tim

  • Encryption program does not work in IBM JDK

    Hi
    I have a encrypt, decrypt program, which does not work in IBM JDK
    the code is as below, it gives PBEWithMD5AndDES does not exist kind of error when running with IBM JDK
    import java.io.UnsupportedEncodingException;
    import java.security.spec.AlgorithmParameterSpec;
    import java.security.spec.KeySpec;
    import javax.crypto.Cipher;
    import javax.crypto.IllegalBlockSizeException;
    import javax.crypto.SecretKey;
    import javax.crypto.SecretKeyFactory;
    import javax.crypto.spec.PBEKeySpec;
    import javax.crypto.spec.PBEParameterSpec;
    public class MapsPasswordUtil
         Cipher ecipher;
         Cipher dcipher;
         // 8-byte Salt
         byte[] salt = { (byte) 0xA9, (byte) 0x9B, (byte) 0xC8, (byte) 0x32,
                   (byte) 0x56, (byte) 0x35, (byte) 0xE3, (byte) 0x03 };
         // Iteration count
         int iterationCount = 19;
         public MapsPasswordUtil(String passPhrase)
              try
                   KeySpec keySpec = new PBEKeySpec(passPhrase.toCharArray(), salt,
                             iterationCount);
                   SecretKey key = SecretKeyFactory.getInstance("PBEWithMD5AndDES")
                             .generateSecret(keySpec);
                   ecipher = Cipher.getInstance(key.getAlgorithm());
                   dcipher = Cipher.getInstance(key.getAlgorithm());
                   // Prepare the parameter to the ciphers
                   AlgorithmParameterSpec paramSpec = new PBEParameterSpec(salt,
                             iterationCount);
                   // Create the ciphers
                   ecipher.init(Cipher.ENCRYPT_MODE, key, paramSpec);
                   dcipher.init(Cipher.DECRYPT_MODE, key, paramSpec);
              } catch (java.security.InvalidAlgorithmParameterException e)
                   e.printStackTrace();
              } catch (java.security.spec.InvalidKeySpecException e)
                   e.printStackTrace();
              } catch (javax.crypto.NoSuchPaddingException e)
                   e.printStackTrace();
              } catch (java.security.NoSuchAlgorithmException e)
                   e.printStackTrace();
              } catch (java.security.InvalidKeyException e)
                   e.printStackTrace();
         public String encrypt(String str)
              try
                   // Encode the string into bytes using utf-8
                   byte[] utf8 = str.getBytes("UTF8");
                   // Encrypt
                   byte[] enc = ecipher.doFinal(utf8);
                   // Encode bytes to base64 to get a string
                   return new sun.misc.BASE64Encoder().encode(enc);
              } catch (javax.crypto.BadPaddingException e)
                   e.printStackTrace();
              } catch (IllegalBlockSizeException e)
                   e.printStackTrace();
              } catch (UnsupportedEncodingException e)
                   e.printStackTrace();
              return null;
         public String decrypt(String str)
              try
                   // Decode base64 to get bytes
                   byte[] dec = new sun.misc.BASE64Decoder().decodeBuffer(str);
                   // Decrypt
                   byte[] utf8 = dcipher.doFinal(dec);
                   // Decode using utf-8
                   return new String(utf8, "UTF8");
              } catch (javax.crypto.BadPaddingException e)
                   e.printStackTrace();
              } catch (IllegalBlockSizeException e)
                   e.printStackTrace();
              } catch (UnsupportedEncodingException e)
                   e.printStackTrace();
              } catch (java.io.IOException e)
                   e.printStackTrace();
              return null;
    }

    Works for me with the latest IBM JDK. You will need to specify your context i.e. what platform, what JDK/JRE etc etc etc.
    P.S. That exception handling is rubbish.
    Edited by: sabre150 on Mar 23, 2009 6:01 AM
    I suspect that you are using JDK 1.5 and that you have fallen foul of the bug where key.getAlgorithm() does net return the correct value. You get round this by specifying it as             SecretKey key = SecretKeyFactory.getInstance("PBEWithMD5AndDES").generateSecret(keySpec);
                ecipher = Cipher.getInstance("PBEWithMD5AndDES");Of course if you are clever you will just define a static final constant for this algorithm.
    Edited by: sabre150 on Mar 23, 2009 6:09 AM

  • Which version of JDK is supported on Win 2003

    Hi,
    What is the latest JDK version that is supported on Windows 2003 server ?
    Thanks,
    Rahul

    http://java.sun.com/j2se/1.5.0/system-configurations.html
    http://java.sun.com/j2se/1.4.2/system-configurations.html
    -Alexis

  • New IBM JDK 1.4.2 for SAP NetWeaver 2004 and 2004s

    In May 2006 IBM System p brand and SAP announced the direction to enhance the IBM AIX 5L JDK 1.4.2 for SAP NetWeaver 2004 and SAP NetWeaver 2004s based applications. The new IBM JDK 1.4.2 for SAP NetWeaver applications on AIX 5L is 100% upward compatible for all SAP business applications and, compared to the classical AIX JDK, provides a more consistent runtime behavior, enhances memory management, and improves debugging capabilities.
    <b>General Availability (GA) of the new IBM JDK 1.4.2 for SAP NetWeaver 2004 and 2004s on AIX 5L</b>
    As part of a staged release process aligned between IBM and SAP a customer pilot program was started in August 2006 followed by a Controlled Availability (CA) program. Based on positive customer feedback resulting from real production usage and the very encouraging internal test results, the new IBM JDK on AIX 5L is/will be generally available
    •     for SAP NetWeaver 2004 SP14 and above starting at 5th of February 2007
                    and
    •     for SAP NetWeaver 2004s SP06 and above starting at 30th of March 2007.
    This means systems running above SAP NetWeaver releases in an AIX 5L environment are allowed to use the new IBM JDK without restrictions.
    This announcement does not affect the use and support of the classical AIX JDK outside SAP environments.
    <b>Transition Plan to the new IBM JDK 1.4.2 on AIX 5L</b>
    SAP will support the classical and the new JDK in parallel for a limited number of NetWeaver support packages. Afterwards only the new IBM JDK will be supported:
    •     for SAP NetWeaver 2004 the first support package only supporting the new JDK will be SP21 (planned date for SP21 see http://service.sap.com/~sapidb/011000358700001130682005E),
    •     for SAP NetWeaver 2004s it will be SP14 (planned date for SP14 see http://service.sap.com/~sapidb/011000358700004584092005E).
    So please plan a transition to the new JDK prior to the upgrade to these support packages.
    SAP and IBM strongly believe that the switch to the new JDK will improve your experience with JAVA based SAP applications on AIX 5L. Both companies recommend upgrading to the new IBM JDK 1.4.2 for SAP applications running on AIX 5L as soon as it matches your company’s maintenance plans.

    You can download the JDK directly from the sun java website...
    http://java.sun.com/products/archive/j2se/1.4.2_12/index.html
    I don't think Ubuntu is supported...
    Regards
    Juan

  • JDK/JRE Version support for Oracle Lite

    Hi,
    We have developed an application using jdk 1.4.x which also using Oracle9i Lite 5.0.2 release as a database. Application behaves normal except while closing it throws java exception (Exceptio Guard Page Exception) error.
    Is it because of the JDK Version we are using? What is the JDK/JRE version level supported by Oracle Lite.
    Thanks
    Krishna

    Right
    I got the same problem too.
    When my program and oracle 9i lite is running under JRE1.3.1, everything is ok.
    However, when i migrate the jre to 1.4.x, the program must fail and report DLL exception after closing.
    So trouble~!

  • My school's blackboard does not yet support firefox5.0 but if supports all of 4.x, how do I get the latest 4.x version?

    I would like the latest version, but it will cause problems taking tests in the blackboard app. for my school. How can I get the latest 4.x version?

    Firefox 4 isn't supported, Firefox 5 was security update for Firefox 4. Firefox 3.6.x versions are still supported by Mozilla, so it would be best to stick with that for the time being for your BlackBoard website.

  • What versions of the SAP Enterprise Portal support Java 5

    What versions of the SAP Enterprise Portal support Java 5? 
    Example:
    If we were to use Java 5 code for an iView what versions of the portal would it run in?
    I have reviewed the Product Availability Matrix (PAM) and this is not clear. All I can find are references to JAVA 4 when using EP 6.

    Hi Alejandro,
    Currently, the version of SAP NetWeaver that is J2SE 5.0 as well as Java EE 5 compatible is the [SAP NetWeaver Composition Environment (NW CE)|https://www.sdn.sap.com/irj/sdn/nw-ce]. It does not provide the "full" Portal capabilities, however it does come with a "Portal Lite" and supports Portal applications development scenarios.
    For more information:
    [Introduction to NW CE|http://help.sap.com/saphelp_nwce10/helpdata/en/45/ff9fc1d8986c06e10000000a1553f6/frameset.htm]
    [Developing Applications for the Portal|http://help.sap.com/saphelp_nwce10/helpdata/en/44/d4269651103ee1e10000000a114a6b/frameset.htm]
    HTH!
    -- Vladimir

  • SAP Netweaver ABAP version supports JAVA?

    Hi all,
    Im using SAP Netweaver ABAP sp12 version. Is this version supports JAVA applications to deploy on it?
    With Regards,
    Sreehari

    Hello Sree,
    If u want your java applications to run in your system then you should have Java AS too. you can install Java AS as an Add-on installation and u can find a lot of materials for this thro sdn as well as help.sap.com
    regards,
    Anand

  • Which Vmware Version is supported by SAP HANA ???

    Hi SAP HANA Experts,
    We knew that now a days SAP HANA is supporting Vmware also to install it...
    Can anyone provide which Vmware version is supported by SAP HANA for PRD & NON PRD Setup's

    Hi,
    SAP HANA Virtualized Central Note https://service.sap.com/sap/support/notes/1788665
    SAP HANA Virtualized Overview ppt http://www.saphana.com/docs/DOC-3334
    SAP HANA Guidelines for VMware http://www.saphana.com/docs/DOC-4192
    VMware Best Practices for SAP HANA http://vmware.com/go/sap-hana
    Thanks & Regards,
    Kumar

  • I have MacBook 4.1 laptop with a Version 10.5.8 software. Does this software version support iCloud? Can this MacBook be updated to the latest software version?

    I have MacBook 4.1 laptop with a Version 10.5.8 software. Does this software version support iCloud? Can this MacBook be updated to the latest software version?

    Once you are at 10.6.8 Lion is still available from Apple. You will have to call Apple Customer Care 1-800-692-7753 or 1-800-676-2775. to purchase it. Then within 3 days you will get an email with a code which you can use to download Lion from the App Store.  The price is $19.99.
    Lion will require at least 2gb of RAM but really needs 4gb to run smoothly.
    As for third party programs see this list for compatibility with 10.7 http://roaringapps.com/apps:table
    Also Lion doesn't run any Power PC programs. To see if you have any Power PC programs go to the Apple in the upper left corner and select About This Mac, then click on More Info. When System Profiler comes up select Applications under Software. Then look under Kind to see if any of your applications are listed as Power PC. Universal and Intel will run under Lion.
    Before Mac switched to Intel processors in 2006 they used Power PC processors from 1994 to 2005. Power PC 601 through 604, G3, G4 and G5. Applications written for the Power PC processors need the application called Rosetta to run on Intel processors. This was part of the Operating System in 10.4 and 10.5 but was an optional install in 10.6. With 10.7 Lion Apple dropped all support for Power PC applications.

  • Need versions of web service standards supported by SAP WAS

    Hello Friends,
    I need to know web service standards supported by SAP WAS with their versions.
       List of Web service specification needed is:
         Basic Profile
         Attachments Profile
         Simple SOAP Binding Profile
         WS-Addressing , SOAP Binding, WSDL Binding
           Simple Object Access Protocol (SOAP)
           Web Services Description Language (WSDL)
          JAX-WS
           JAX-R (For Registry integration)
    Can anyone please provide me with these details?
    Thanks and regards,
    Mayuresh

    I think you have to add the destination in Windows-Preferences-Destination Configuration-Web Service Configuration.
    Then you can search it when selecting "web services" as provider
    Edited by: Jan Nyfeler on Jun 11, 2010 8:52 AM

  • Supported JDK Versions and Platforms

    Any further information on backward compatible JDK versions and what underlying Platforms are supporting.
    We are on PA-RISC and Solaris.         
    We are coming off jProfile and intend to test this kit, please excure very basic question and many thanks in advance.
    Many thanks for your help!
    Cheers

    The usage of Flight Recording is only for JDK 7 update 4 and later versions of the JVM.
    Using the Java Mission Control Client
    The Java Mission Control interface use JMXRMI (JVMX over RMI) with J2SE 5.0 and later versions of the JVM.
    Managing JVM Connections
    Regards!

Maybe you are looking for