Is it possible to change JDK version to 1.7 in Weblogic 10.3.0

Currently, I m using web logic version 10.3.0 which is compatible with JDK 1.6.
I would like to change the JDK from 1.6 to 1.7 will it be possible ? if so can you pls provide the steps.
I m planning to deploy my application which runs on JDK 1.7

Some more info, from the certification matrix (http://www.oracle.com/technetwork/middleware/ias/downloads/oracle-wls-certification-10gr3-matr-129284.xls)
"1. JDK 7 certification is available only with WLS 10.3.6+/FMW 11.1.1.6+. Oracle does not support use of JDK 7 with WLS 10.3.1-10.3.5/FMW 11.1.1.1.0 - 11.1.1.5.0. ..."
If you do not care about certification (and support, because that will be gone as well when running a non-certified environment) you can use the following to change the JVM.
In the setDomainEnv file (located in the ${DOMAIN_HOME}/bin directory) find the following:
BEA_JAVA_HOME="/home/oracle/jrockit-jdk1.6.0_29-R28.2.2-4.1.0"
export BEA_JAVA_HOME
SUN_JAVA_HOME=""
export SUN_JAVA_HOME
if [ "${JAVA_VENDOR}" = "Oracle" ] ; then
     JAVA_HOME="${BEA_JAVA_HOME}"
     export JAVA_HOME
else
     if [ "${JAVA_VENDOR}" = "Sun" ] ; then
          JAVA_HOME="${SUN_JAVA_HOME}"
          export JAVA_HOME
     else
          JAVA_VENDOR="Oracle"
          export JAVA_VENDOR
          JAVA_HOME="/home/oracle/jrockit-jdk1.6.0_29-R28.2.2-4.1.0"
          export JAVA_HOME
     fi
fiby adding the JAVA_VENDOR variable you can set a specific JAVA_HOME (as can be seen from the if statement above), for example,
BEA_JAVA_HOME="/home/oracle/jrockit-jdk1.6.0_29-R28.2.2-4.1.0"
export BEA_JAVA_HOME
SUN_JAVA_HOME="/home/oracle/jdk1.6.0_31"
export SUN_JAVA_HOME
JAVA_VENDOR="Sun"
export JAVA_VENDOR
if [ "${JAVA_VENDOR}" = "Oracle" ] ; then
     JAVA_HOME="${BEA_JAVA_HOME}"
     export JAVA_HOME
else
     if [ "${JAVA_VENDOR}" = "Sun" ] ; then
          JAVA_HOME="${SUN_JAVA_HOME}"
          export JAVA_HOME
     else
          JAVA_VENDOR="Oracle"
          export JAVA_VENDOR
          JAVA_HOME="/home/oracle/jrockit-jdk1.6.0_29-R28.2.2-4.1.0"
          export JAVA_HOME
     fi
fiNow the Sun JVM will be used.

Similar Messages

  • Is it possible to alter JDK version used by OAS?

    I'm using OAS 101202 and am currently having issues deploying an ear file that's been built by java 1.5. OAS 101202 only uses java 1.4.2_06. When i deploy my ear file I get the following java incompatibility error
    java.lang.UnsupportedClassVersionError: org/apache/struts2/dispatcher/FilterDispatcher (Unsupported major.minor version 49.0)
    The version of struts we're using requires 1.5.
    Is it possible to get 101202 working with 1.5?
    Thanks
    Paul

    I have some really bad experiences with changing the jdk version, but you can install one next to the AS and then do some config magic in server.xml (if I'm correct) to point to the new java compiler. For the exact syntax you have to search the docs though (it was something like javac-$RANDOM_WORD_I_FORGOT )

  • How to change JDK version??

    I have a problem, I am running Jdeveloper with out problems, but always, when JDeveloper is started I have this msg:
    JDK version not supported. ...
    JDeveloper executes with Java 1.6.0_51, and at least I need 1.7.0_06.
    I have downloaded the latest JDK and installed it, but nothing happen!!!
    How could I solve this??? I have a Mac OSX when I run
    $ java -version
    java version "1.7.0_25"
    Java(TM) SE Runtime Environment (build 1.7.0_25-b15)
    Java HotSpot(TM) 64-Bit Server VM (build 23.25-b01, mixed mode)
    I seems to be OK, but how can I indicate Jdeveloper to run this JDK? Not 1.6, I have edited also jdev.conf
    And i found : SetJavaHome @JAVA_HOME@
    How to change Java_Home????

    Hi,
    Always mention your JDev version.
    Have you tried setting SetJavaHome <your_java_home_where_jdk17_installed> in the jdev.conf file and see if it gets opened properly?
    -Arun

  • Is it possible to change the version of Flash Player that Adobe Reader 9 uses?

    I'm currently attempting to put some flash content within a pdf using the new Rich Media extensions.  I have a working Flash .swf  that uses some of the newer methods that only Flash Player 10 supports.  The file can run on its own within Flash Player 10, but inside Adobe Reader 9 the flash player version is set to WIN 9,0,159,0 and the .swf file does not work.  Is there any way to change the version of the Flash Player used in Adobe Reader 9?

    Try code like this:
    <pre><nowiki>#window-controls .toolbarbutton-icon {
    width: 25px !important;
    height: 25px !important;
    </nowiki></pre>
    The three buttons have these IDs:
    <pre><nowiki>#minimize-button
    #restore-button
    #close-button</nowiki></pre>

  • How to change weblogic 10.3 's JDK version

    I installed weblogic 10.3 and its default JDK version is 1.6.0_05, but I want to update the JDK to 1.6.0_18, how should I do it?
    I tried to create a new domain and in "JDK Selection", I select option "Other JDK",path is "C:\Program Files (x86)\Java\jre6", but when start admin server, error "you wrongly used \Java\jre6 "(Which is translated from Japanese).
    How should I do?

    Hi,
    Please refer to the Post: http://weblogic-wonders.com/weblogic/2010/09/03/why-and-how-oracle-jrockit/
    If you want to use a Different Version of Sun JDK then please change the JAVA_VENDOR=Sun as well....in the folowing Image:
    http://weblogic-wonders.com/weblogic/wp-content/uploads/2010/09/setting_JAVA_JOME_In_script.jpg
    Example : (setDomainEnv.cmd) for WINDOWS OS
    set JAVA_HOME=C:\myJDKs\jdk1.6.0_18
    set JAVA_VENDOR=Sun
    =-- = = = = = =-- = = = = = =-- = = = = = =-- = = = = =
    <b><font color=red>Just in case if you still face the same problem then do the following:</font></b>
    In your Windows OS box...
    RightClick on MyComputer ---> Advanced(Tab)---> Envirunment Variables (Button)---->User Variables (Section) add a new variable:
    Variable Name : PATH
    Variable Value : C:\myJDKs\jdk1.6.0_18;%PATH%;
    OK
    Just to verify this now open a fresh command prompt and then Just run the following command:
    java -version
    Thanks
    Jay SenSharma
    http://weblogic-wonders.com/weblogic(WebLogi Wonders Are Here)

  • Is it possible to change the read/write permissions on a time machine back-up of iTunes? I need to restore it, but old version is locked....

    Is it possible to change the read/write permissions on a time machine back-up of iTunes? I'm needing to restore it as my phone deleted half our playlists during sync  & am not seeing a way to unlock the permissions. I have the current version unlocked, but can't seem to get the backed-up version. When I click on restore I get a pop-up that says iTunes can't be deleted as it is part of the OS. I'm not even trying to delete, just restore the old version. Any suggestions?

    Hmmm, ok I'll give it a shot. I've always had the iTunes sync w/ my phone set up to only load selected playlists to the phone b/c there's a lot more in iTunes than I have room or desire for on my phone. A few months back I started having trouble w/ trying to sync everything & subsequently adding more to the phone than it could hold. The quickest thing at the time was to unclick the sync music option in iTunes so I could still backup the phone to the computer & not have a problem.
    When I asked about it during one-to-one session shortly after, they advised me to delete the music off my phone & then re-sync it to the computer, run a backup of the phone & redownload the music to the phone. When I tried this it ended up deleting all my playlists (but not my husband's) from iTunes. Irritating, but I've been rebuilding the playlists since. I had also unclicked sync music again & an Apple person told me the most likely best fix was to delete & reload iTunes completely.
    A few days ago I realized I hadn't backed up the phone to the computer in over a month so after deleting & reinstalling iTunes, & w/o changing anything (sync music was STILL unchecked) I ran a backup & my phone went from having 4 GB free space to being 2 GB over capacity due to iTunes trying to download the entire music library to the phone. I made a one-to-one appt again & it was suggested AGAIN that I delete all the music off my phone & then resync it to the computer & redownload the music. We did this (though a few random songs that had previously been purchased somehow remained on the phone), I got home, connected the phone & instead of the music that shows  as 'on my device' disappearing from iTunes it just sat there, so, as the guy had told me I MIGHT have to do, I threw all those songs showing in iTunes as being on my phone, in the trash so that it was completely clear.
    At this point I checked sync music, made sure the options were 'selected playlists only', checked the ones from my own list that I wanted (I usually have one playlist of comedians from my husband's folder that I also have on the phone, but didn't check it at this point). It uploaded all my stuff just fine, but for whatever reason when it saw that I wasn't uploading that comedy playlist any longer, it not only didn't upload it but proceeded to delete my husband's entire folder of playlists from iTunes. -_- I got on the phone w/ an Apple support person right away but he wasn't able to tell me anything .. basically said we'll have to rebuild everything. I asked about the possibility of using time machine, he said he's not qualified to answer that, so that's when I started looking around online & found, among others, the link I referenced a couple replies ago.
    I hope this all makes sense. It's been a long-term issue so I'm trying to go from memory as I figured to begin w/ that I had just made a mistake somewhere, so didn't try to document anything. Now w/ it having happened a 2nd time, I'm not sure if it was 'user error' or something else.......

  • How to change the jdk version of the sun one appserver 8.1

    hi
    i have installed appserver8.1 with a jdk 1.5 .
    i am facing some problem with the parsers (my application needs to use a crimson parsers which is not supported by jdk1.5 i guess)
    so i am trying to change the jdk version by changing the asenv.conf file
    but the appservers wont start up if i do so.
    help !! please

    This is strange. Setting AS_JAVA to the install location of your jdk instance should work. I have done it many times.
    What kind of errors are you getting in the server log file?

  • Is It  POSSIBLE to change the Technical Name of Z-version Query

    Hi  Friends ,
    I was changed all quereis and cube from standard version to Z version.
    For queries, by using rszc , i was changed to Zversion,Now again is it
    possible to change the Technical Name of Zversion Query ?
    If possible , can you please tell me the process ?

    Hi Hameed,
    This may be the reason you are getting an error.
    The target InfoCube, the InfoCube for the query copies, must contain all the InfoObjects of the source InfoCube (InfoCube of the original queries).
    The another reasons may be the copying of queries within the same cube shouldn't be done by RSZC.
    It's better to approach the Bex Query designer.
    Hope you understood..
    Check the link below for more information:
    Re: How to copy query elements without Bex
    http://www.bi-expertonline.com/article.cfm?session=&id=2055
    Re: copy queries + variants + workbooks -- RSZC ?
    Regards,
    Ravi Kanth
    Edited by: Ravi kanth on Jun 10, 2009 10:03 AM

  • Action not possible because change version exist

    Dear All,
    We are at SRM5.0- Extended Classic scenario and facing issues for changing some of the PO documents.
    When the buyers are trying to change the PO, error is getting populated as 'Action not possible because change version exist'. This error is not allowing us to change the PO.
    These POs are changed in the past and all the relevant changes are reflected to backend system with no issues. In other words Change Versions do exists for these POs. Flags for Change Version completion is also set and all historical versions can be seen but without change history.
    Additional information -
    1. No approval workflows are implemented for PO.
    2. No locks are active for these documents.
    Appreciate your help!
    Regards,
    Sagar

    Hi Sagar and thanks for your response,
    well, actually the active change version won't be preserved in any case. It would be overwritten in the first scenario, and deleted in the second one. The reason why I'd like to have this "brute force" method is to face an eventual human error. Suppose that a disalignment between R3 and SRM has been created; my report basically "alligns" the SRM version to the corresponding R3 one. And suppose also that the user made a mistake so that the program must be used a second time. I'd like to provide a way to "UNDO" the first execution of the program, that is to say: i'd like to provide a way to OVERWRITE the actual active, change version, or alternatively delete the change version that the report did create the first time it has been launched.
    Hope it's a bit clearer now
    Thanks for any hint/suggestion you can give me
    EDIT: Oh, and please... can you provide me further information about your solution? I mean, use of that FM to unlock an active version of the PO and then the proper call to BBP_PD_PO_UPDATE specifying how you managed input params. Thanks a lot
    Edited by: Matteo Montalto on Apr 9, 2009 11:43 AM

  • Is it possible to change the Mac Version of Photoshop CS6 Extended to a Windows Version ?

    Is it possible to change the Mac Version of Photoshop CS6 Extended to a Windows Version ?

    Yes. It's called a Platform swap.
    Order product | Platform, language swap

  • Hi, is it possible to change from photoshop cs6 extended student windows to the mac version?

    hi, everybody,
    is it possible to change from the photoshop cs6 extended student Windows Version to the mac version?
    thank you for your help
    fabian

    Change product platform or language
    You can swap languages/platforms for a latest version product if you follow the instructions at the following link:
    http://helpx.adobe.com/x-productkb/policy-pricing/order-product-platform-language-swap.htm l

  • Is it possible to change Calendar from the American to a British version?

    Is it possible to change the Calendar from an American to a British version?

    Use:
         Apple Menu > System Preferences > Date & Time > Date & Time
    Click the 'Open Language and Region' button on the bottom right of on the panel. Choose:
         Region: United Kingdom
         First Day of the Week: Monday or Sunday according to your taste
         Calendar: Gregorian
    If you want more control over date formats use the 'Advanced...' button.
    C

  • Mac version - Is there a possibility to change to the windows version?

    Hello Adobe team, 
    I bought an Adobe Creative Suite 6 Master Collection as "Student and Teacher Edition" for MAC in 2013. I am now working in a pure Windows environment and would like to exchange the product in a Windows version. Alternatively, I could also imagine to sell my software and to use the cloud version. What are my options?   1. Is there a possibility to change to the windows version?   2. Is it allowed to sell the “Student and Teachers Edition”? And if so, only to students and teachers?   THANKS for the help! The software was quite expensive ...

    2. Is it allowed to sell the “Student and Teachers Edition”?
    No. The whole point of the special licensing is that it's meant to support people in education or else the low price wouldn't exactly make sense - if everyone just bought used edu licenses, Adobe would bankrupt in a predictable timeframe.
    1. Is there a possibility to change to the windows version?
    Order product | Platform, language swap
    Mylenium

  • Is it possible to change the touchpad settings back to an older version after updating to maverick?

    Hello!
    I just updated to Maverick (really late I know) and I found that I really dislike the new options for the touchpad.
    My question is the following:
    Is is possible to change it back to the old options while keeping the new OS?
    Hope you can help me out.
    - Kanib

    No.  If you want the prior options, you will have to revert to the prior OSX.
    Ciao.

  • Setting different JDK versions for Different webapp in Tomcat

    Hi All,
    I have 2 web-applications in Tomcat 5. Now for Java I have j2sdk1.4.2 & j2sdk1.3..
    Now One of my application needs j2sdk1.4.2 while other can run only with
    j2sdk1.3.. (This is an old project & there are java class package norms - like every class should be in a package to import it now. But earlier it was not strict).
    Means this is absoulte for me to run one application with version 1.3 while other with 1.4.
    But I can set Java_Home env. varibale only once. How can I tell my each web-application to take thier own jdk version in compiling & running.
    Is this allowed in J2EE/Web-Containers.
    Please suggest if there is any such setting which makes it possible.
    THanks you all in advance...
    Manoj :confused:

    wouldn't matter if you could.
    The package enforcement is NOT something from J2SDK 1.4 but from the version of Tomcat used.
    Each Tomcat instance will use the same JVM for all webapps running inside it. You'll need a separate Tomcat instance of an older version for the older webapp (or better yet change it around to the new rules).

Maybe you are looking for

  • Tax calculation on sales order and invoice is different

    2007A, SP0, PL49 The tax on a sales order does not match the tax on the linked delivery and invoice by 1 cent. We take payment based on the sales order amount as the delivery and invoice are done after the fact. Why is the tax calculated differently

  • How can we make consecutive left outer joins in Composite Provider?

    Hi, For the following design: Sales order and Delivery DSO's are unions on field Delivery Number. Invoice(Billing DSO) is having left outer join and joins with Sales Order DSO's based on the field Sales Order Number. Shipment DSO has left outer join,

  • PDF Text Blurry Fuzzy... but only on one machine...

    I could really use your assistance. When viewing a PDF, one user can see the PDF text with great clarity, but the same PDF viewed by other users, the text appears fuzzy / blurry. I've tried to massaged about every Preference I could (within Acrobat)

  • Failover cluster storage pool cannot be added

    Hi. Environment: Windows Server 2012 R2 with Update. Storage: Dell MD3600F I created an LUN with 5GB space and map it to both node of this cluster. It can be seen on both side on Disk Management. I installed it as GPT based disk without any partition

  • Create space in imovie & backup projects and used clips

    My imovie app. is full of projects and the clips used to make them. Wondering best way to organize and safely export both to clear space on the HD?