Bug in Fortran-95 compiler (Linux-x86, compiler 8.3, dated 2009/03/06)

The following test code is incorrectly flagged as being in error:
module confuse
  implicit none
  interface submod
     module procedure suba
     module procedure subb
  end interface
contains
  subroutine suba(nz,info,n)
    integer, intent (in) :: nz
    integer, intent (out) :: info
    integer, optional, intent (in) :: n
    info = 0
  end subroutine suba
  subroutine subb(n,nz,info,m)
    integer, intent (in) :: n, nz,m
    integer, intent (out) :: info
    integer :: nzz
    info = 0
    nzz = 0
    call suba(nzz,info,n = n)
  end subroutine subb
end module confuse
module deps
use confuse
contains
  subroutine prolng(ierr)
  integer, intent(inout) :: ierr
  integer :: cnvtx=2
  integer :: nz=0
  integer :: info
  ierr=0
  call submod(nz,info,n=cnvtx)
  if(info.ne.0)ierr=1
  return
  end subroutine prolng
end module depsThe error message is
"ambig.f90", Line = 35, Column = 25: ERROR: More than one actual argument has been specified for a dummy argument.
The message goes away if the keyword argument name is changed from 'n' to something else, such as 'ni'.

About a month ago, I reported this bug to Sun through the prescribed bug report Web interface, and received an automated reply announcing internal review ID of 1464791. However, there was no follow-up E-mail acknowledging the recognition of the bug and a bug number.
Sorry, I do not have a paid support subscription.

