Bug 5088398 for JDK 1.5 in SOLARIS SPARC 10

The above bug relates to a java.lang.instrument TCK test deadlock (test11). The bug was solved about a month ago (March, 2008).
My question is when it is going to be integrated in solaris 10 patches or maybe there is already a patch for it.
Thank you
Simcha

This is not the correct place to ask that kind of question, we don't know.
You better contact Sun directly.

Similar Messages

  • WL 5.1sp9 and patches for JDK 1.3 and Solaris 2.8patches

    Are there any patches needed to run WL 5.1 sp 9 with solaris 2.8, JDK 1.3.0, and clarify 10.1. Any response to any topic would be appreciated.

    see http://java.sun.com for patches required for the JVM
    Mike
    Dennis P. Meek <[email protected]> wrote:
    Are there any patches needed to run WL 5.1 sp 9 with solaris 2.8, JDK
    1.3.0, and clarify 10.1. Any response to any topic would be appreciated.

  • SQL*Plus add-on for Instant Client Package on Solaris-SPARC 32bits ???

    Hi,
    I need sqlplus for a solaris 32bits platform, but following this page
    http://www.oracle.com/technology/tech/oci/instantclient/instantclient.html, if I choose Solaris 32-bit (SPARC), it doesn't give a link to download Instant Client Package - SQL*Plus (as it does if I choose Solaris 64-bit (SPARC) or Windows 32-bit).
    I don't understand why... :(

    SQL*Plus is not supported on the 32-bit versions of 64-bit platforms. Please use the 64-bit version of SQL*Plus. Thanks!

  • JDeveloper/OAF in our EBS R12 (12.1.3) web server. Solaris Sparc 64bit mach

    Problem Description
    Am trying to setup and use the JDeveloper/OAF in our EBS R12 (12.1.3) web server. Solaris Sparc 64bit machine.
    Followed the metalink document 416708.1 and took the zip p9879989_R12_GENERIC.zip as instructed in the training class. The readme does not mention about installing in UNIX. I am getting all shorts of errors when invoking "jdev".
    Error occurred during initialization of VM
    java/lang/NoClassDefFoundError: java/lang/Object
    Error: JDeveloper can't recognize the JDK version
    Please let me know the steps.

    Hi ,
    Normally the Jdeveloper setup will be done in Windows (32bit or 64 bit) for development of new pages, or extension.
    I understand that you are trying to setup the Jdevelopment for your development in a Solaris Sparc 64bit machine, it should be possible because Oracle Development use Unix machine to run the Jdeveloper for development.
    Please try
    To work around this you should edit the $JDEV_HOME/jdev/bin/jdev.conf -file and comment out the line that shows:
    SetJavaVM hotspot
    After this you should be able to start JDeveloper 10.1.2.
    You might get some weird sticky startup screen showing in front of the initial questionnaire windows. After passing these (either try moving the windows or just pressing Enter) you should be fine with JDeveloper.
    If that didnt work,
    And check the below thread helps,
    http://kaukovuo.blogspot.com/2005/07/jdeveloper-1012-and-linux-x8664-with.html
    JDeveloper On Ubuntu Linux running Java 6
    http://www.ensode.net/jdeveloper_linux.html
    http://focusthread.com/blog/oracletraining/developertechnical/oaframework/jdev-installer-giving-error-as-could-not-create-the-java-virtual-machine-error-jdeveloper-cant-recognize-the-jdk-version/
    Jdeveloper on solaris: an option for mutualized development env ?
    Thanks,
    With regards,
    Kali.
    OSSi.

  • Solaris Sparc 10, Firefox 3.6, Java v6 update 18 plugin not working

    The java plugin (v6 update 18) for Firefox 3.6 on Solaris Sparc 10 is not working for me.
    $ pwd
    /opt/sfw/lib/firefox/plugins
    $ ls -l
    total 19606
    -rwxr-xr-x 1 root root 9982480 Feb 17 10:34 libflashplayer.so
    lrwxrwxrwx 1 root root 54 Feb 17 11:03 libjavaplugin_oji.so -> /usr/jre1.6.0_18/plugin/sparc/ns7/libjavaplugin_oji.so
    -rwxr-xr-x 1 root root 42704 Jan 17 06:31 libnullplugin.so
    The Shockwave Flash plugin shows up in the Add-ons/Plugins window but java does not.
    Any suggestions?

    Obviously Sun (excuse me, Oracle) does not intend to support the solaris-10/sparc/firefox-3.6 combination. Firefox 3.6 requires the NPAPI and/or NPRuntime interfaces to java, but oracle does not provide the new "libnpjp2.so" java plugin with the jre-6u18-sparc-solaris java download.
    A search at www.oracle.com does not turn up any support announcement about this. You have to learn it the hard way. :(
    If you want to continue to use sparc-solaris, downgrade to firefox-3.5 so you can use the old libjavaplugin_oji.so module. Otherwise run Linux or Mac OS X to stay in the unix camp.

  • Solaris OS patches baseline for JDK 1.4.2

    Hi,
    I find that the installation instruction for JDK 1.4.2 only direct me to latest recommended patches web page. Since we cannot install latest patches everytime we install JDK due to company policy, we need to have a baseline to ensure our application can run.
    Do anyone know the baseline of OS patches for install and running JDK 1.4.2 and can share with me?Thanks a lot.

    Yes, 1.4.2 and 5.0 will also contain this information in a later update release.
    Currently 1.4.2_11 has tzdata2005n
    and 5.0u6 contains tzdata2005m.
    Both these updates contain rules for the Australian daylight savings changes(2006)

  • Is a BUG about 64bit JDK?

    public class TestThread {
        public static void main(String[] args) {
            IRun ir = new IRun();
            Thread it = new Thread(ir);
            it.start();
            try {
                Thread.sleep(1000);
            } catch (InterruptedException ex) {
                Logger.getLogger(TestThread.class.getName()).log(Level.SEVERE, null, ex);
            ir.setStop();
        static class IRun implements Runnable {
            boolean exec = true;
            public void setStop() {
                exec = false;
            @Override
            public void run() {
                int c = 0;
                while (exec) {
                    c++;
                System.out.println("exit while loop");
    In 64bit JDK, it will appear a strange logic to run above code. The thread it will not to end, and the program will not exit. But, if there is Object operate(e.g. new, invoke Object's function(can't retrun base data type), System.out.prinltn), it will run normally. For example, modify run() function :
    publicvoid run() { 
    int c = 0; 
    while (exec) { 
        String s = new String(""); 
        c++; 
       System.out.println("exit while loop"); 
    But in 32bit JDK, it will run correctly. Start thread, and wait 1 seconds, print "exit while loop", and exit program.
    Is a BUG about 64bit JDK?

    thanks, it is error forum!

  • Solaris SPARC 10 64Bit -JDK Installation 1.6.05

    In Sun Solaris 10, not able to create the key using the jce.jar. JDK 1.6 Installed & PATH & JAVA_HOME both are referred to jdk 1.6. It is showing the belwo error
    Error: wrap() failed
    java.security.InvalidKeyException: wrap() failed
    at sun.security.pkcs11.P11RSACipher.engineWrap(P11RSACipher.java:395)
    at javax.crypto.Cipher.wrap(DashoA13*..)
    Caused by: sun.security.pkcs11.wrapper.PKCS11Exception: CKR_MECHANISM_INVALID
    at sun.security.pkcs11.wrapper.PKCS11.C_WrapKey(Native Method)
    at sun.security.pkcs11.P11RSACipher.engineWrap(P11RSACipher.java:391)
    ... 3 more
    Error: java.lang.Exception: Could not wrap the key: wrap() failed
    java.lang.Exception: Could not wrap the key: wrap() failed.
    If any patch is required for solaris sparc 10. Thanks

    Obviously Sun (excuse me, Oracle) does not intend to support the solaris-10/sparc/firefox-3.6 combination. Firefox 3.6 requires the NPAPI and/or NPRuntime interfaces to java, but oracle does not provide the new "libnpjp2.so" java plugin with the jre-6u18-sparc-solaris java download.
    A search at www.oracle.com does not turn up any support announcement about this. You have to learn it the hard way. :(
    If you want to continue to use sparc-solaris, downgrade to firefox-3.5 so you can use the old libjavaplugin_oji.so module. Otherwise run Linux or Mac OS X to stay in the unix camp.

  • Patch for Bug# 11072246 for Solaris86-64 Platforms

    Hello
    Is patch for Solaris86-64 Platforms ok for Sun OS 5.10 or they aren't interchangeable ?
    https://updates.oracle.com/Orion/Services/download?type=readme&aru=15656564
    Oracle Database 11g Release 11.2.0.3.4
    OPTIMIZER Patch for Bug# 11072246 for Solaris86-64 Platforms
    Thanks and regards,
    Pavel

    x86 and Sparc are two separate Solaris platforms - patches for these platforms are not interchangeable.
    HTH
    Srini

  • 1) How to Boot from SAN for T4-1 Server with Solaris 11.1 OS on the disk? 2) How to SMI Label/Format a disk while OS Installation in Solaris 11.1?

    FYI....boot from SAN is required for physical server (T4-1) (not OVM).
    1) How to Boot from SAN for T4-1 Server with Solaris 11.1 OS on the disk?
    The SAN disks allocated are visible in ok prompt. below is the output.
    (0) ok show—disks
    a) /pci@400/pci@2/pci@0/pci@f/pci@0/usb@0, 2/hub@2/hub@3/storage@2/disk
    b) /pci@400/pci@2/pci@0/pci€a/SUNW, ezalxs@0, l/fp@0, 0/disk
    e) /pci@400/pci@2/pci@0/pci@a/SUNW, ealxs@0/fp@0, 0/disk
    d) /pci@400/pci@2/pci@0/pci@8/SUNW, emlxs@0, l/fp@0, 0/disk
    e) /pci@400/pci@2/pci@0/pci@8/SUNW,enlxs@0/fp@0,0/disk
    f) /pci@400/pci@2/pci@0/pci@4/scsi@0/disk
    g) /pci@400/pci@1/pci@0/pci@4/scsi@0/disk
    h) /iscsi—hba/disk
    q) NO SELECTION
    valid choice: a. . .h, q to quit c
    /pci@400/pci@2/pci@0/pci@a/SUNW, ealxs@0/fp@0, 0/disk has been selected.
    Type “Y ( Control—Y ) to insert it in the command line.
    e.g. ok nvalias mydev “Y
    for creating devalias mydev for /pci@400/pci@2/pci@0/pci@a/SUNW,emlxs@0/fp@0,0/disk
    (0) ok set—sfs—boot
    set—sfs—boot ?
    We tried selecting a disk and applying sfs-boot at ok prompt.
    Can you please help me providing detailed pre-requesites/steps/procedure to implement this and to start boot from SAN.
    2) How to SMI Label/Format a disk while OS Installation in Solaris 11.1?
    As we know that ZFS is the default filesystem in Solaris 11.
    We have seen in the Oracle documentation that for rpool below are recommended:
    - A disk that is intended for a ZFS root pool must be created with an SMI label, not an EFI label.
    - Create root pools with slices by using the s* identifier.
    - ZFS applies an EFI label when you create a storage pool with whole disks.
    - In general, you should create a disk slice with the bulk of disk space in slice 0.
    I have seen the solution that using format -e, we change the labelling but all the data will be lost, whats the way to apply a SMI Label/Format on a rpool disks while OS Installation itself.
    Please provide me the steps to SMI Label a disk while installaing Solaris 11.1 OS.

    Oracle recommends below things on rpool: (thats reason wanted to apply SMI Label)
    I have seen in the Oracle documentation that for rpool below are recommended:
    - A disk that is intended for a ZFS root pool must be created with an SMI label, not an EFI label.
    - Create root pools with slices by using the s* identifier.
    - ZFS applies an EFI label when you create a storage pool with whole disks.
    - In general, you should create a disk slice with the bulk of disk space in slice 0.

  • How to submit a bug report for OSB? - restore fails if number of items per page is changed from the default of 30

    In the OSB web gui, one of my users found that if the number of items per page is changed from the default of 30, the restore of the file will fail.  He tested this using recent versions of Firefox and IE.  We have verified this to also be the case using Chrome.
    In a directory containing over 100,000 files, moving 30 at a time to find the one to be restored is a very frustrating user experience.
    How do I file a bug report for this issue?  Is there a workaround for this bug to enable my users to more easily find the file to restore without being restricted to the default of 30 items per page?

    Yes there is a bug in the webtool in the current release. You can use the commandline obtool to do the restore, that is much faster and works fine.
    Thanks
    Rich

  • Error in Setting Auto Start for Oracle DB on Sun Solaris 10

    Hi Gurus,
    I am trying to set my DB to auto start when server reboots. Fllowing is my setting and the error. The issue is that the DB starts but LISTENER is not running...
    Please please help me...
    This is what I used for setting the auto start.
    Thanks,
    Jayant
    SETTING:
    =======
    #!/sbin/sh
    #Match ORACLE_HOME with whatever is in ~oracle/.profile!!!
    ORACLE_HOME=<whatever is Orcale home is>
    case $1 in
    start)
    su - oracle -c $ORACLE_HOME/bin/dbstart
    su - oracle -c "$ORACLE_HOME/bin/lsnrctl start"
    exit 0
    stop)
    su - oracle -c "$ORACLE_HOME/bin/lsnrctl stop"
    su - oracle -c $ORACLE_HOME/bin/dbshut
    esac
    You're not done yet! You now have to dl
    ln -s ../init.d/oracle /etc/rc3.d/S95oracle
    ln -s ../init.d/oracle /etc/rc0.d/K15oracle
    chmod 0755 /etc/init.d/oracle
    ERROR:
    ======
    LSNRCTL for Solaris: Version 10.2.0.1.0 - Production on 02-DEC-2006 10:09:24
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Message 1070 not found; No message file for product=network, facility=TNSTNS-12545: Message 12545 not found; No message file for product=network, facility=TNS
    TNS-12560: Message 12560 not found; No message file for product=network, facility=TNS
    TNS-00515: Message 515 not found; No message file for product=network, facility=TNS
    Solaris Error: 2: No such file or directory
    root@zngds1gk #

    Bingo.... I got it.
    Thanks for your hint about the ./.profile. I was setting env variables in .cshrc file and my default shell for "oracle" user was sh.
    Then I changed the default shell for oracle user to csh and viola..... it works.
    root@zngds1gk # su - oracle
    $ id
    uid=100(oracle) gid=101(dba)
    $ setenv
    HOME=/space/oracle
    PATH=/space/oracle/app/oracle/product/10.2.0/Db_2/bin:/usr/bin:
    LOGNAME=oracle
    HZ=100
    TERM=xterm
    SHELL=/bin/sh
    $ exit
    root@zngds1gk # usermod -u 100 -s /bin/csh oracle
    root@zngds1gk # su - oracle
    zngds1gk%
    zngds1gk% setenv
    HOME=/space/oracle
    PATH=/space/oracle/app/oracle/product/10.2.0/Db_2/bin:/usr/bin:
    LOGNAME=oracle
    HZ=100
    TERM=xterm
    SHELL=/bin/csh
    zngds1gk% cat .cshrc
    umask 022
    setenv ORACLE_BASE /space/oracle/app/oracle
    setenv ORACLE_SID adm
    setenv DISPLAY 47.102.212.108:0.0
    setenv ORACLE_HOME /space/oracle/app/oracle/product/10.2.0/Db_2
    setenv PATH /space/oracle/app/oracle/product/10.2.0/Db_2/bin:$PATH
    And now it works...
    Thanks.
    ~Jayant

  • [svn:fx-trunk] 10075: Cleanups from the spark text changes and some bug fixes for VideoElement.

    Revision: 10075
    Author:   [email protected]
    Date:     2009-09-08 18:01:58 -0700 (Tue, 08 Sep 2009)
    Log Message:
    Cleanups from the spark text changes and some bug fixes for VideoElement.  Also some PARB changes for UIComponent.
    TitleBar: Changing the skin part type from Label to Textbase
    UIComponent: skipMeasure()->canSkipMeasurement() to be in line with GraphicElement.  This has been PARB approved.
    UIComponent: same with hasComplexLayoutMatrix...this replaces hasDeltaIdentityTransform.  This has been PARB approved.
    StyleProtoChain: cleanup around what interfaces to use
    TextBase: clean up code that?\226?\128?\153s no longer needed.
    VideoElement: Fixing 4 bugs:
    SDK-22824: sourceLastPlayed keeps track of what video file we?\226?\128?\153ve called play() with last.  This way if a user pauses the video and wants to start it up again at the same point, we can call play(null) on the underlying FLVPlayback videoPlayer.  However, anytime the souce changes, we want to null out sourceLastPlayed.  This was causing a bug when someone set the source to null and then reset it to it?\226?\128?\153s previous value.
    SDK-23034 (GUMBO_PRIORITY): This deals with some FLVPlayback quirks around sizing.  I had put in a fix so we weren?\226?\128?\153t setting width/height on the underlying videoPlayer too many times, but apparently we need to make sure it always gets called once.  Hopefully when switching to Strobe we can cleanup this logic...I put a FIXME in to do this.
    SDK-21947/ SDK-22533 - some video files don?\226?\128?\153t always send out a metadata event.  I?\226?\128?\153m not quite sure why this is, but in case this happens, we do a check in the ready handler to see whether we should call invalidateSize() to make sure it gets sized properly.
    QE notes:-
    Doc notes:-
    Bugs: SDK-22824, SDK-23034, SDK-21947, SDK-22533
    Reviewer: Glenn, Corey
    Tests run: checkintests, Button, GraphicTags, VideoElement, and VideoPlayer (some VideoPlayer were failing, but I think it should be fine)
    Is noteworthy for integration: Yes
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-22824
        http://bugs.adobe.com/jira/browse/SDK-23034
        http://bugs.adobe.com/jira/browse/SDK-21947
        http://bugs.adobe.com/jira/browse/SDK-22533
        http://bugs.adobe.com/jira/browse/SDK-22824
        http://bugs.adobe.com/jira/browse/SDK-23034
        http://bugs.adobe.com/jira/browse/SDK-21947
        http://bugs.adobe.com/jira/browse/SDK-22533
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/components/windowClasses/TitleB ar.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/StyleProtoChain.as
        flex/sdk/trunk/frameworks/projects/spark/src/mx/core/UITLFTextField.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Group.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Label.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/RichEditableText.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/RichText.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/GroupBase.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/Skin.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/TextBase.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/supportClasses/AddActionInstan ce.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/supportClasses/AnimateTransfor mInstance.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/supportClasses/RemoveActionIns tance.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/supportClasses/GraphicEleme nt.as

  • Patch number for Oracle 8.1.7.4 on Solaries SPARC 64bit

    Guys,
    Oracle Version: 8.1.6.0
    OS: Solaris SPARC 64-bit
    I would like to patch to 8.1.7.4. I need a patch number for this, I find it very difficult to search for the patch on Metalink. Would you please suggest the patch number and maybe also suggest the easier way to search for patches on Metalink.
    Thanks in advance
    Durbanite

    Go to Metalink
    Click on "Patches & Updates" tab
    Click on "Simple Search"
    Search by "Product and Family" and enter RDBMS Server
    Choose the target release you are looking for (8.1.7.4)
    Patch type => "Patchset/Minipack"
    Classification => "Any"
    Choose the "Platform or Language" your plateform (Sun Solaris SPARC 64bits)
    And finally click on Go button.
    You'll get only one row as result, the patchset you are looking for actually.
    Nicolas.

  • Hi. Whenever I go through one of the menus in firefox, the links remain highlighted after my mouse passes over them. Is there a bug fix for this or is there something wrong with my computer? I am running windows 7 if that helps.

    Hi. Whenever I go through one of the menus in firefox, the links remain highlighted after my mouse passes over them. Is there a bug fix for this or is there something wrong with my computer? I am running windows 7 if that helps. This problem started ever since I upgraded to version 5.

    I have downloaded and used the iPod Reset Utility, alot that did. My current state is iTunes on my XP Home with SP3 sees the iPod. When I drag a song to the iPod, the Sync message appears for about 5 minutes, then the Apple symbol appears. But no song has been transferred to the iPod.
    I tried to tap into the XP iTunes database from my iBook, but although it acted like it would add the XP library to the iBook library, it did not. I've got 19 Gs of songs on the XP. If I have to load each song from its original CD to get it on my iBook I'm going to start looking for some other app or device so that I can listen to my music.
    It is a shame, in the old days, Apple techs use to look at what was going on, now it appears they don't, so they never know they have problems until Apple's profits fall.

