Oracle 10G JMS error : Failed to handle dispatch message ... exception ORABPEL-05002

Hi All,
We are using a JMS adapter as partner link in a BPEL process to produce messages to JMS Queue.
We are getting an error while producing a message to a JMS Queue.
The error comes for 1 or 2 instances among 5 to10 intsances. (all these instances ran with in 1 or 2 seconds).
We are using Oracle 10G SOA suite.
This error is getting in the Production environment.
The error is as follows (took error from server log).
Failed to handle dispatch message ... exception ORABPEL-05002
Message handle error.
An exception occurred while attempting to process the message "com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessage"; the exception is: faultName: {{http://schemas.oracle.com/bpel/extension}bindingFault}
messageType: {{http://schemas.oracle.com/bpel/extension}RuntimeFaultMessage}
parts: {{summary=file:/sw/appaia/product/SOA/bpel/domains/default/tmp/.bpel_CurrencyExchangeListEbizJMSProducer_1.0_4ec528ec93a8a6ff0278fab9701dcc71.tmp/CurrencyExchangeListEbizJMSProducerV1.wsdl [ Produce_Message_ptt::Produce_Message(OutputParameters) ] - WSIF JCA Execute of operation 'Produce_Message' failed due to: Adapter Framework unable to create outbound JCA connection.
file:/sw/appaia/product/SOA/bpel/domains/default/tmp/.bpel_CurrencyExchangeListEbizJMSProducer_1.0_4ec528ec93a8a6ff0278fab9701dcc71.tmp/CurrencyExchangeListEbizJMSProducerV1.wsdl [ Produce_Message_ptt::Produce_Message(OutputParameters) ] - : The Adapter Framework was unable to establish an outbound JCA connection due to the following issue: oracle.j2ee.connector.proxy.ProxyInterceptException: javax.resource.ResourceException: RollbackException: Transaction has been marked for rollback: null [Caused by: RollbackException: Transaction has been marked for rollback: null]
; nested exception is:
ORABPEL-12511
Adapter Framework unable to create outbound JCA connection.
I tried the below JMS tunings with differnt combination, but no improvement.
            <property name="useJCAConnectionPool">true</property>
            <property name="maxSizeJCAConnectionPool">500</property>
            <property name="retryMaxCount">10</property>
            <property name="retryInterval">60</property>
Please let me know if any other logs or any other information is required.
Thanks,
Pershad

sorry, I forgot the below things which I tried to tune the JMS.
<property name="retryMaxCount">10</property>
<property name="retryInterval">60</property>
<property name="useJCAConnectionPool">true</property>
<property name="maxSizeJCAConnectionPool">500</property>
Thanks.

Similar Messages

  • Error upon ResolveCallbackMessage class for Failed to handle dispatch msg

    Hello,
    I'm using Oracle BPEL Manager on Windows XP,
    the version of Eclipse is 3.0.0, build id 200406111814,
    and j2sdk1.4.2_04.
    I have deployed from the Developer Prompt the Seller and the Buyer processes, and from the Oracle BPEL console started 3 instances for the Buyer with values for the CID and Order respectively: 1,1; 2,2; 3,3.
    After several seconds, I had 3 instances for the Seller with state 'completed' and 3 instances for the Buyer with state 'running'.
    At the same time, appeared 3 error messages on the Start BPEL Process Manager Console with the same content:
    <ERROR> <default.collaxa.cube.engine.dispatch> <BaseScheduledWorker::process> Failed to handle dispatch message ... exception Message handle error.
    An exception occurred while attempting to process the message "com.collaxa.cube.engine.dispatch.message.delivery.ResolveCallbackMessage"; the exception is: Transaction was rolled back: java.lang.ClassCastException; nested exception is: java.lang.ClassCastException
    These processes use correltation defined and it seems the the Oracle BPEL Server does not recognize when there is more then 1 running instances and is received message, to which instances to apply it according to the correlation property.
    Need help if there is something else to be configured this to work,
    Thank you in advance,
    Best Regards

    Hi,
    I've tested the Seller and buyer Samples by reproducing the upper situation - several running instance of Buyer process,
    and everything works fine - no errors.
    But, the situation if I'm using a new created process leads to the same error.
    Here what I'm doing:
    Process test1: (async. oracle bpel process)
    =============================================
    The test1.bpel file is:
    &lt;!-- test1 BPEL Process [Generated by the Oracle BPEL Designer] --&gt;
    &lt;process name="test1" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:cor="http://acm.org/samples" targetNamespace="http://acm.org/samples" suppressJoinFailure="yes" xmlns:tns="http://acm.org/samples" xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/" xmlns:bpelx="http://schemas.oracle.com/bpel/extension" xmlns:ora="http://schemas.oracle.com/xpath/extension"&gt;
         &lt;partnerLinks&gt;
              &lt;partnerLink name="client" partnerLinkType="tns:test1" myRole="testProvider" partnerRole="testRequester"/&gt;
         &lt;/partnerLinks&gt;
         &lt;variables&gt;
              &lt;variable name="input" messageType="tns:Order1RequestMessage"/&gt;
              &lt;variable name="output" messageType="tns:echoResponseMessage"/&gt;
              &lt;variable name="DeliveryS" messageType="tns:DeliveryRequestMessage"/&gt;
              &lt;variable name="result" type="xsd:string"/&gt;
         &lt;/variables&gt;
         &lt;correlationSets&gt;
              &lt;correlationSet name="id123" properties="tns:id123"/&gt;
         &lt;/correlationSets&gt;
         &lt;sequence name="main"&gt;
              &lt;receive name="receiveInput" partnerLink="client" portType="tns:test1" operation="order123" variable="input" createInstance="yes"&gt;
                   &lt;correlations&gt;
                        &lt;correlation set="id123" initiate="yes"/&gt;
                   &lt;/correlations&gt;
              &lt;/receive&gt;
              &lt;assign&gt;
                   &lt;copy&gt;
                        &lt;from variable="input" part="payload" query="//onInitate123/rumiBegin"/&gt;
                        &lt;to variable="result"/&gt;
                   &lt;/copy&gt;
              &lt;/assign&gt;
              &lt;receive name="getDelivery" partnerLink="client" portType="tns:test1" operation="dlv" variable="DeliveryS" createInstance="no"&gt;
                   &lt;correlations&gt;
                        &lt;correlation set="id123" initiate="no"/&gt;
                   &lt;/correlations&gt;
              &lt;/receive&gt;
              &lt;assign&gt;
                   &lt;copy&gt;
                        &lt;from variable="DeliveryS" part="payload" query="//onDelivery123/rumiEnd"/&gt;
                        &lt;to variable="result"/&gt;
                   &lt;/copy&gt;
              &lt;/assign&gt;
              &lt;invoke name="callbackClient" partnerLink="client" portType="tns:testCallback" operation="onResult" inputVariable="output"/&gt;
         &lt;/sequence&gt;
    &lt;/process&gt;
    ==============================================
    The test1.wsdl file is:
    &lt;?xml version="1.0"?&gt;
    &lt;definitions name="test1"
    targetNamespace="http://acm.org/samples"
    xmlns:tns="http://acm.org/samples"
    xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
    &gt;
    &lt;types&gt;
    &lt;schema attributeFormDefault="qualified"
    elementFormDefault="qualified"
    targetNamespace="http://acm.org/samples"
    xmlns="http://www.w3.org/2001/XMLSchema"
    &gt;
    &lt;element name="onInitate123" type="tns:Order" /&gt;
    &lt;complexType name="Order"&gt;
                   &lt;sequence&gt;
                   &lt;element name="rumiBegin" type="string" /&gt;
              &lt;/sequence&gt;
              &lt;/complexType&gt;
    &lt;element name="onDelivery123" type="tns:Delivery" /&gt;
    &lt;complexType name="Delivery"&gt;
                   &lt;sequence&gt;
                   &lt;element name="rumiEnd" type="string" /&gt;
              &lt;/sequence&gt;
              &lt;/complexType&gt;
              &lt;element name="echoResponse"&gt;
    &lt;complexType&gt;
    &lt;sequence&gt;
    &lt;element name="result" type="string"/&gt;
    &lt;/sequence&gt;
    &lt;/complexType&gt;
    &lt;/element&gt;
    &lt;/schema&gt;
    &lt;/types&gt;
    &lt;message name="Order1RequestMessage"&gt;
    &lt;part name="payload" element="tns:onInitate123"/&gt;
    &lt;/message&gt;
    &lt;message name="Order1ResponseMessage"&gt;
    &lt;part name="payload" element="tns:echoResponse"/&gt;
    &lt;/message&gt;
    &lt;message name="DeliveryRequestMessage"&gt;
    &lt;part name="payload" element="tns:onDelivery123"/&gt;
    &lt;/message&gt;
    &lt;message name="DeliveryResponseMessage"&gt;
    &lt;part name="payload" element="tns:echoResponse"/&gt;
    &lt;/message&gt;
    &lt;message name="echoResponseMessage"&gt;
    &lt;part name="payload" element="tns:echoResponse"/&gt;
    &lt;/message&gt;
    &lt;portType name="test1"&gt;
    &lt;operation name="order123"&gt;
    &lt;input message="tns:Order1RequestMessage"/&gt;
    &lt;/operation&gt;
    &lt;operation name="dlv"&gt;
    &lt;input message="tns:DeliveryRequestMessage"/&gt;
    &lt;/operation&gt;
    &lt;/portType&gt;
    &lt;portType name="testCallback"&gt;
    &lt;operation name="onResult"&gt;
    &lt;input message="tns:echoResponseMessage"/&gt;
    &lt;/operation&gt;
    &lt;/portType&gt;
    &lt;plnk:partnerLinkType name="test1"&gt;
    &lt;plnk:role name="testProvider"&gt;
    &lt;plnk:portType name="tns:test1"/&gt;
    &lt;/plnk:role&gt;
    &lt;plnk:role name="testRequester"&gt;
    &lt;plnk:portType name="tns:testCallback"/&gt;
    &lt;/plnk:role&gt;
    &lt;/plnk:partnerLinkType&gt;
    &lt;bpws:property name="id123" type="xsd:string"/&gt;
    &lt;bpws:propertyAlias propertyName="tns:id123"
    messageType="tns:Order1RequestMessage" part="payload"
    query="/onInitate123/rumiBegin"/&gt;
    &lt;bpws:propertyAlias propertyName="tns:id123"
    messageType="tns:DeliveryRequestMessage" part="payload"
    query="/onDelivery123/rumiEnd"/&gt;
    &lt;/definitions&gt;
    ================================================
    From a different SOAP Server I'm sending message for the operation 'order123' to the Oracle Server
    using as endpoint location http://leon:9700/orabpel/default/test1
    and the message looks like this:
    (the value for the correlation is 101)
    &lt;SOAP:Envelope
    SOAP:encodingType='http://schemas.xmlsoap.org/soap/encoding/'
    SOAP:encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'
    xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:ref="http://schemas.xmlsoap.org/ws/2002/04/reference/"
    xmlns:dt='urn:schemas-microsoft-com:datatypes'&gt;&lt;SOAP:Body&gt;
    &lt;order123&gt;&lt;onInitate123&gt;&lt;rumiBegin&gt;101&lt;/rumiBegin&gt;&lt;/onInitate123&gt;&lt;/order123&gt;&lt;/SOAP:Body&gt;
    &lt;/SOAP:Envelope&gt;
    As a result there is an instance with state running for the process test1 on the Oracle BPEL Console.
    After this, I'm sending again from the same SOAP Server message for the operation 'dlv' like this:
    (the value for the correlation is 101)
    &lt;SOAP:Envelope
    SOAP:encodingType='http://schemas.xmlsoap.org/soap/encoding/'
    SOAP:encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'
    xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:ref="http://schemas.xmlsoap.org/ws/2002/04/reference/"
    xmlns:dt='urn:schemas-microsoft-com:datatypes'&gt;&lt;SOAP:Body&gt;
    &lt;dlv&gt;&lt;onDelivery123&gt;&lt;rumiEnd&gt;101&lt;/rumiEnd&gt;&lt;/onDelivery123&gt;&lt;/dlv&gt;&lt;/SOAP:Body&gt;&lt;/SOAP:Env
    elope&gt;
    AS a result the instance created before continues to have state 'running' (which is supposed to be 'completed' as by using the same correlation value)
    and the error is given on the Oracle BPEL Server Console:
    &lt;2004-08-24 14:56:02,200&gt; &lt;ERROR&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;BaseScheduledWorker::process&gt;
    Failed to handle dispatch message ... exception Message handle error.
    An exception occurred while attempting to process the message "com.collaxa.cube.engine.dispatch.message.delivery.ResolveCallbackMessage";
    the exception is: Transaction was rolled back: java.lang.ClassCastException; nested exception is: java.lang.ClassCastException

  • Oracle 10g Installtion error Network Configuration requirements ... failed

    Checking Network Configuration requirements ...
    Check complete. The overall result of this check is: Failed <<<<
    Problem: The install has detected that the primary IP address of the system is DHCP-assigned.
    Recommendation: Oracle supports installations on systems with DHCP-assigned IP addresses; However, before you can do this, you must configure the Microsoft LoopBack Adapter to be the primary network adapter on the system. See the Installation Guide for more details on installing the software on systems configured with DHCP.

    Are you installing Oracle 10G R2? If this is the case then for DHCP network environments, you need to create a Microsoft loop back adapter.
    Microsoft Loopback Adapter creation:
    ===========================
    Step 1: Programs -> control panel -> Add Hardware.
    Step 2: In the Add Hardware wizard. Click 'Next' and select 'Yes, I have already connected the hardware'. option and click on 'Next'.
    Step 3: Select the last option 'Add a new hardware device' from the 'Installed hardware' window and click on 'Next'.
    Step 4: Select the last option 'Install hardware that I manually select from the list (Advanced) and click on 'Next'.
    Step 5: Select 'Network adapters' in 'Common hardware types' list and click on 'Next'.
    Step 6: Where you can see 'Microsoft loopback adapter' on the right hand side of the frame.
    Step 7: proceed with all default installation and then try installing Oracle.
    I hope this will suffice.
    Thanks
    Venugopal

  • Oracle 10g Installation Error on Windows 2008 server

    Hi Experts,
    I have tried to install Oracle 10g via "51036975 ORACLE 10.2.0.4 Failsafe Server 3.4.1.5 Windows 2008" as per note no. Note 1303262 - Oracle on Windows Server 2008. Server is 64 bit server.
    Oracle service is not getting started and showing as "starting" in services.msc. I cant stop the service. I have taken the restart of the server as well but no luck.
    Just before the end of installation of Oracle, one pop up box named isqlplussvc opened up stating as "Failed to start the service, Error:0, the operation completed successfully".
    Can you please suggest how to handle this error and start the service?
    Regards,
    Naresh.

    Hi All,
    Yes, I started with Failsafe server CD only. After trying installing Oracle couple of times, once the service didnt went into starting mode & it couldnt start as well. Then I started going ahead with SAP installation and later I found that the service got automatically started.
    I was under the impression that the service has to be started before going for SAP installation.
    Thanks all for your replies.
    Regards,
    Naresh.

  • Oracle 10g XE recovery failed

    Hi, everyone:
    I have re-install my linux which is rh5. I also have a backup directory - "flash_recovery_area" from another oracle 10g XE database.
    When I installed the new oracle 10 XE, I try to restore the backup data from application menu, but the get result as below:
    This operation will shut down and restore the database. Are you sure [Y/N]?y
    Restore in progress...
    Enter the flash recovery area location:/usr/lib/oracle
    ==================== ERROR =========================
    Restore of the database failed
    ==================== ERROR =========================
    RMAN error: See log for details.
    Log file is at /home/tim/oxe_restore.log.
    Press ENTER key to exit
    I found the error lines in oxe_restore.log as below:
    RMAN>
    Oracle instance started
    Total System Global Area 285212672 bytes
    Fixed Size 1258464 bytes
    Variable Size 92277792 bytes
    Database Buffers 188743680 bytes
    Redo Buffers 2932736 bytes
    RMAN>
    Recovery Manager complete.
    Recovery Manager: Release 10.2.0.1.0 - Production on Tue Jul 29 01:05:53 2008
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    connected to target database: XE (not mounted)
    RMAN>
    echo set on
    RMAN> restore spfile from autobackup db_recovery_file_dest='/usr/lib/oracle';
    Starting restore at 29-JUL-08
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=36 devtype=DISK
    recovery area destination: /usr/lib/oracle
    database name (or database unique name) used for search: XE
    channel ORA_DISK_1: no autobackups found in the recovery area
    autobackup search outside recovery area not attempted because DBID was not set
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of restore command at 07/29/2008 01:05:54
    RMAN-06172: no autobackup found or specified handle is not a valid copy or piece
    RMAN> startup force nomount;
    Oracle instance started
    Total System Global Area 608174080 bytes
    Fixed Size 1260316 bytes
    Variable Size 226493668 bytes
    Database Buffers 377487360 bytes
    Redo Buffers 2932736 bytes
    RMAN> restore controlfile from autobackup;
    Starting restore at 29-JUL-08
    allocated channel: ORA_DISK_1
    And after that, the new oracle 10 XE can`t start anymore.
    Thanks for any help!
    OldTim

    Thank you so much for reply!
    Tried full path already, but still can`t work. But I found another solution below and made it working finally:
    Oracle XE Recovery
    1 Copy /usr/lib/oracle to Bakcup disk.
    sudo cp /usr/lib/oracle /media/disk
    2 Copy the directory oracle to new linux system
    sudo cp /media/disk /usr/lib/oracle
    3 install Oracle 10g XE
    4 run command below:
    /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/config/scripts/restore.sh
    Done.

  • Oracle 10g RAC query fails

    Hi,
    I am a newbie to RAC implementations, I have a strange problem on the one we are testing,
    Failure (forced shutdown) of one of the nodes results in queries on the other node returning with a ORA-12805. This happens only in certain cases, otherwise the query waits for some time and completes. We are using Redhat 3, Oracle 10g (10.2.0.1.0) and TAF with SELECT and PRECONNECT options. Is there some reason and remedy on why this fails on only one of the nodes ?.

    Hi
    From metalink
    ORA-12805
    =========
    Error Summary
    ORA 12805 parallel query server died unexpectedly (Oerr:ORA.12805)
    Error Details
    ~~~~~~~~~~~~~
    Error: ORA 12805
    Text: parallel query server died unexpectedly
    Cause: The PMON process is cleaning up the process because a parallel query
    server terminated unexpectedly.
    Action: Check for operating system errors and retry the statement.
    If this problem persists, contact customer support.
    When a ORA-12805 occurs in most cases you will also see another error, ORA-600 or
    a ORA-7445.
    Best thing for you to do is to check all logs (that may include alert, crs, css etc) and determine the cause of node crash.
    Regards
    Adnan

  • Oracle 10g install error, FC5

    Im trying to install Oracle 10g on Fedora Core 5 (as per here: http://www.oracle-base.com/articles/10g/OracleDB10gR2InstallationOnFedora5.php).
    But having problems.
    The install process starts fine, then stops.
    Here's the last few lines of "installActions2006-03-20"
    INFO:
    *** Language Selection Page***
    INFO: Setting the 'SelectedLanguages ( SELECTED_LANGUAGES )' property to 'en,'. Received the value from response file.
    INFO:
    *** Specify Local Host Name Page***
    SEVERE: Abnormal program termination. An internal error has occured. Please provide the following files to Oracle Support :"/u01/app/oracle/oraInventory/logs/installActions2006-03-20_04-11-37PM.log"
    "/u01/app/oracle/oraInventory/logs/oraInstall2006-03-20_04-11-37PM.err"
    "/u01/app/oracle/oraInventory/logs/oraInstall2006-03-20_04-11-37PM.out"
    And here's the contents of "oraInstall.....err":
    Exception java.lang.NoClassDefFoundError occurred..
    java.lang.NoClassDefFoundError
    at oracle.sysman.oii.oiin.OiinNetOps.computeHostInfo(OiinNetOps.java:230)
    at oracle.sysman.oii.oiin.OiinNetOps.<init>(OiinNetOps.java:78)
    at oracle.sysman.oii.oiin.OiinNetOps.getNetOps(OiinNetOps.java:89)
    at oracle.sysman.oii.oiif.oiifw.OiifwHostNameWCDE.initialize(OiifwHostNameWCDE.java:111)
    at oracle.sysman.oii.oiif.oiifb.OiifbCondIterator.iterate(OiifbCondIterator.java:152)
    at oracle.sysman.oii.oiic.OiicDepWizEngine.doOperation(OiicDepWizEngine.java:424)
    at oracle.sysman.oii.oiif.oiifb.OiifbCondIterator.iterate(OiifbCondIterator.java:171)
    at oracle.sysman.oii.oiic.OiicPullSession.doOperation(OiicPullSession.java:1273)
    at oracle.sysman.oii.oiic.OiicSessionWrapper.doOperation(OiicSessionWrapper.java:289)
    at oracle.sysman.oii.oiic.OiicInstaller.run(OiicInstaller.java:546)
    at oracle.sysman.oii.oiic.OiicInstaller.runInstaller(OiicInstaller.java:929)
    at oracle.sysman.oio.oioc.OiocOneClickInstaller.runInstaller(OiocOneClickInstaller.java:1921)
    at oracle.sysman.oio.oioc.OiocOneClickInstaller.main(OiocOneClickInstaller.java:2149)
    Can anyone help me?
    Thanks.
    Mike

    I have tried installing 10g several times and it keeps failing. You said that the document is complete and the installation works fine. I would love to know how you got your installation to work because I am getting the same problem that this guy ran into.
    Re: Oracle 10g R2 on FC5; ORA-12157 error on installation
    Here is just a small part of the errors I am getting in my log file.
    ==========================================================
    Heap at VM Abort:
    Heap
    def new generation total 576K, used 369K [0xaba00000, 0xabaa0000, 0xabee0000)
    eden space 512K, 65% used [0xaba00000, 0xaba54388, 0xaba80000)
    from space 64K, 51% used [0xaba90000, 0xaba98398, 0xabaa0000)
    to space 64K, 0% used [0xaba80000, 0xaba80000, 0xaba90000)
    tenured generation total 1408K, used 550K [0xabee0000, 0xac040000, 0xafa00000)
    the space 1408K, 39% used [0x
    abee0000, 0xabf69af0, 0xabf69c00, 0xac040000)
    compacting perm gen total 4096K, used 3564K [0xafa00000, 0xafe00000, 0xb3a00000)
    the space 4096K, 87% used [0xafa00000, 0xafd7b3d8, 0xafd7b400, 0xafe00000)
    Local Time = Sun Apr 30 02:20:24 2006
    Elapsed Time = 0
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_08-b03 mixed mode)
    # An error report file has been saved as hs_err_pid13937.log.
    # Please refer to the file for further information.
    Command = /u01/app/oracle/product/10.2.0/db_1/jdk/jre//bin/java has failed
    INFO: Configuration assistant "Oracle Net Configuration Assistant" failed
    *** Starting OUICA ***
    Oracle Home set to /u01/app/oracle/product/10.2.0/db_1
    Configuration directory is set to /u01/app/oracle/product/10.2.0/db_1/cfgtoollogs. All xml files under the directory will be processed
    INFO: The "/u01/app/oracle/product/10.2.0/db_1/cfgtoollogs/configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.
    SEVERE: OUI-25031:Some of the configuration assistants failed. It is strongly recommended that you retry the configuration assistants at this time. Not successfully running any "Recommended" assistants means your system will not be correctly configured.
    1. Check the Details panel on the Configuration Assistant Screen to see the errors resulting in the failures.
    2. Fix the errors causing these failures.
    3. Select the failed assistants and click the 'Retry' button to retry them.
    INFO: User Selected: Yes/OK

  • Oracle 10g installation error in AIX 6.1 Platform

    Friends ,
    While installing Oracle 10g (10.2.0.1.0) on AIX 6.1 platform ,I get the following errors :
    Checking operating system requirements ...
    Expected result: One of 5200.004,5300.002
    Actual Result: 6100.01
    Check complete. The overall result of this check is: Failed <<<<
    Problem: Oracle Database 10g is not certified on the current operating system.
    Recommendation: Make sure you are installing the software on the correct platform.
    =======================================================================
    Checking operating system package requirements ...
    Check complete. The overall result of this check is: Not executed <<<<
    OUI-18001: The operating system 'AIX Version 6100.01' is not supported.
    Recommendation: Install the required packages before continuing with the installation.
    =======================================================================
    Checking recommended operating system patches
    Check complete. The overall result of this check is: Not executed <<<<
    OUI-18001: The operating system 'AIX Version 6100.01' is not supported.
    Recommendation: You may actually have installed patches which have obsoleted these, in which case you can successfully continue with the install. If you have not, it is recommended that you do not continue. Refer to the readme to find out how to get the missing patches.
    =======================================================================
    Is there any solution to resolve this problem like patch update or anything ? Barring this , does oracle 11g is recommended in AIX 6.1 unix platform ? Do you have any idea plz ?

    shipon_97 wrote:
    Friends ,
    While installing Oracle 10g (10.2.0.1.0) on AIX 6.1 platform ,I get the following errors :
    Checking operating system requirements ...
    Expected result: One of 5200.004,5300.002
    Actual Result: 6100.01
    Check complete. The overall result of this check is: Failed <<<<
    Problem: Oracle Database 10g is not certified on the current operating system.
    Recommendation: Make sure you are installing the software on the correct platform.
    =======================================================================
    Is there any solution to resolve this problem like patch update or anything ? Barring this , does oracle 11g is recommended in AIX 6.1 unix platform ? Do you have any idea plz ?Check certification matrix:
    http://www.oracle.com/technology/support/metalink/index.html
    10gR2 only 64bit is certified with AIX 6.1

  • JMS error - Failed to process message

    Hi everybody,
    I got the following JMS exception during message processing. I do not really understand what the root cause:
    sendMessage(Message) - Exception sending message in thread [0] : Failed to process message: Failed to add message=ID:b8591990-c1ab-1004-8625-3433a788d95f, destination=QueueName3 (5)
    javax.jms.JMSException: Failed to process message: Failed to add message=ID:b8591990-c1ab-1004-8625-3433a788d95f, destination=QueueName3 (5)
    at org.exolab.jms.messagemgr.MessageMgr.add(MessageMgr.java:199)
    at org.exolab.jms.server.ServerSessionImpl.send(ServerSessionImpl.java:205)
    at org.exolab.jms.server.net.RemoteServerSession.send(RemoteServerSession.java:152)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.exolab.jms.net.orb.DefaultORB$Handler.invoke(DefaultORB.java:553)
    at org.exolab.jms.net.orb.DefaultORB$1.run(DefaultORB.java:511)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(Unknown Source)
    at java.lang.Thread.run(Thread.java:595)
    If someone has an idea, I would appreciate a lot!
    Thx!

    No, Iam just storing a simple message say "Hello" in the queue, the message is stored in the queue but it is shown in the below format when I opened that file in Notepad:
    UUªª ªªUU ‡ÿãÂ- ‡ 6›4•Z 6›4”öÿ Â
    Ô£9™ÿÿ¬h ÎM o „      fÂ6›4”ñ Trial4 com.sun.messaging.BasicQueue Hai ªªUU
    and soon Iam getting this error below:
    [Fatal Error] :1:1: Content is not allowed in prolog.
    JMSBC-E0713: Failed to process JMS message [com.stc.jmsjca.core.WTextMessageIn@1e377d5] in onMessage: Content is not allowed in prolog.
    org.xml.sax.SAXParseException: Content is not allowed in prolog.

  • Oracle 10g database download fails through IE on win98 SE

    I have been trying to download oracle 10g database for windows 32-bit through IE on windows 98SE. it takes me personal detail information page when I log on with my id "kubends", when I press "continue" button on that page, URL link fails "http://www.oracle.com/webapps/dialogue/dlgpage.jsp?p_dlg_id=2788237&src=1952635&act=26&p_doc_id=2788239&p_page_id=2788241&p_dlg_response_id=-1&p_response_id=-1&p_old_response_id=-1&p_email=null&p_resp_look_back=0.0&p_title=Oracle%20Database%2010g%20downloads&p_trust_cookie=N&p_debug=N&p_omo_code=null&p_dlg_title=Oracle%20Database%2010g%20downloads&tid=262&owner=1&p_ext=Y&p_dlg_id=2788237"
    Has anyone encountered this error?. Any help on this would be greatly appreciated
    Thanks
    Kuben

    I have been trying to download oracle 10g database for windows 32-bit through IE on windows 98SE. it takes me personal detail information page when I log on with my id "kubends", when I press "continue" button on that page, URL link fails "http://www.oracle.com/webapps/dialogue/dlgpage.jsp?p_dlg_id=2788237&src=1952635&act=26&p_doc_id=2788239&p_page_id=2788241&p_dlg_response_id=-1&p_response_id=-1&p_old_response_id=-1&p_email=null&p_resp_look_back=0.0&p_title=Oracle%20Database%2010g%20downloads&p_trust_cookie=N&p_debug=N&p_omo_code=null&p_dlg_title=Oracle%20Database%2010g%20downloads&tid=262&owner=1&p_ext=Y&p_dlg_id=2788237"
    Has anyone encountered this error?. Any help on this would be greatly appreciated
    Thanks
    Kuben

  • Oracle 10g installation error in linux...

    Hi,
    i am getting following error when installing oracle 10g(10.2.0.1) in RHEL4.i have installed following required packages also.
    binutils-2.15.92.0.2-21
    compat-db-4.1.25-9
    control-center-2.8.0-12.rhel4.5
    gcc-3.4.6-3
    gcc-c++-3.4.6-3
    glibc-2.3.4-2.25
    glibc-common-2.3.4-2.25
    gnome-libs-1.4.1.2.90-44.1
    libstdc++-3.4.6-3
    libstdc++-devel-3.4.6-3
    make-3.80-6.EL4
    pdksh-5.2.14-30.3
    sysstat-5.0.5-11.rhel4
    xscreensaver-4.18-5.rhel4.11
    libaio-0.3.105-2
    installActions2009-03-18_09-04-11AM.log
    INFO: rm -f nnfgt.*
    (if [ "compile" = "compile" ] ; then \
    /u01/app/oracle/10.2.0/db_1/bin/gennfgt > nnfgt.c ;\
    /usr/bin/gcc -c nnfgt.c ;\
    rm -f /u01/app/oracle/10.2.0/db_1/lib/nnfgt.o ;\
    mv nnfgt.o /u01/app/oracle/10.2.0/db_1/lib/ ;\
    /usr/bin/ar rv /u01/app/oracle/10.2.0/db_1/lib/libn10.a /u01/app/oracle/10.2.0/db_1/lib/nnfgt.o ; fi)
    INFO: /bin/sh: /usr/bin/gcc: No such file or directory
    INFO: mv:
    INFO: cannot stat `nnfgt.o'
    INFO: : No such file or directory
    INFO:
    INFO: /usr/bin/ar: /u01/app/oracle/10.2.0/db_1/lib/nnfgt.o: No such file or directory
    INFO: make: *** [nnfgt.o] Error 1
    INFO: End output from spawned process.
    INFO: ----------------------------------
    INFO: Exception thrown from action: make
    Exception Name: MakefileException
    Exception String: Error in invoking target 'nnfgt.o' of makefile '/u01/app/oracle/10.2.0/db_1/network/lib/ins_net_client.mk'. See '/u01/app/oracle/oraInventory/logs/installActions2009-03-18_09-04-11AM.log' for details.
    Exception Severity: 1
    WARNING: This will stop installation of all products and exit the Installer. Are you sure that you want to stop the installation and exit?
    INFO: User Selected: Yes/OK
    INFO: Exception handling set to prompt user with options to Retry Ignore
    User Choice: User selected to stop installation of all components.
    Thanks,

    what bit oracle software are You trying to install on what bit linux? 32bit for both?
    show
    uname -a
    Required packages are these:
    binutils-2.15.92.0.2-18
    compat-libstdc++-33.2.3-47.3
    elfutils-libelf-0.97-5
    elfutils-libelf-devel-0.97-5
    gcc-3.4.5-2
    gcc-c++-3.4.5-2
    glibc-2.3.4-2.19
    glibc-common-2.3.4-2.19
    glibc-devel-2.3.4-2.19
    glibc-headers-2.3.4-2.19
    libaio-devel-0.3.105-2
    libaio-0.3.105-2
    libgcc-3.4.5
    libstdc++-3.4.5-2
    libstdc++-devel-3.4.5-2
    make-3.80-5
    sysstat-5.0.5
    unixODBC-2.2.11
    unixODBC-devel-2.2.11
    compat-db-4.1.25-9
    compat-libstdc++-296-2.96-132.7.2
    control-center-2.8.0-12
    gnome-libs-1.4.1.2.90-44.1
    pdksh-5.2.14-30
    xorg-x11-deprecated-libs-6.8.1-23.EL
    openmotif21-2.1.30-11.RHEL4.2 (Required to install Oracle Demos)
    do you have them all?
    querry with
    rpm -aq | grep ....
    If You have metalink access then read metalink note 401705.1

  • Oracle 10g DBCA error - not enough space on root?

    Im running Oracle 10g on HP-UX 11i.
    Oracle software is installed ok. Already created a database succesfully. I have now deleted that database and am creating a new one using dbca.
    When I get to the final step I get the following error:
    You do not have enough free disk space to create the database. You need at least 785,408KB on /, you only have 753,664KB available please allocate more free disk space.
    The above is true but I am not putting any datafiles/ redo logs etc on root they are on a separte logical volume. Why does it need all this space on root? I cant add any more space to root anyway as I cant unmount root and extend it.
    Cant find anything about this in the oracle documentation, I can only think my oracle software install has got messed up causing this strange error?
    Can anyone help? Thanks.

    @ Oracle software is installed ok. Already created a database succesfully. I have now deleted that database and am creating a new one using dbca.
    When I get to the final step I get the following error:
    You do not have enough free disk space to create the database. You need at least 785,408KB on /, you only have 753,664KB available please allocate more free disk space.
    When you create database with DBCA, it gives a few options like General purpose, OLTP, etc.
    Did you pick same options both the time?

  • Oracle 10g XE Error when trying to open manager in browser

    Hi, i'm a newbies in oracle, i'm tryin to life with legal side, so in case with oracle i already downloaded oracle 10g Express Edition, i'm tryin to install it.. it succeed, but i dont know why if i try to open oracle home with this address in my browset [http://127.0.0.1:8080] its show an ERROR messages which is
    220- PC-NAME
    Unauthorised use of this FTP server is prohibited and may be subject to civil and criminal prosecution.
    220 PC-NAME FTP Server (Oracle XML DB/Oracle Database) ready.
    530 Please login with USER and PASS.
    530 Please login with USER and PASS.
    530 Please login with USER and PASS.
    530 Please login with USER and PASS.
    530 Please login with USER and PASS.
    530 Please login with USER and PASS.
    530 Please login with USER and PASS.
    530 Please login with USER and PASS.
    530 Please login with USER and PASS.
    221 Command Too Long. 2048 bytes maximum. Goodbye.
    i had try to adding exception in windows firewall with *1521 ,8080, 2030,* but the message still occurs... i had try many ways too,, its BIG ZERO.... i got nothing,
    i'm using windows vista Business... please anyone try to respon my thread....
    thanks
    Best Regards
    Wildan Abdat

    I figured a way around this in case anyone has the same problem in the future. I just opened Acrobat Pro X, clicked combine files into PDF, selected the file I wanted, saved the "binder" as PDF then saved another version as Reader Extended PDF. I think this helped because it essentially creaded a whole new PDF with the old PDF in it and getting rid of whater hashes or document properties in the last one that wouldn't allow it to work in Reader. Opens perfectly on other computers.

  • Oracle 10g installation error in WINDOWS7

    Hi,
    When am trying to install 10g in my PC, I am getting following error.
    Abnormal program termination. An internal error has occured.
    Please provide the following files to oracle support"
    "Unknown"
    "Unknown"
    "Unknown"
    Please help me out on this. Tell me the reason and required action to be taken.
    Thanks in advance,
    Diddy

    853307 wrote:
    Hi,
    Am gettting this error at first instance, when i click on setup file. I guess windows7 wont support oracle 10g. Is it the case??I wish you could answer all of my questions, so I could offer a better solution based on your answers.
    Anyway, Oracle 10g do not support Windows7 but it does not mean that you can not install it on windows 7. I assume that you're installing Oracle for education/testing purposed on a "client" operation system such as windows 7.
    Please watch this:
    http://www.youtube.com/watch?v=2Thx4r4elH8
    Best Regards,
    Gokhan
    If this question is answered, please mark appropriate posts as correct/helpful and the thread as closed. Thanks

  • Oracle 10g Express installation fails

    All,
    I've been looking in the forum for a solution to my problem but I can't find one. I'm a complete novice when it comes to databases
    I have a sevrer with windows 2003 sp2, 2 drives 40B+ free space and 2GB ram
    No applications are running on this server
    I had a previous version of 10g express edition installed on this same server, which I deleted using oracle uninstall doc and windows clean up utlity.
    When trying to install Oracle 10g express edition I get past the install location, DB passoword and ports for function. during the 'copying files' part of the installation the installation just dies/exits.
    the user account I'm using is local administator (not domain) on the server.
    I've stopped all antivirus services.
    The only error in event viewer show the following error
    The description for Event ID ( 0 ) in Source ( IDriverT ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: Service stopped.
    the install log shows the follow (last few lines of importance).
    1: Not using skins for this installation. Could not find skin file .
    MSI (c) (B4:B4) [15:51:43:914]: Note: 1: 2262 2: DuplicateFile 3: -2147287038
    MSI (c) (B4:B4) [15:51:43:946]: Note: 1: 2262 2: ISRequiredFeature 3: -2147287038
    MSI (c) (B4:B4) [15:51:44:195]: Note: 1: 2205 2: C:\DOCUME~1\testlocaluser\Local Settings\Temp\1\_isE\Oracle Database 10g Express Edition.msi 3: ISAlias
    MSI (c) (B4:B4) [15:51:44:195]: Note: 1: 2228 2: C:\DOCUME~1\testlocaluser\Local Settings\Temp\1\_isE\Oracle Database 10g Express Edition.msi 3: ISAlias 4: SELECT * FROM ISAlias
    1: Ready to launch program block.
    MSI (c) (B4:B4) [15:51:44:351]: PROPERTY CHANGE: Modifying NLS_LANG property. Its current value is 'AMERICAN_AMERICA.WE8MSWIN1252'. Its new value: 'ENGLISH_UNITED KINGDOM.WE8MSWIN1252'.
    MSI (c) (B4:B4) [15:51:44:351]: PROPERTY CHANGE: Modifying BUILDTYPE property. Its current value is '85'. Its new value: '87'.
    1: User aborts the installation, ready to launch __OnAbort.
    MSI (c) (B4:B4) [15:52:42:698]: Destroying RemoteAPI object.
    MSI (c) (B4:88) [15:52:42:698]: Custom Action Manager thread ending.
    === Verbose logging stopped: 17/06/2010 15:52:42 ===
    I running out of ideas. Can anyone help or shed some light as to what is happening. It can't be storage space or memory as there is nothing running on this box.
    Thanks in adavnce

    You might have better luck on the Oracle Express Forum, which is the only support location for the product.
    Otherwise check the registry entries to make sure there is nothing that might interfere.
    HTH -- Mark D Powell --

Maybe you are looking for

  • My ical will not sync to my iPhone 4s - I do not have iCloud

    Ok, here goes.  I have been doing a lot of searching on this issue and I have not been able to find a solution.  I do not have the iCloud function on my Mac; I am on 10.6.8 and I refuse to pay for a software upgrade, so please no answers telling me t

  • Dynamicly linked and stabalized footage doesn't work in PPro

    Hi, I've got a bit of a strange situtaion going on between After Effects and PPro. I am using PPro and After Effects CS5 from the Production Premium Suite and I sent some footage over to AE from PPro to stabalize via Dynamic Link. Everything works fi

  • Disable/Remove tool bar and menus?

    Can I disable or remove the toolbar and menus from Reader? If one of my customers opens a file then uses a toolbar or menu item, Reader crashes. Customer is using Solaris 11. This was not broken when using Solaris 10. Using v9.x.

  • RFQ and PO XSL-FO reports

    Hello All, We are currently implementing R12 (Sourcing, Purchasing etc) for one of the customer in APAC region, and we have to modify standard RFQ and PO XSL-FO reports. We are able to modify XSL files. But if we have to add new fields, we need to mo

  • How to create 1-1 relation in Master Detail link?

    How to create 1-1 relation in Master Detail link? I've attached the screen shot in the link below (a Microsoft powerpoint file) http://us.f1f.yahoofs.com/bc/6a8130cf/bc/My+Documents/dataerror.ppt?bf2WKfABbW_fzjVn