Compatibility between RDS 2.0.10 & Java SE 8 ?

Hi,
I just upgraded from Java 1.7 to 1.8 (1.8.0_31) and my apexlistener (actually RDS 2.0.10) doesn't start anymore due to an exception error with the message below :
D:\RDS2010>java.exe -jar ords.war
Exception in thread "main" java.lang.
UnsupportedClassVersionError: oracle/dbtool
s/jarcl/Entrypoint (Unsupported major.minor version 50.0)
         at java.lang.ClassLoader.defineClass0(Native Method)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:539)
         at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:12
3)
         at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
         at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
         at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
I read that some compatiblity issues may come with Java 8..
Should I reinstall Java 7? is there any foreseen patch for RDS if it's a compatibility issue ? I also precise that I'm running my Apex environment in a standalone mode.
Thanks for your feedback.
Rgds,
Yves

There is no official statement of certification for Java 8. We do support it, however, our stress testing is focused primary on Java 7.
--mark

Similar Messages

  • DES Encryption compatibility between Microsoft dot Net and Java

    Hi,
    I have a situation that a Secret key is shared between two components like Core and the Customer. The customer encrypts a particular data using DES algorithm using the shared secret key. The customer uses Microsoft dot Net framework to do this. The encrypted data comes to core part which has been developed in Java. I want to know whether it is possible to decrypt the data value using DES algorithm which is coming from Dot Net platform. By the way I am getting different values. I want to know whether the byte[] in Java and Dot Net are same. Please provide me relevent answers to this question. Is it possible to make interaction with the cryptography between two differnet environments like Java and Microsoft Dot Net. I mean only DES algorithm.

    DebadattaMishra wrote:
    Hi,
    I have a situation that a Secret key is shared between two components like Core and the Customer. The customer encrypts a particular data using DES algorithm using the shared secret key.Yuk! That is what SSL is for.
    The customer uses Microsoft dot Net framework to do this. The encrypted data comes to core part which has been developed in Java. I want to know whether it is possible to decrypt the data value using DES algorithm which is coming from Dot Net platform. Yes though there are many pitfalls. The devil is in the detail of the .NET code. I would not tackle this without access to the full .NET encryption code.
    By the way I am getting different values.This is not surprising since, as I said above, there are many pitfalls. The.NET documentation is poor at best and in some cases is very very misleading. Some of the .NET methods involved in key generation have obscure semantics and only after a very careful reading of lots of MS documentation did I start to understand the semantics.
    I want to know whether the byte[] in Java and Dot Net are same. You should compare the 'bits' of each byte and not the numeric values since Java uses signed bytes.
    Please provide me relevent answers to this question.This is not your call. Anyone is free to post answers as long as they follow the forum code of conduct.
    Is it possible to make interaction with the cryptography between two differnet environments like Java and Microsoft Dot Net. I mean only DES algorithm.Of course!

  • Compatibility between Java crypto and open ssl

    Hello
    I have some question about compatibility between java crypto and openssl library.
    This is my case:
    1.I created DESede key and stored it to file:
    SecretKey key = KeyGenerator.getInstance("TripleDES").generateKey();
    File f = new File("c:\\key.dat");
    DataOutputStream dos =new DataOutputStream(new FileOutputStream(f));
    dos.write(key.getEncoded());
    dos3.close();2.I encrypt some file "c:\\normal.dat" through:
    ecipher.init(Cipher.ENCRYPT_MODE, key2);
      byte[] enc = ecipher.doFinal(normalData);
      File f2 = new File("c:\\enc.dat");
      DataOutputStream dos =new DataOutputStream(new FileOutputStream(f2));
      dos.write(enc);
      dos.close();

    You have carefully left out some critical java code, namely the Cipher.getInstance() method. You'll notice in the documentation for this method that there 3 components to the "transform" argument of this method, the algorithm, the mode, and the padding. All of these must match exactly with the what openssl is using. Furthermore, if you are using one of the modes which require an IV, like CBC mode, then this must match exactly too. If you don't explicitly specify some of these parameters, you might get default values supplied. It is up to you to find out what these are.

  • Check binary compatibility between 2 Jars

    Hello,
    we have a Java API to our repository product. Is there a way to check binary compatibility between different versions of that API? The problem is that the interfaces evolve and sometimes changes are necessary. So we already had the problem that different versions are incompatible.
    I found just one tool: japitool. But it does not detect the latest problem we have.
    Thanks in advance
    Torsten

    I mean the facts and rules described in chapter 13 of the Java language specification (Binary Compatibility; http://java.sun.com/docs/books/jls/second_edition/html/binaryComp.doc.html#44872).
    Torsten

  • What is the diffrence between package javax.sql and java.sql

    Is javax designed for J2EE?
    And when to use package javax?

    Hi,
    What is the diffrence between package javax.sql and java.sql?The JDBC 2.0 & above API is comprised of two packages:
    1.The java.sql package and
    2.The javax.sql package.
    java.sql provides features mostly related to client
    side database functionalities where as the javax.sql
    package, which adds server-side capabilities.
    You automatically get both packages when you download the JavaTM 2 Platform, Standard Edition, Version 1.4 (J2SETM) or the JavaTM 2, Platform Enterprise Edition, Version 1.3 (J2EETM).
    For further information on this please visit our website at http://java.sun.com/j2se/1.3/docs/guide/jdbc/index.html
    Hope this helps.
    Good Luck.
    Gayam.Srinivasa Reddy
    Developer Technical Support
    Sun Micro Systems
    http://www.sun.com/developers/support/

  • What is the diffrence between My Runnable Interface and Java Runnable

    Hi folks
    all we know that interfaces in java just a decleration for methods and variables.
    so my Question is why when i create an interface its name is "Runnable" and i declared a method called "run" inside it.then when i implements this interface with any class don't do the thread operation but when i implement the java.lang.Runnable the thread is going fine.
    so what is the diffrence between My Runnable Interface and Java Runnable?
    thnx

    Hi folks
    all we know that interfaces in java just a decleration
    for methods and variables.
    so my Question is why when i create an interface its
    name is "Runnable" and i declared a method called
    "run" inside it.then when i implements this interface
    with any class don't do the thread operation but when
    i implement the java.lang.Runnable the thread is going
    fine.
    so what is the diffrence between My Runnable Interface
    and Java Runnable?
    thnxClasses and interfaces are not identified by just their "name", like Runnable. The actual "name" the compiler uses is java.lang.Runnable. So even if you duplicate the Runnable interface in your own package, it's not the same as far as the compiler is concerned, because it's in a different package.
    Try importing both java.util.* and java.awt.* (which both have a class or interface named List), and then try to compile List myList = new ArrayList();

  • I like ti known about compatibility between Windows 8 and iTunes

    I like ti known about compatibility between Windows 8 and iTunes

    It works for some and not for others.
    At this time, there is no publicly available version of iTunes that is supported on Windows 8.
    Only Apple knows when that will change.

  • Compatibility between CRM 4.0 and IS-U 4.64

    Hi,
    My company is using SAP IS-U 4.64 and is studying the use of SAP CRM. Does there is any problem of processus compatibility between these two versions ?
    I don't find any document on the market place or in sdn. Does there is a document that shows the optimization for cross application use of SAP ?
    Thanks
    Thomas

    Hi Gaurav,
    I've dealt with both realities (specially in IC Webclient) and from the configuration point of view and in my opinion, it is basically the same.
    For me the main change is that, in IC webclient scenario, instead of you do some customizing in a XML code, in CRM5 you'll do it by configuring tables.
    In CRM5, you'll have some nice functionalities that CRM4 doesn't have (e.g.: You can choose with channels your transactions are allowed, Email Workbench, ERMS categorization is time dependent, and so on...), but the big jump is given when you compare CRM5 to CRM6 (or CRM 2007).
    Kind regards,
    Bruno

  • Compatibility between SAP ERP upgrade with SAP PI 7.3 sp12

    Hi Experts,
    Our SAP ERP system getting upgraded to ECC 6.0, ehp 7, SS7 and we need to check its compatibility with the current SAP PI version(7.3 sp09) and its future upgraded version which is sp12.
    Would any one kindly help me to track the PI system compatibility with the ERP upgraded version and its adverse effect(if any) on interfaces between PI and ECC system?
    Thanks
    Navneet.

    Hi Navneet
    If your PI is already on 7.3, it is compatible with ECC6 EHP7. For more details refer to the SAP note that is mentioned in my reply on the thread below.
    Compatibility between PI 7.11 and Ehp7 for ERP6
    Rgds
    Eng Swee

  • I have a web site built by Yahoo Web Site Builder which does not have a Mac version, is there any compatability between Iweb and the old Yahoo program?

    I have a web site built by Yahoo Web Site Builder which does not have a Mac version, is there any compatability between Iweb and the old Yahoo program? If not how do I clear off the old site so as to re publish with Iweb.

    iWeb cannot import published files so you would need rebuild the site.
    Yahoo hosting is notoriously poor and their tech support is awful. I would suggest you look for new hosting and start afresh. Some pointers for choosing hosting...
    http://www.iwebformusicians.com/iWeb/Website-Hosting.html
    If you do choose to go this route, transfer your domain name registration away from Yahoo to your new host.

  • Still no compatibility between Storage Client Library v3 and emulator?

    Hi,
    According to this blog post:
    I'm apparently unable to post a link, but here's the text from the blog. I'm sure you can find it via google if interested.)
    <<<<
    Storage Emulator Guidance
    As mentioned above an updated Windows Azure Storage Emulator is expected to ship with full support of these new features in the next couple of months. Users attempting to develop against the current version of the Storage emulator will receive Bad Request
    errors as the protocol version (2013-08-15) is unsupported.  Until then, users wanting to use the new features would need to develop and test against a Windows Azure Storage Account to leverage the 2013-08-15 REST version.
    >>>>
    So it seems there was not compatibility between the storage emulator and Storage Client Library v3. I'm wondering if that is still the case. I get a 400 error when calling container.CreateIfNotExists() when pointing to local storage, but no problem pointing
    to production storage. I'm using SCL v3.0.2.
    Thanks...
    -Ben

    Hi,
    Please see
    http://social.msdn.microsoft.com/Forums/windowsazure/en-US/c961d0df-e6ab-4563-958c-b3646ee2cd9d/the-value-for-one-of-the-http-headers-is-not-in-the-correct-format?forum=windowsazuredevelopment#16892f11-498d-4975-aa4b-adfa12b03fea
    Here is a snippet of this thread.
    Storage Emulator 2.2 is currently incompatible with Storage Client Library 3.0.0.0. This has been mentioned in Storage Team Blob as well:
    http://blogs.msdn.com/b/windowsazurestorage/archive/2013/11/27/windows-azure-storage-release-introducing-cors-json-minute-metrics-and-more.aspx (Please
    read "Storage Emulator Guidance" section towards the end of the post).
    It may be fixed in the next version.
    Hope this helps
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Compatibility between the iPhone 6 and certain vehicles, and the hands free connectivity in those vehicles?

    How can I findout about the compatibility between the iPhone 6 and certain vehicles, and the hands free connectivity in those vehicles?
    I am interested in the iPhone 6 but have several meetings that have to call into for work.  Where can I find out about the compatibility with iPhone 6 and if there are issues I need to be aware of for connecting to hands free option in the car?
    Please point me to the right direction. The dealership was useless in helping me. I figured Verizon can be more helpful.

        ShaM1,
    I understand the importance of the bluetooth compatibility between your new device and your car.  What make and model is your vehicle? 
    Here is the information that Verizon Wireless has on Bluetooth Car Kit compatibility; http://www.verizonwireless.com/support/how-to-use-bluetooth-car-kit-compatibility/.  However, Apple does not have any information listed here.  We can assume that the latest and greatest iPhone 6 has the technology to be compatible with most vehicles.  If you'd like to discover further information I'd suggest contacting Apple directly; 800-275-2273.
    Let us know if you need anything else!
    TrevorC_VZW
    Follow us on Twitter @VZWSupport

  • Compatibility Between Audigy 2 Drive and Audigy 2 ZS GAMER C

    Greetings,
    I had a question about compatibility between an Audigy 2 Dri've and an Audigy 2 ZS Card.
    Specifically, the Sound Blaster Audigy 2 Platinum Sound Card and the Sound Blaster Audigy2 ZS GAMER Edition Sound Card (SB0350).
    Is the Audigy2 ZS GAMER Sound Card compatible with the Audigy 2 Platinum Dri've?
    If this particular question has already been addressed in another thread, my apologies.
    Thanks,
    Benwajones

    I searched (on "external" and "bay," but not "dri've" before I posted) but did not see this message. Is the reverse possible - that is a Audigy original dri've and an Audigy 2ZS sound card?

  • Compatibility between Exchange 2007 service packs

    Hi all, I have 5 servers Exchange:
    - 3 Servers CAS and HUB
    - 2 Servers Mailbox server in Microsoft Failover Cluster (MSCS)
    Domain Controllers are all
    Windows Server 2003 SP2
    The versions of Exchange 2007 SP1 servers are all:
    8.1 Build 240.6
    I have thought about installing SP3 and RU13 in all 5 servers for Exchange, but I'm going to install SP3 and RU13 on 2 servers CAS / HUB and the following week at the other CAS / HUB server.
    Finally, the following week in the two Mailbox Servers.
    Is there any problem if I miss 2 servers CAS / HUB with SP3 RU13 and the other CAS / HUB in SP1, this will only be for a few days?
    Is there any problem if I leave the servidors Mailbox Servers in SP1 while CAS / HUB are in SP3 RU13, this will only be for a few days?
    regards
    Microsoft Certified IT Professional Server Administrator

    Hi Yupikaiey.
    Only thing you should be concerned is if you have CAS-CAS proxy or the Mailbox Cluster part.
    Your current plan looks good. Just stay alert for any uncommon issues popping up, which would normally mean due to the difference.
    If you upgrade your servers in this order, you may avoid potential service interruptions.
    Details below:
    Version Constrains are more of between roles of 2007-2010-2013 and not between same version SPs or RUs.
    Exchange 2013 Server Role Architecture
    The Past: Exchange 2007 and Exchange 2010
    Our goal was to make these server roles autonomous units. Unfortunately, that goal did not materialize in either Exchange 2007 or Exchange 2010. The server roles were tightly coupled along four key dimensions:
    2.This also necessitated a tight versioning alignment – a down-level Hub Transport or Client Access shouldn’t communicate with a higher version Mailbox server; in some cases this was enforced (e.g., Exchange 2007 Hub Transport servers cannot deliver messages
    to Exchange 2010 Mailbox servers), but in other cases they were not (e.g., an Exchange 2010 SP1 Client Access server can render data from an Exchange 2010 SP2 Mailbox server).
    The versioning restriction also meant that you could not simply upgrade a single server role to take advantage of new functionality – you had to upgrade all of them.
    The Present: Exchange Server 2013
    If I upgrade the Mailbox server with a service pack or cumulative update, then for a given mailbox hosted on that server, all data rendering and content conversions for that mailbox will be local, thus removing version constraints and functionality issues
    that arose in previous releases.
    Exchange 2007 Servicing
    http://technet.microsoft.com/en-in/library/dd421853(v=exchg.80).aspx
    Deployment Order
    Our test infrastructure guarantees that Exchange hotfixes work across multiple server roles. The order in which you apply the update rollup to the servers is not important except if you are deploying CAS-CAS proxying. Because the update rollups are not segmented
    for different Exchange server roles or for specific file configurations, apply each update rollup package to all Exchange 2007 servers in your environment.
    If you have multiple Active Directory sites, and if you deploy a Client Access server in the proxy sites that do not face the Internet, you must
    apply the update rollup to the Internet-facing Client Access servers
    and to the non-Internet-facing Client Access servers in the proxy site simultaneously. For other Exchange 2007 configurations, we recommend that you
    apply the update rollup package to the Client Access servers before
    you apply it to servers that are running other Exchange 2007 server roles, such as the Mailbox server role, the Hub Transport server role, and the Edge Transport server role.
    Note:
    Applying service packs and update rollups to clustered Mailbox servers requires specific planning and application steps. For more information about how to apply service packs to Exchange 2007 clustered Mailbox servers, see
    Upgrading Clustered Mailbox Servers to Exchange 2007 SP1 or later. For more information about how to apply update rollups to Exchange 2007 clustered Mailbox servers, see
    Applying Exchange 2007 Update Rollups to Clustered Mailbox Servers.
    For Patching and compatibility between versions:
    Determine the service pack level of Exchange. 
    Update rollups are service pack dependent. For example, an Update Rollup 5 package is available for Exchange 2007 and for Exchange 2007 Service Pack 1. To determine the service pack level of Exchange, examine the
    ExchangeVersion property. For more information about how to view the
    ExchangeVersion property and about the build number that is associated with each Exchange version, see
    Exchange Server 2007: Platforms, Editions, and Versions.
    References:
    How to Install the Latest Service Pack or Update Rollup for Exchange 2007
    Exchange Server Updates: build numbers and release dates
    We are looking at doing the roll-up to SP3
    Coexistence of Exchange2007 SP1 and Exchange 2007 SP3
    Regards,
    Satyajit
    Please “Vote As Helpful”
    if you find my contribution useful or “Mark As Answer” if it does answer your question. That will encourage me - and others - to take time out to help you.

  • File compatibility between CS 5.5 MAC and CS 5.5 PC?

    We are currently a PC based shop with a few MAC's tossed here and there.  I have been asked to verify the file compatibility between CS 5.5 MAC and CS 5.5 PC.  Are the files fully compatible?  i.e. can user A on a PC create an illustrator/photoshop/etc document which is then opened by user B on a MAC with no issues?
    Thanks!

    Yes. For the programs you mentioned it has been forever this way and even for programs like Premiere Pro or Encore, that were platform-specific until recently, this is no longer an issue ever since CS5. Of course you will still have to take care of different handling for file paths on different platforms for externally linked files, but that's a different matter and nothing specific to Adobe...
    Mylenium

Maybe you are looking for

  • Air-lap1142n Is it dead or just in need of help?

    Hi, I have a number of air-lap1142n-e-k9 access points, so far they have all been deployed successfully aprt from this one unit. When I deployed it, it joined the wlc as normal, downloaded the image, and I was able to rename it etc.. but then a coupl

  • Trend Analyzer Plotting Zeros (0)

    Hi, I have a simple combo chart plotting sales figures, I wanted to add a simple Trend line using Trend Anlyzer.  I add another series to my chart to point it to the Trend results cells.  When I preview, the Trend Results Cells are all populated with

  • Cannot disable the tax-only calculation in a AR Credit Notes document

    Hello, When trying to raise a tax only credit the following error message appears "Cannot disable the tax-only calculation in a AR Credit Notes document that was based on another document" I have two lines specified in the AR Credit Note screen both

  • Printing in the UK?

    Please could you advise where I can get a photobook created in Photoshop Elements 10 printed in the UK?  My software only gives the option of printing locally.

  • Sending html with Mail

    Is there any way to get Mail to send html code?