Maybe you are looking for

  • I can't open a new tab up in the same window when I click the little + sign next to the first tab. How do I get that to work on FF4 for Windows Vista?

    I have a Sony Vaio labtop with Windows Vista, just updated to the new Firefox and now when I go to add a tab in the same window, it won't allow a new one. I clicked the + button/tab thing a bunch of times and nothing happens. What can I do to fix thi

  • NEED TO DETERMINE USERS THAT HAVE LOGGED IN WITH A SPECIFIC ROLE

    I have a requirement to determine which users have logged in with a specific role or accessing a specific application. I know I can use the ORASSO.WWSSO_AUDIT_LOG_TABLE_T table to see the users that have logged in, but need to know which table to joi

  • Error connecting to COM port

    Hi everybody! I have create the application use Labview 2009. My application connect to COM port. It is very good on my computer that installed Labview 2009. When I create Installer, I add NI Measurement & Automation Explorer 4.6 in Addtional Install

  • I can't scroll using the arrow keys!!

    I have been having a problem lately where I cannot scroll within applications using the up and down arrow keys. on my macbook, using the arrow keys is something i liked to do to scroll in a page instead of using the trackpad, and now it doesn't work.

  • HT5037 iPhoto issue

    Hello. I have a new 13 Mac Book Pro with Retina display. I'm having trouble using iPhoto on my new Mac Book Pro. Every time I try to open the app it says my library needs to be prepared. I've downloaded the library upgraded tool and let it run. It sa