Similar Messages

  • Please help me to debug a bug for instant client on linux x86-64

    I am a c junior programmer, I wrote a c demo based on <Call Interface Programmer's Guide>,but i found failed sometimes and successful somtimes when i run my demo on linux x86-64.
    I wondered why it was failed sometimes and successful sometimes, so i used command strace to debug my demo.
    I found my demo was failed when called function getsockopt  whose third argument was negative. The following code:
    getsockopt  (5, SOL_SOCKET, SO_SNDBUF, [-8683868481690533888], [4]) = 0
    my demo run successful when the third argument of function getsockopt was positive.The following code:
    getsockopt(5, SOL_SOCKET, SO_SNDBUF, [4636081913715490816], [4]) = 0
    I downloaded rpm package of instant client for linux x86-32 and installed, the same demo worked perfectly on linux x86-32.
    Did instant client for linux x86-64 has a bug?
    any advise would be great.
    Thank you!

    thanks.
    I have solved this problem that result in my c demo.
    I was a wrong way to use this function OCIBindByName. I ignored it's Indicator Variables must be 0 , -1 or -2.

  • License for cross-compilation for solaris 10 sparc on Linux x86

    I'd like to do cross-compilation for solaris 10 sparc on Linux x86 using gcc (for linux). To do that, I have to copy libraries (/lib/64) and includes (/usr/include) from a sparc machine to my linux machine.
    The compilation will be run on about (up to) 50 Linux machines (by various developers). We also have 3 solaris-10-SPARC machines.
    I wonder if Solaris license allows me to copy the includes and libs to perform compilation elsewhere.
    I also checked "OTN License Agreement for Oracle Solaris", but it looks like Oracle allows for installing "the programs" on up to 3 machines, but I need it on 50.
    Thanks for any suggestions or redirections to a proper place where I can get an answer.
    Marek

    When installing Solaris 10 01/06 on a Dell 1850 I receive an error message during the install saying "no disk found". I assume that the drive/controller is not recognized. The Dell 1850 is listed under the HCL for Solaris 10 10/06. I don't believe I can use the Solaris(TM) Device Driver for the LSI MegaRAID Adapter floppy with 1/06. I don�t have any other Solaris boxes up so I can�t build a jump start server. Any suggestions?

  • Bug in the JIT compiler?

    Hi All,
    I don't know if I have found a bug in the JIT compiler.
    uname -a : Linux kiloo-server2 2.6.26-2-amd64 #1 SMP Fri Mar 27 04:02:59 UTC 2009 x86_64 GNU/Linux
    java -version:
    java version "1.6.0_12";
    Java(TM) SE Runtime Environment (build 1.6.0_12-b04)
    Java HotSpot(TM) 64-Bit Server VM (build 11.2-b01, mixed mode)
    all in our server module runs fine, until we try to rescale/transform an Image from a rss feed. after this a CompilerThread0 is started and never stops.
    it just keeps running at 100% on core0
    so right now we are running our server module with the -Xint option.. this is of course not an ideal solution.
    Before we moved the server module to linux, it was running on a windows machine (the same code), and there was no JIT compilerthreads problems.
    Is there anybody who has experienced anything like this, and is there a workaround to it?
    BR
    Kristian

    Kristian_Iversen wrote:
    Hi All,
    I don't know if I have found a bug in the JIT compiler.To start with you would need to reduce the code from your "server module" to a very small piece of code that demonstrates the problem.

  • BUG in WLE IDL compiler

    Hi,
    I want to report a bug in the WLE5.0 IDL compiler. It occurs in the
    generated stub, skeleton and implementation files (*c,*s and _i)
    files. Here is a description of the problem:
    Say we have the following IDL:
    Filename:filewithmoduleM1.idl
    module M1 {
    #include "BoundaryClasses\CORBA\Types\M1Complex.idl"
    interfaceService {
    boolean method1 (
    interface Factory {
    Service findService ();
    The IDL compiler loses track of the Module M1 and does not scope the
    interfaces inside the module. Henck even if we register a factory called
    APSBalReporting::Factory it is registered as Factory. The problem gets
    more interesting if we have another module that includes the first as
    shown below:
    Filename:filewithmoduleM2.idl
    #include filewithmoduleM1.idl
    module M2 {
    #include "BoundaryClasses\CORBA\Types\M1Complex.idl"
    interface Service {
    boolean method2 (
    interface Factory {
    Service findService ();
    Here it thinks that Service and Factory are the ones for module M1 and
    so generates the return type as M1::Factory and M1::Service instead of
    M2::Factory and M2::Service.
    The IDL compiler used to work fine with code such as the above
    previously.
    Please let me know if you have any feedback for this bug and if any of
    you have tried it.
    Thanks,
    Raman Ramesh
    678-358-3581
    mailto:[email protected]
    www.cicube.com

    BEA customers who need this problem corrected must use WLE 5.1. A patch to WLE 5.0
    or WLE 5.0.1 is not available.
    Wendell MacKenzie wrote:
    We received a patch that fixed this problem under WLE 5.01. There were problems
    back porting the fix into the 5.0 release. Talk to Tom Hegadorn.
    Mary Ann Slavin wrote:
    Actually that is Clarify CASE 162819 not a Clarify CR number. That particular
    problem has been corrected in WLE 5.1. This problem cannot be patched in WLE
    5.0.1, so if you have encountered this problem, you should upgrade to WLE 5.1
    and it is corrected as part of the base product, no patch required.
    MAS
    Wendell MacKenzie wrote:
    You have 2 choices:
    - upgrade to Version 5.1 (which includes CR162819)
    - obtain the patch from BEA support for CR162819 to fix a bug in the IDL
    compiler
    that caused Module and Interface scope names to work incorrectly. Also,
    where
    nesting of IDL #includes exceeded 1 level deep, this caused problems.
    You will have to install the patch onto version 5.01.
    Regards,
    Wendell MacKenzie
    Ram Ramesh wrote:
    Hi,
    I want to report a bug in the WLE5.0 IDL compiler. It occurs in the
    generated stub, skeleton and implementation files (*c,*s and _i)
    files. Here is a description of the problem:
    Say we have the following IDL:
    Filename:filewithmoduleM1.idl
    module M1 {
    #include "BoundaryClasses\CORBA\Types\M1Complex.idl"
    interfaceService {
    boolean method1 (
    interface Factory {
    Service findService ();
    The IDL compiler loses track of the Module M1 and does not scope the
    interfaces inside the module. Henck even if we register a factory called
    APSBalReporting::Factory it is registered as Factory. The problem gets
    more interesting if we have another module that includes the first as
    shown below:
    Filename:filewithmoduleM2.idl
    #include filewithmoduleM1.idl
    module M2 {
    #include "BoundaryClasses\CORBA\Types\M1Complex.idl"
    interface Service {
    boolean method2 (
    interface Factory {
    Service findService ();
    Here it thinks that Service and Factory are the ones for module M1 and
    so generates the return type as M1::Factory and M1::Service instead of
    M2::Factory and M2::Service.
    The IDL compiler used to work fine with code such as the above
    previously.
    Please let me know if you have any feedback for this bug and if any of
    you have tried it.
    Thanks,
    Raman Ramesh
    678-358-3581
    mailto:[email protected]
    www.cicube.com

  • Bug while editing and compiling the procedure

    Bug while editing and compiling the procedure in Sql Developer 1.5.4
    the error is
    ora -00904 "ATTRIBUTE" Invalid Identifier
    Edited by: user4448643 on Mar 16, 2009 5:09 AM

    I'm not trying to be snippy but this is the answer I got from you in another thread about the same issue:
    +"I'm not sure I said it's being worked on - the bug is logged and in the queue.+
    +Support will tell you to move to a supported version of the database, this is true. The same is true for the forum, if you are on an unsupported database version you're encouraged to move to a supported release.+
    +If you need to work with 9i, then use SQL Developer 1.5.3, the error is not in that release."+
    When I read that I got that I should not assume the bug was being worked on and that the SQL Developer team sees 9i as having a short remaining life.
    JB

  • K7tpro(6330) BIOS have BUGs with Geforce2 GTS on linux !

    MSI K7T Pro (6330) motherboards working with Geforce2 GTS GPU can't load driver correctly on linux !
    I use the newest SBIOS v3.6 and the newest GPU driver NVIDIA-Linux-x86-1.0-7184, While loading driver It report:
    Code: [Select]
    nvidia: no version for "struct_module" found: kernel tainted.
    nvidia: module license 'NVIDIA' taints kernel.
    ACPI: PCI Interrupt 0000:01:00.0[A] -> Link [LNKA] -> GSI 10 (level, low) -> IRQ 10
    NVRM: request_mem_region failed for 496M @ 0xe0ffffff. This can
    NVRM: occur when a driver such as rivatv is loaded and claims
    NVRM: ownership of the device's registers. nvidia: probe of 0000:01:00.0 failed with error -1
    NVRM: The NVIDIA probe routine failed for 1 device(s).
    NVRM: None of the NVIDIA graphics adapters were initialized!
    I contacted with Nvidia's supporter, They say, If report "request_mem_region failed for 496M @ 0xe0ffffff" that's bec. of motherboard's System BIOS have Bugs, more details on:
    http://www.nvnews.net/vbulletin/showthread.php?t=80587
    (include all system information and error report )
    When MSI could update 6330's BIOS ?

    My Geforce card is running well on win32 system. So It will be in order.
    I use the offical FC4 release, also the kernel is FC4's release version 2.6.11-1.1369_FC4. The Nvidia's driver is recompiled with Kernel's(2.6.11-1.1369_FC4) source, So there is no compatibility problem. There is no problem on compile-time, But errored while loading nvidia.ko.
    As I know MSI-6330 had BIOS peoblem working with Geforce card historically, According to the BIOS update notes:
    e.g.: on 2000-09-13 relaseed v1.5 BIOS to fix problem on Geforce 256 and MX card
    e.g.: on 2001-08-03 released v2.9 BIOS to fix problem on Geforce2 AGP card ( I use this card )
    So It already released serval BIOS updates up to v3.6, I'm afraid there are some hidden problems.
    Quote
    You are sure the Geforce card is in order? Especially the memory chip?
    Please also say what parts you have in the system.

  • Oracle 10g R 10.2 for Linux x86-64 - /proc/sys/vm/disable_cap_mlock problem

    Hi All,
    During installation - Oracle Database Configuration Assistance, I have got below error and thus I stuck. As per Metalink note 293988.1, this will be resolved if I do [root@localhos]# echo 1 > /proc/sys/vm/disable_cap_mlock . But problem is when I do this because I dont have /proc/sys/vm/disable_cap_mlock file in my system, it giving ¨bash: /proc/sys/vm/disable_cap_mlock: No such file or directory¨ error. So I am unable to get rid of this error. I also set SELinux Default and Current mode as permissible and rebooted it.
    No use, Its giving same error.
    ORA-27125: Unable to create shared memory segment.
    DB Details_
    Oracle 10g Release 2 (10.2) for Linux x86-64
    Choosen Basic Installation
    OS Details:_
    *[root@localhost vm]# uname -rm*
    2.6.32-100.0.19.el5 x86_64
    *[root@localhost vm]# uname -a*
    Linux localhost.localdomain 2.6.32-100.0.19.el5 #1 SMP Fri Sep 17 17:51:41 EDT 2010 x86_64 x86_64 x86_64 GNU/Linux
    *[root@localhost etc]# cat /etc/redhat-release*
    Red Hat Enterprise Linux Server release 5.5 (Tikanga)
    *[root@localhost etc]# make -v*
    GNU Make 3.81
    Copyright (C) 2006 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions.
    There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
    PARTICULAR PURPOSE.
    This program built for x86_64-redhat-linux-gnu
    This is bugging me since last two days. Any help would be appreciated.
    Thanks in advance.
    Regards,
    Mahi

    From what I can gather form your post, the ORA-27125: Unable to create shared memory segment is probably the result of:
    a) not enough physical memory available.
    b) /dev/shm not configured properly.
    c) kernel parameters are not set according to Oracle requirements.
    Since this is happening during the installation of Oracle I suggest to check the SHMMAX kernel parameter. This is all mentioned in the pre-installation steps. Oracle 11g will actually check these kernel parameters prior to installing. Not sure about 10g now, which you are trying to install.
    The most common, easiest way to prepare the system for Oracle RDBMS is to install the "oracle-validated" package. If you don't have access to ULN, you can setup public yum.
    http://public-yum.oracle.com/ Then you can simply type as the root user: yum install oracle-validated
    Edited by: waldorfm on Nov 3, 2010 1:18 PM

  • Oracle 10g Release 2 (10.2) for Linux x86-64

    Hi All,
    During installation - Oracle Database Configuration Assistance, I have got below error and thus I stuck. As per Metalink note 293988.1, this will be resolved if I do [root@localhos]# echo 1 > /proc/sys/vm/disable_cap_mlock . But problem is when I do this because I dont have /proc/sys/vm/disable_cap_mlock file in my system, it giving ¨bash: /proc/sys/vm/disable_cap_mlock: No such file or directory¨ error. So I am unable to get rid of this error. I also set SELinux Default and Current mode as permissible and rebooted it.
    No use, Its giving same error.
    ORA-27125: Unable to create shared memory segment.
    DB Details_
    Oracle 10g Release 2 (10.2) for Linux x86-64
    Choosen Basic Installation
    OS Details:_
    *[root@localhost vm]# uname -rm*
    2.6.32-100.0.19.el5 x86_64
    *[root@localhost vm]# uname -a*
    Linux localhost.localdomain 2.6.32-100.0.19.el5 #1 SMP Fri Sep 17 17:51:41 EDT 2010 x86_64 x86_64 x86_64 GNU/Linux
    *[root@localhost etc]# cat /etc/redhat-release*
    Red Hat Enterprise Linux Server release 5.5 (Tikanga)
    *[root@localhost etc]# make -v*
    GNU Make 3.81
    Copyright (C) 2006 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions.
    There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
    PARTICULAR PURPOSE.
    This program built for x86_64-redhat-linux-gnu
    This is bugging me since last two days. Any help would be appreciated.
    Thanks in advance.
    Regards,
    Mahi

    Trust me I verified installtion guide and release notes atleast 20 times. I never had luck witht any thing. I was wondering how come edelivery.oracle.com packages (both Linux 64 bit Linux with upgrade to Unbreakable and Oracle 10g db version) is not workign for me. Finally below trick to the installed file could make my installation work(Ref link http://www.oracle-base.com/articles/10g/OracleDB10gInstallationOnFedora2.php) . In this I am setting DISABLE_HUGETLBFS to value 1. My only doubt is, does this have any impact on performance? Can some one relay on such tweeking for prod installtions? Ofcourse I am yet to go for commercial. At present I dont have ULN or metalink authorised access.
    cd $ORACLE_HOME/bin
    mv oracle oracle.bin
    cat >oracle <<"EOF"
    #!/bin/bash
    export DISABLE_HUGETLBFS=1
    exec $ORACLE_HOME/bin/oracle.bin $@
    EOF
    chmod +x oracle
    Edited by: TechMahi.com on Nov 7, 2010 10:15 PM

  • 10g Release 2 (10.2.0.4) Patch Set 3 for Linux x86 is available

    For all those who were in need of some bug fixing, maybe it has been patched in 10g Release 2 (10.2.0.4) Patch Set 3 for Linux x86, which is now available for download.

    Hello Srini, thanks for your answer.
    I haven´t Oracle Dataguard, I have a disk replication with other supplier, for this reason, I need to know the files that will be modified, because if the patch modifies a file that I haven´t on replication, I will have problems.
    Thanks again.

  • DAC 10.1.3.4.1 Server on Windows (64 bit) and Linux x86 (64 bit)?

    Hi Friends,
    Please confirm wheteher Oracle Business Intelligence Data Warehouse Administration Console 10.1.3.4.1 Server is supported on
    Windows (64 bit) and Linux x86 (64 bit)
    Because from edelivery.oracle.com i could see the downloads only for windows and Linux and not specified as 32/64 - bit
    so will it mean that the same dump is used for both 32 and 64 bit
    1) Oracle Business Intelligence Data Warehouse Administration Console 10.1.3.4.1 for Microsoft Windows (V16377-01)
    can the above dump is used for both 32 and 64 bit windows?
    2) Oracle Business Intelligence Data Warehouse Administration Console 10.1.3.4.1 for Linux x86 (V16378-01)
    can the above dump is used for both 32 and 64 bit Linux?
    The reason is because for OBIA 7.9.6.3 configuration both the Informatica Power Centre and DAC Server should co-exist
    and i could see seperate installer for 32 and 64 bit for both Windows and Linux whereas i couldn't see it for DAC Server
    Please confirm .
    Regards,
    DB

    It is supported on both platforms. With Linux however, if you have any issues you can to install in a windows environment, then copy over the folder structure. Also, you can possibly run into issues running the setup.exe on 64bit windows. When you open the install directory, go to dac/disk1/install and run the executable for win32. win64bit can return an error where it says it cannot create certain temp directories. It is a known java bug you can find in the support website.
    Edited by: user12838563 on Jul 13, 2011 11:35 PM

  • Oracle E-Business Suite Certification on Linux x86-64

    Hello all,
    I have some questions about certification for Oracle E-Business Suite 11.5.10.2 on Linux x86-64.
    I have two 64-bit servers and intend to do a split configuration.
    From the certification (Certify/View Certifications by Product/E-Business Suite/E-Business Suite 11i and Earlier/Platform Selection: Database Tier Only) I understand the following:
    I must have the Application Tier running on Linux-x86 and the Database Tier may be either on Linux-x86 or Linux-x86-64.
    Is this correct?
    Should I install RHES4 for 32bit on the Application Server and RHES4 for 64bit on de Database Server?
    or
    Should I install RHES4 for 64bit on both servers and install the 32bit Applications software on the Application Server?
    How should I ask for the software I need? From the E-Delivery web site I don't have the 64bit option for Oracle E-Business Suite Release 11.5.10.2.
    Is EBS allways for 32bit no matter the OS ?
    Thank you very much.
    Catalina.

    I must have the Application Tier running on Linux-x86
    and the Database Tier may be either on Linux-x86 or
    Linux-x86-64.
    Is this correct? Yes
    Should I install RHES4 for 32bit on the Application
    Server and RHES4 for 64bit on de Database Server?
    or
    Should I install RHES4 for 64bit on both servers and
    install the 32bit Applications software on the
    Application Server?
    Re: Oracle Application 11.5.10.2 installation on Linux AMD 64
    How should I ask for the software I need? From the
    E-Delivery web site I don't have the 64bit option for
    Oracle E-Business Suite Release 11.5.10.2.
    Is EBS allways for 32bit no matter the OS ?It is always 32-bit but it could comes in 64-bit for the database part. You would find such a media for Solaris for example "Oracle® Applications 11i Release 10.2 for Solaris Operating System (SPARC 32-bit) with Solaris Operating System (SPARC 64-bit) Oracle® Database" but not for Linux Intel 64-bit.
    Just get the media for Linux x86, install it, then consider having Oracle 10g 64-bit on the database tier.

  • Availability of RPM Linux x86-64 10.2 instant client

    good morning,
    an increasingly important platform for us is Linux x86-64 (actually RedHat Enterprise Linux 4 x86-64), the instant client is available only in zip packaging. Could you indicate whether and approximatically when it could be made available in .rpm package.
    It is very important for our deployment on all of the client machines.
    I thank you a lot in advance for your time and answer,
    eric
    PS: on RHEL3 x86 platform, we use the RPM version of the 10.2 Linux x86 and this is very convenient. We would reproduce the same ease of deployment for RHEL4 x86-64

    good morning,
    an increasingly important platform for us is Linux x86-64 (actually RedHat Enterprise Linux 4 x86-64), the instant client is available only in zip packaging. Could you indicate whether and approximatically when it could be made available in .rpm package.
    It is very important for our deployment on all of the client machines.
    I thank you a lot in advance for your time and answer,
    eric
    PS: on RHEL3 x86 platform, we use the RPM version of the 10.2 Linux x86 and this is very convenient. We would reproduce the same ease of deployment for RHEL4 x86-64

  • Oracle 11.2.0.2g driver with IBM JRE(J2RE 1.5.0 IBM J9 2.3 Linux x86-32)

    Hi All,
    I am trying to use oracle 11.2 jdbc thin driver with IBM JRE and getting following exception messages.
    Details from Ojdbc5.jar
    Implementation-Version: 11.2.0.2.0
    Repository-Id: JAVAVM_11.2.0.2.0_LINUX_100812.1
    And Details from Java System Properties
    java.vm.info: J2RE 1.5.0 IBM J9 2.3 Linux x86-32 j9vmxi3223-20060504 (JIT enabled)
    J9VM - 20060501_06428_lHdSMR
    JIT - 20060428_1800_r8
    GC - 20060501_AA
    java.lang.ExceptionInInitializerError
    at java.lang.J9VMInternals.initialize(J9VMInternals.java:195)
    at javax.crypto.Cipher.getInstance(Unknown Source)
    at oracle.security.o5logon.O5LoginClientHelper.decryptAES(Unknown Source)
    at oracle.security.o5logon.O5LoginClientHelper.generateOAuthResponse(Unknown Source)
    at oracle.jdbc.driver.T4CTTIoauthenticate.doOAUTH(T4CTTIoauthenticate.java:655)
    at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:366)
    at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:536)
    at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:228)
    at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:521)
    at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38)
    at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:294)
    at org.apache.commons.dbcp.BasicDataSource.validateConnectionFactory(BasicDataSource.java:1247)
    at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:1221)
    at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:880)
    at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:111)
    at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:77)
    at com.tes.archival.extractor.DataExtractorWithJdbcImpl.extractArchivalRecords(DataExtractorWithJdbcImpl.java:61)
    at com.tes.archival.executor.ExtractorExecutor$1.call(ExtractorExecutor.java:57)
    at com.tes.archival.executor.ExtractorExecutor$1.call(ExtractorExecutor.java:1)
    at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:284)
    at java.util.concurrent.FutureTask.run(FutureTask.java:138)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:665)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:690)
    at java.lang.Thread.run(Thread.java:797)
    Caused by: java.lang.SecurityException: Cannot set up certs for trusted CAs
    at javax.crypto.b.<clinit>(Unknown Source)
    at java.lang.J9VMInternals.initializeImpl(Native Method)
    at java.lang.J9VMInternals.initialize(J9VMInternals.java:177)
    ... 24 more
    Caused by: java.lang.SecurityException: Jurisdiction policy files are not signed by trusted signers!
    at javax.crypto.b.a(Unknown Source)
    at javax.crypto.b.a(Unknown Source)
    at javax.crypto.b.access$600(Unknown Source)
    at javax.crypto.b$0.run(Unknown Source)
    at java.security.AccessController.doPrivileged(AccessController.java:241)
    ... 27 more
    Any help in resolving this issue will be much appreaciated.
    Regards,
    Raman

    804915 wrote:
    Caused by: java.lang.SecurityException: Cannot set up certs for trusted CAs
    Caused by: java.lang.SecurityException: Jurisdiction policy files are not signed by trusted signers!Probably a permissions problem. Or something is wrong with the certs.

  • Can I run 32 bit version of Oracle 10g grid  on Linux x86-64?

    Since Oracle did not release 64 bit version of Oracle 10g grid for Linux X86-64. Can I run 32 bit version of Oracle 10g grid on Linux x86-64? If so did anyone tried this? and also any known issues?

    All I had to do was use the 32bit version of "/usr/bin/gcc" and "/usr/bin/g++" to run the installation
    That is:
    bin]# cp -p /usr/bin/gcc /usr/bin/gcc_old
    bin]# mv /usr/bin/gcc /usr/bin/gcc323
    mv: overwrite `/usr/bin/gcc323'? y
    bin]# ln -s /usr/bin/gcc296 /usr/bin/gcc
    bin]# cp -p /usr/bin/g++ /usr/bin/g++_old
    bin]# mv /usr/bin/g++ /usr/bin/g++323
    mv: overwrite `/usr/bin/g++323'? y
    bin]# ln -s /usr/bin/g++296 /usr/bin/g++
    AFTER INSTALLATION REMEMBER TO
    move back the 64bit files to their former state.
    bin]#rm /usr/bin/g++
    bin]#rm /usr/bin/gcc
    bin]#mv /usr/bin/gcc_old /usr/bin/gcc
    bin]#mv /usr/bin/g++_old /usr/bin/g++                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Maybe you are looking for

  • QUICKTIME CODEC ISSUE

    NO MATTER WHAT i seem to do quicktime wont play my avi.s it says i need a codec sends me to apple divx codec i install div x and it still doesnt play but to me it seems like divx doesnt cummunicate with quicktime in a dream world thered be a pulldown

  • Memory and image coloring

    I want to keep a lot of images in the memory, so I use an array of images. The images are simple drawings and use few very few colors, thus take few space. I think they take 200 ko all together. However, once in a Image object, I suspect java to use

  • Screen not filling everything.

    Hello, On my new 3G iPhone it looks like the screen is taking only 95% of its real esate. I rebooted it and still same thing. Any ideas? thanks, Ofir

  • IDVD Themepak installation issue

    I purchased third party themes from ThemePaks and when I try to install the software, I get to the part that ask's "What volume that I want to install this on and when I choose the destination I get an error that says "you are not allowed to install

  • DVR displays error message and code E25

    I have a fairly new DVR620 that I have successfully dubbed two old home movie VHS tapes to DVD. I started a new one today and about 3-4 minutes into the dubbing I get an E25 error that the content is not allowed to be dubbed... IT'S A HOME MOVIE; not