Oracle.jbo.RowNotFoundException: JBO-25034: Row with handle not found

Hello,
I am developing a fusion web application on Jdeveloper 11.1.2.1.0.
I have a ADF table which is bound to a table in the backing bean. There is a "Process" button for each row that works completely fine. There is button called "Process All" beneath the table especially designed  to do some processing with all the rows.. When I click the button, following happens with every row
1) A call is made to a webservice
2) Results from the webservice needs to be updated on that row in the database.
There is a process button for each row that works completely fine.
I am successful with the above two points for the first row. But when the control gets to the second row, results from webservice are retrieved but updating the results in the database is where I am seeing the problem.
I am doing the update via ApplicationmoduleImpl.java method:
  public void markEFTTransaction(int eft_id)
    System.out.println("In Application module markEFTTransaction");
    System.out.println("EFT ID to mark is" + eft_id);
    DBTransaction trans = getDBTransaction();
    try
      CallableStatement cs = trans.createCallableStatement("begin ? := ai.ba_p003_eft.mark_eft_transaction(?); end;", 0);
      cs.registerOutParameter(1,Types.VARCHAR);
      cs.setInt(2, eft_id);
      cs.executeUpdate();
      String result = cs.getString(1);
      System.out.println(result);
      if (result.equalsIgnoreCase("N"))
        System.out.println("committed to database");
        getTransaction().commit();
      else
        System.out.println("\n Transaction rolled back. \n");
        getTransaction().rollback();
      cs.close();
    } catch (Exception e)
    System.out.println("Exception is " + e);
view scope bean method:
  public String ProcessAll()
    RowKeySet rks = new RowKeySetImpl();
    CollectionModel model = (CollectionModel)nonProcessedTable.getValue();
    int rowcount = model.getRowCount();
    for (int i = 0; i < rowcount; i++) {
      model.setRowIndex(i);
      Object key = model.getRowKey();
      rks.add(key);
    nonProcessedTable.setSelectedRowKeys(rks);
    // Add event code here...
    List<String> updateList = new ArrayList<String>();
    RowKeySet selectedTransaction = nonProcessedTable.getSelectedRowKeys();
    Iterator selectedTransactionIter = selectedTransaction.iterator();
    System.out.println("we have " + nonProcessedTable.getSelectedRowKeys().size() + " rows selected");
    DCBindingContainer bindings =
                      (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
    DCIteratorBinding transactionIter = bindings.findIteratorBinding("eftTransactionsforBillingAccountViewObj1Iterator");
    RowSetIterator transactionRSIter = transactionIter.getRowSetIterator();
    //Select Rows and perform transaction
    while(selectedTransactionIter.hasNext())
      Key key = (Key)((List)selectedTransactionIter.next()).get(0);
      System.out.println("Key is" +key);
      Row currentRow = transactionRSIter.getRow(key);
      System.out.println("EFTT ID IS"+currentRow.getAttribute("efttId"));
      Utilities.getApplicationModule().markEFTTransaction(Integer.parseInt(currentRow.getAttribute("efttId").toString()));
  return null;
Output:
we have 26 rows selected
Key isoracle.jbo.Key[101 741 ]
Source breakpoint: unProcessedBean.java:443
EFTT ID IS741
<BindingContext> <findDataControl> [697] INFO: no refreshRegion, skipping cpx codebase lookup on AppModuleDataControl
In Application module markEFTTransaction
EFT ID to mark is741
N
committed to database
<ADFLogger> <begin> Commit transaction
<ViewObjectImpl> <afterCommit> [698] eftTransactionsforBillingAccountViewObj1 notify COMMIT ...
<DBTransactionImpl> <clearEntityCacheInternal> [699] Clearing EO cache for com.alliednational.ai.authorize.net.model.entities.bla
<ViewObjectImpl> <doClearCache> [700] Clearing VO cache for eftTransactionsforBillingAccountViewObj1
<ViewObjectImpl> <clearQueryCollectionCache> [701] Clear QueryCollection in cache for VO eftTransactionsforBillingAccountViewObj1
<ViewObjectImpl> <doClearCache> [702] Clearing VO cache for blaeftDetailViewObj1
<ViewObjectImpl> <clearQueryCollectionCache> [703] Clear QueryCollection in cache for VO blaeftDetailViewObj1
<DBTransactionImpl> <clearEntityCacheInternal> [704] Clearing EO cache for com.alliednational.ai.authorize.net.model.entities.eftt
<ViewObjectImpl> <doClearCache> [705] Clearing VO cache for eftTransactionsforBillingAccountViewObj1
<ViewObjectImpl> <clearQueryCollectionCache> [706] Clear QueryCollection in cache for VO eftTransactionsforBillingAccountViewObj1
<ViewObjectImpl> <doClearCache> [707] Clearing VO cache for blaeftDetailViewObj1
<ViewObjectImpl> <clearQueryCollectionCache> [708] Clear QueryCollection in cache for VO blaeftDetailViewObj1
<ADFLogger> <addContextData> Commit transaction
<ADFLogger> <end> Commit transaction
Key isoracle.jbo.Key[135 863 ]
<ActionListenerImpl> <processAction> oracle.jbo.RowNotFoundException: JBO-25034: Row with handle 13 is not found in rowset eftTransactionsforBillingAccountViewObj1.
javax.faces.el.EvaluationException: oracle.jbo.RowNotFoundException: JBO-25034: Row with handle 13 is not found in rowset eftTransactionsforBillingAccountViewObj1.
  at org.apache.myfaces.trinidad.component.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:51)
  at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
  at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
  at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:787)
  at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1252)
  at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:965)
  at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:346)
  at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:204)
  at javax.faces.webapp.FacesServlet.service(FacesServlet.java:312)
  at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
  at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
  at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
  at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
  at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
  at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:173)
  at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
  at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:122)
  at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
  at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
  at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
  at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
  at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)
  at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
  at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
  at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:180)
  at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
  at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
  at java.security.AccessController.doPrivileged(Native Method)
  at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
  at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
  at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
  at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
  at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
  at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
  at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
  at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
  at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
  at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
  at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
  at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
  at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
  at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
  at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
  at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
  at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
  at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
  at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
Caused by: oracle.jbo.RowNotFoundException: JBO-25034: Row with handle 13 is not found in rowset eftTransactionsforBillingAccountViewObj1.
  at oracle.jbo.server.ViewRowSetImpl.getRowFromHandle(ViewRowSetImpl.java:3220)
  at oracle.jbo.server.ViewRowSetImpl.getRow(ViewRowSetImpl.java:3307)
  at oracle.jbo.server.ViewRowSetImpl.getRow(ViewRowSetImpl.java:3294)
  at oracle.jbo.server.ViewObjectImpl.getRow(ViewObjectImpl.java:10772)
  at com.alliednational.ai.authorize.net.view.beans.unProcessedBean.ProcessAll(unProcessedBean.java:442)
  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:597)
  at com.sun.el.parser.AstValue.invoke(Unknown Source)
  at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
  at org.apache.myfaces.trinidad.component.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:46)
  ... 46 more
Any help is appreciated!!!
Shailaja.

This error is often the result of an activation/passivation problem in the application. Have you tested your app with application module pooling turned off?
If not I suggest that you do this and make sure all errors coming up in this mode to be fixed first. After the app runs OK with application module pooling turned off check if the error still occurs.
Timo

Similar Messages

  • Entity Row With Key not found

    Hi!!
    I am using jdeveloper 11.1.1.5
    I had used this code in my AMIMpl Method
        public void SuplrTdsHdDocumentNo(){
            ViewObject strhvo = this.getSuplrTdsRangesHd1();
            Row strhr = strhvo.getCurrentRow();
            ViewObject gydni = this.getGlmYearlyDocNos1();
            Row gydnr = gydni.last();
    //Adding last row value with 1
            Integer value = Integer.valueOf(gydnr.getAttribute("GydnDocNextNo").toString())+1;
            strhr.setAttribute("StrhDocNo",value);
            this.getDBTransaction().commit();
        }This method will get executes when my user clicks save button
    While clicking i am getting the error
    Entity row not foundpls verify the link if i am not clear
    http://www.4shared.com/photo/JbF6t1ze/E056.html

    pls remove the duplicate threads!!
    It happens due to network problem

  • Oracle.jbo.RowNotFoundException: JBO-25020

    HI,
    getting below error on table row addition ,table have 3 composite primary keys and one of attribute genrating dynamically and setting as below upon every addition of row
    // get the dc-iterator reference
    Row row = dciter.getCurrentRow();
    String key = dciter.getCurrentRowKeyString();
    row.setAttribute("location", location); -- setting dynamically to one of pk
    dciter.executeQuery();
    System.out.println("query executed sucesully"+key);
    dciter.setCurrentRowWithKey(key); -===.> this line throwing below error .
    Error:
    oracle.jbo.RowNotFoundException: JBO-25020: View row with key oracle.jbo.Key[102 ABC null ] is not found in Correc2Iterator.
    As per the error message ,every thime its taking as null value only on third parameter and but showing the new value on table (location)with above error message.
    any ideas ?
    thanks

    Hi,
    Why are you executing query immediately after setting location, if you do so the value you set will be lost.
    you may try again by commenting "dciter.executeQuery();".
    Sireesha

  • Patch failing with Class not found: oracle.apps.ad.jri.adjcopy

    Hi.
    Running a patch today and it is failing with:
    Class not found: oracle.apps.ad.jri.adjcopy
    The log states this:
    STRT_TASK: [Run adjcopy.class] [] [Tue Mar 02 2010 13:18:22]
    Running adjcopy.class:
    adjava -mx512m -nojit oracle.apps.ad.jri.adjcopy @D:\oracle\testappl\admin\TEST\out\apps.cmd
    Error:
    Program exited with status 1
    Cause: The program terminated, returning status code 1.
    adjava -mx512m -nojit oracle.apps.ad.jri.adjcopy @D:\oracle\testappl\admin\TEST\out\apps.cmd
    Calling D:\oracle\testcomn\util\jre\1.1.8\bin\jre.exe ...
    Class not found: oracle.apps.ad.jri.adjcopy
    AD Run Java Command is complete.
    D:\oracle\testappl\admin\TEST\out>
    I have tried running maually and still no luck.
    It is a frteshly cloned environment. Autoconfig has been run successfully.
    The only help from Metalink was that I have unzipped the patches in a folfer with space in it. So I renamed folder but still same error.
    The patch is 7415848 ATG Framework Patch.
    oracle 11.5.10.2, Windows 2003, RDBMS 10.2.
    Thanks in advance,
    DA
    Another thing I tried was to relink, but got the following:
    Do you wish to force regeneration of all jar files? [No] ?
    Generating any out of date or missing jar files.
    Signing product JAR files in JAVA_TOP -
    D:\oracle\testcomn\java
    using entity Customer and certificate 1.
    Class not found: oracle.apps.ad.jri.adjversion
    AD Administration error:
    aiojavaGetJavaVersion(), ERROR [code= 1] creating javaversionFile.
    Error : java version file format not correct
    adogjf() Unable to generate jar files under JAVA_TOP
    Backing up restart files, if any......Done.
    You should check the file
    D:\oracle\testappl\admin\TEST\log\adadmin.log
    for errors.
    D:\oracle\testappl\ad\11.5.0\bin>
    Edited by: Dan A on Mar 2, 2010 10:03 AM

    Dan,
    Please see if these documents are applicable.
    Note: 392870.1 - Generate product JAR files aiojavaGetJavaVersion(),ERROR creating javaVersionFile
    Note: 264911.1 - adutilities error out aiojavaGetJavaVersion(), Error creating javaversionFile
    Regards,
    Hussein

  • Problem during Add row in View Object : View Row of Key Not found

    Hello,
    I'm facing this problem during insert of new row in the view object. I'm having 2 entities that belong to the same DB table (I need this because one is required with the composition assoc and the other one without it).
    I have three tables, COMPANY, USERS and PRIVILEGES.
    Company (1) to USERS (N)
    USERS (1) to PRIVILGES (N)
    While adding users for a specific company , i get this error msg.
    P.S: I'm not getting this error, if i add company, then user. Only if i directly add users i'm getting this error.
    04/11/27 19:31:46 [12511] DCUtil.RETURNING oracle.jbo.uicli.binding.JUFormBinding
    04/11/27 19:31:46 [12512] **** refreshControl() for BindingContainer :new_cuserUIModel
    04/11/27 19:31:46 [12513] *** DCDataControl.sync() called from :DCBindingContainer.refresh
    04/11/27 19:31:46 [12514] Decompressed BC state:BCST:Reousers1View1Iterator=0001000000042D323535,UsertypeView1Iterator=0001000000124141414B6639414142414141537653414141,StatesView1Iterator=0001000000124141414B5A77414142414141536643414141,
    04/11/27 19:31:46 [12515] **** refreshControl() for BindingContainer :new_cuserUIModel
    04/11/27 19:31:46 [12516] *** DCDataControl.sync() called from :DCBindingContainer.refresh
    04/11/27 19:31:46 [12517] Column count: 21
    04/11/27 19:31:46 [12518] ViewObject: Reousers1View_254_findByKey_ close prepared statements...
    04/11/27 19:31:46 [12519] ViewObject: Reousers1View_254_findByKey_ Created new QUERY statement
    04/11/27 19:31:46 [12520] SELECT Reousers1.USERID, Reousers1.CID, Reousers1.UTYPE, Reousers1.DESIGNATION, Reousers1.NAME, Reousers1.ADDRESS, Reousers1.CITY, Reousers1.STATE, Reousers1.ZIP, Reousers1.EMAIL, Reousers1.TEL, Reousers1.FAX, Reousers1.WEBSITE, Reousers1.ENTRY FROM REOUSERS Reousers1 WHERE (Reousers1.USERID = :1)
    04/11/27 19:31:46 [12521] Bind params for ViewObject: Reousers1View_254_findByKey_
    04/11/27 19:31:46 [12522] Binding param 1: -255
    04/11/27 19:31:46 [12523] OracleSQLBuilder Executing Select on: REOUSERS (false)
    04/11/27 19:31:46 [12524] Built select: 'SELECT USERID, CID, UTYPE, DESIGNATION, NAME, ADDRESS, CITY, STATE, ZIP, EMAIL, TEL, FAX, WEBSITE, ENTRY FROM REOUSERS Reousers1'
    04/11/27 19:31:46 [12525] Executing FAULT-IN...SELECT USERID, CID, UTYPE, DESIGNATION, NAME, ADDRESS, CITY, STATE, ZIP, EMAIL, TEL, FAX, WEBSITE, ENTRY FROM REOUSERS Reousers1 WHERE USERID=:1
    oracle.jbo.RowNotFoundException: JBO-25020: View row of key oracle.jbo.Key[-255 ] not found in Reousers1View1.

    Hi Timo,
    once again thanks for ur reply.
    as my vo are based on procedure, i know that i can't update the table using them.
    i only wanted to insert the rows in the vo and show it to user (only for selection purpose).
    Now my problem is sorted as i have changed the code like this-
    Row new_row=vo1.createRow();
    new_row.setAttribute(index,vo2.getAttribute(index)) ;
    vo1.insertRow(new_row);
    Earlier i was only inserting a new row, without creating any row.
    Thanks a lot.

  • Event Handler not found -OIM 9102

    Hi Experts,
    I'm facing a problem while creating a user manually in OIM. Everytime I try to manually create a user, an error message is displayed on the GUI saying, "DOBJ.EVT_NOT_FOUND
    Event Handler not found".
    On checking the logs, this is what I get there. Since I'm a newbie, I'm not able to figure out what's happening.
    Any help would be great.
    java.sql.SQLIntegrityConstraintViolationException: ORA-01400: cannot insert NULL into ("XELADM"."UPA_USR"."ACT_KEY")
         at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:85)
         at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:112)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:173)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:413)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1030)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:194)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:947)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1222)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3381)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3462)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeUpdate(OraclePreparedStatementWrapper.java:1349)
         at org.jboss.resource.adapter.jdbc.WrappedPreparedStatement.executeUpdate(WrappedPreparedStatement.java:365)
         at com.thortech.xl.dataaccess.tcDataBase.writePreparedStatement(Unknown Source)
         at com.thortech.xl.dataobj.PreparedStatementUtil.executeUpdate(Unknown Source)
         at com.thortech.xl.audit.auditdataprocessors.UserProfileRDGenerator.insertUserProfile(Unknown Source)
         at com.thortech.xl.audit.auditdataprocessors.UserProfileRDGenerator.processUserProfileChanges(Unknown Source)
         at com.thortech.xl.audit.auditdataprocessors.UserProfileRDGenerator.processAuditData(Unknown Source)
         at com.thortech.xl.audit.genericauditor.GenericAuditor.processAuditMessage(Unknown Source)
         at com.thortech.xl.audit.engine.AuditEngine.processSingleAudJmsEntry(Unknown Source)
         at com.thortech.xl.audit.engine.AuditEngine.processOfflineNew(Unknown Source)
         at com.thortech.xl.audit.engine.jms.XLAuditMessageHandler.execute(Unknown Source)
         at com.thortech.xl.schedule.jms.messagehandler.MessageProcessUtil.processMessage(Unknown Source)
         at com.thortech.xl.schedule.jms.messagehandler.AuditMessageHandlerMDB.onMessage(Unknown Source)
         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:597)
         at org.jboss.invocation.Invocation.performCall(Invocation.java:359)
         at org.jboss.ejb.MessageDrivenContainer$ContainerInterceptor.invoke(MessageDrivenContainer.java:495)
         at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:158)
         at org.jboss.ejb.plugins.MessageDrivenInstanceInterceptor.invoke(MessageDrivenInstanceInterceptor.java:116)
         at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:63)
         at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)
         at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:350)
         at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:181)
         at org.jboss.ejb.plugins.RunAsSecurityInterceptor.invoke(RunAsSecurityInterceptor.java:109)
         at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)
         at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:138)
         at org.jboss.ejb.MessageDrivenContainer.internalInvoke(MessageDrivenContainer.java:402)
         at org.jboss.ejb.Container.invoke(Container.java:960)
         at org.jboss.ejb.plugins.jms.JMSContainerInvoker.invoke(JMSContainerInvoker.java:1092)
         at org.jboss.ejb.plugins.jms.JMSContainerInvoker$MessageListenerImpl.onMessage(JMSContainerInvoker.java:1392)
         at org.jboss.jms.asf.StdServerSession.onMessage(StdServerSession.java:266)
         at org.jboss.mq.SpyMessageConsumer.sessionConsumerProcessMessage(SpyMessageConsumer.java:906)
         at org.jboss.mq.SpyMessageConsumer.addMessage(SpyMessageConsumer.java:170)
         at org.jboss.mq.SpySession.run(SpySession.java:323)
         at org.jboss.jms.asf.StdServerSession.run(StdServerSession.java:194)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:761)
         at java.lang.Thread.run(Thread.java:619)
    2011-03-18 15:55:01,283 ERROR [XELLERATE.AUDITOR] Class/Method: UserProfileRDGenerator/insertUserProfile encounter some problems: Failed to insert user profile record in table UPA_USR for auditee 5943
    2011-03-18 15:55:01,283 ERROR [XELLERATE.AUDITOR] Class/Method: UserProfileRDGenerator/insertUserProfile encounter some problems: {1}
    com.thortech.xl.orb.dataaccess.tcDataAccessException
         at com.thortech.xl.dataaccess.tcDataAccessExceptionUtil.createException(Unknown Source)
         at com.thortech.xl.dataaccess.tcDataBase.createException(Unknown Source)
         at com.thortech.xl.dataaccess.tcDataBase.writePreparedStatement(Unknown Source)
         at com.thortech.xl.dataobj.PreparedStatementUtil.executeUpdate(Unknown Source)
         at com.thortech.xl.audit.auditdataprocessors.UserProfileRDGenerator.insertUserProfile(Unknown Source)
         at com.thortech.xl.audit.auditdataprocessors.UserProfileRDGenerator.processUserProfileChanges(Unknown Source)
         at com.thortech.xl.audit.auditdataprocessors.UserProfileRDGenerator.processAuditData(Unknown Source)
         at com.thortech.xl.audit.genericauditor.GenericAuditor.processAuditMessage(Unknown Source)
         at com.thortech.xl.audit.engine.AuditEngine.processSingleAudJmsEntry(Unknown Source)
         at com.thortech.xl.audit.engine.AuditEngine.processOfflineNew(Unknown Source)
         at com.thortech.xl.audit.engine.jms.XLAuditMessageHandler.execute(Unknown Source)
         at com.thortech.xl.schedule.jms.messagehandler.MessageProcessUtil.processMessage(Unknown Source)
         at com.thortech.xl.schedule.jms.messagehandler.AuditMessageHandlerMDB.onMessage(Unknown Source)
         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:597)
         at org.jboss.invocation.Invocation.performCall(Invocation.java:359)
         at org.jboss.ejb.MessageDrivenContainer$ContainerInterceptor.invoke(MessageDrivenContainer.java:495)
         at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:158)
         at org.jboss.ejb.plugins.MessageDrivenInstanceInterceptor.invoke(MessageDrivenInstanceInterceptor.java:116)
         at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:63)
         at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)
         at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:350)
         at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:181)
         at org.jboss.ejb.plugins.RunAsSecurityInterceptor.invoke(RunAsSecurityInterceptor.java:109)
         at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)
         at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:138)
         at org.jboss.ejb.MessageDrivenContainer.internalInvoke(MessageDrivenContainer.java:402)
         at org.jboss.ejb.Container.invoke(Container.java:960)
         at org.jboss.ejb.plugins.jms.JMSContainerInvoker.invoke(JMSContainerInvoker.java:1092)
         at org.jboss.ejb.plugins.jms.JMSContainerInvoker$MessageListenerImpl.onMessage(JMSContainerInvoker.java:1392)
         at org.jboss.jms.asf.StdServerSession.onMessage(StdServerSession.java:266)
         at org.jboss.mq.SpyMessageConsumer.sessionConsumerProcessMessage(SpyMessageConsumer.java:906)
         at org.jboss.mq.SpyMessageConsumer.addMessage(SpyMessageConsumer.java:170)
         at org.jboss.mq.SpySession.run(SpySession.java:323)
         at org.jboss.jms.asf.StdServerSession.run(StdServerSession.java:194)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:761)
         at java.lang.Thread.run(Thread.java:619)
    Thanks,
    Nikhil

    Check for the ACT_KEY in the USR table in the database for User with the key 5943. It should not be null. Just a hunch by looking at the error and of course as Kevin said, you need to truncate the jms stuff.
    -Bikash

  • Oracle.forms.webutil.file Transfer.File Transfer bean not found

    I've followed tons of instructions for 2 days to install and configure webutil and I finally have success with the demo. However, when I add this to my own form and use the CLIENT_IMAGE.READ_FILE_IMAGE
    I end up with error oracle.forms.webutil.file Transfer.File Transfer bean not found WEBUTIL_FILE_TRANSFER.getMaxTransfer will not work.
    What am I missing? Thanks for any help.

    Make sure your form subclasses object group webutil.olb, and that webutil.pll is also attached. Make sure that your forms folder contains webutil.plx (a compiled version of webutil.pll). Unless the default config (in formsweb.cfg) includes the entries required for webutil support, you must specify a config that does have these entries. 10g, which comes configured for webutil, provides a config called webutil for this. An example URL might look like:
    http://myappserver/forms/frmservlet?form=myform.fmx&config=webutil
    There could be other problems, but since you're able to run the demo forms, I'm guessing that what I've mentioned are the first things for you to check.
    Hope this helps,
    Eric Adamson
    Lansing, Michigan

  • Crs_stat errors out with "message not found"

    hi gurus
    After patching patch 8705958, crs_stat errors out with "message not found" ,what could be the problem?
    Thank you!

    Never faced such issue...
    please search on metalink or raise an SR with Oracle Support..
    Cheers !
    Rajesh

  • Director Player Error : Handler not found in object

    Hi,
    I have made an exe to run a video in Director. This was done using old version of director, 8.5 supposedly.
    When i try to run video through this exe, the video plays in background but i get the following error(snapshot attached):
    "Handler not found in object
    # openport
    Script Error. Continue?"
    I have installed shockwave player 8.5 and also put all the files from xtra folder to the folder where exe in lying but still i am getting the same error.
    Any help will be greatly appreciated.

    Looks like something in one of the scripts in your project that is being called but is not working correctly for some reason.
    Without seeing the code it's hard to tell what the problem may be. I'm wondering if there's one of the old-style line continuation characters that may be breaking the #openport handler somewhere in your scripts.

  • Firefox does not load pages, comes back with server not found

    First I thought this was a problem with Firefox 4 beta but now I am having the same issue with 3.6.16
    About 70% of the times, Firefox does not open the web page and comes back with "Server not found" message. Interesting thing is it comes back with this message on the first 2 tries and then on the third try for the same link it will display the page. Always, 2 fails and 3rd time it works. Now during the first two times, internet commnection is working and if I try the same URL on IE it works without any issues. This started happening after I tried Firefox 4 beta. 4 is not uninstalled and I am back to 3.6.16. But the issue remains.
    I am using Win 7 64 Home Premium, SP1 is not applied yet but all updates are in place.

    Well, I'm using Firefox 4.0 and have the same problem. I tried to open my private homepage and my *.net-domain comes back with the "Server not found" message (my *.com-domain loads without any problem - same contents on both websites)
    I also tried to open my net-domain in FF portable - without any problems.
    Clearing the cache, deleting the cookies etc in FF4 does not help either.
    I also had the experience that FF4 does not load CSS5 websites (e.g. deviantart) properly (CSS does not work, website shows simply the html-version, a disgusting look). With FF portable the problem does not exist.
    I tried this on different machines (e.g. Windows XP Pro SP3 (office PC), Win7 Pro 64, Win Vista SP2... (home PCs) and there I'm experiencing the same issues with FF4 and various websites.

  • APEX Listener 2.0 - RESTful Services Failure with  404 - Not Found

    Versions used:
    * APEX Listener 2.0.0.354.17.05
    * Application Express 4.2.1.00.08
    * Oracle Database 11.2.0.1
    When testing the sample RESTful Service Module oracle.example.hr I always get 404 - Not Found page.
    I followed the documentation to install and configure APEX 4.2 and the Listener 2.0. Everything in my APEX installation works fine except RESTful Services.
    For example, when calling this RESTful Service:
    http://company.com:45678/apex/DEV/xxuapex/hr/empinfo/
    I get a 404 page.
    The corresponding entry in url-mapping.xml is:
    <pool base-path="/DEV" name="od01" workspace-id="xxuapex"/>
    where xxuapex is the name of the schema as well as the workspace where the RESTful Service is installed.
    Moreover, the corresponding od01.xml, od01_rt.xml and od01_al.xml in the conf directory seem correct.
    Any help is greatly appreciated.
    Thanks.
    Eddie Awad.

    Hi Eddie,
    +> try the other option base-url of the url-mapping+
    I did. No change. Still getting 404.When active it should transform the 404 page into a detailed 404 with a description of what the error is. Just to be sure, this is activated in the defaults.xml file of the APEX Listener as: *<entry key="log.logging">true</entry>*.
    You should then see a detailed 404 output in your browser of what's going wrong first of all.
    +> Could you post your url-mapping.xml file?+
    <?xml version="1.0" encoding="UTF-8"?>
    <pool-config xmlns="http://xmlns.oracle.com/apex/pool-config">
    <pool base-path="/DEV" name="od01" workspace-id="xxuapex"/>
    <pool base-path="/TEST" name="ot01" workspace-id="xxuapex"/>
    </pool-config>
    Despite using the url mapping script, it didn't map mine correctly and had to edit it manually. It was the use of "apex" that got it to work for me:
    *<pool base-path="/" name="apex" workspace-id="workspace-name-here" updated="2013-01-09T20:48:59.75Z"/>*
    Nick.

  • Oracle VM Server Version: 3.2.9, was not found in file: UpgradeServersYumPkgLists.txt

    After an upgrade to 3.3  Oracle VM Manager Core WS-API Shell 3.3.1.1065 (20140619_1065)
    Server VM's are version 3.2.9
    UpgradeServers.py is failing with
    Wed Mar  4 21:32:39 2015 INFO:  UpgradeServers script starting...
    Wed Mar  4 21:32:39 2015 INFO:  OVM Manager version: 3.3.1.1065
    Wed Mar  4 21:32:39 2015 INFO:  Command line args: ['UpgradeServers.py', '-v', 'pg-uni-ovm-0.xxxx.ca']
    Wed Mar  4 21:32:40 2015 DEBUG: Initial set of plugins (currently in-use on storage arrays): []
    Wed Mar  4 21:32:40 2015 DEBUG: Servers to upgrade: pg-uni-ovm-0.xxxx.ca/v3.2.9-749,
    Wed Mar  4 21:32:40 2015 INFO:  Server: pg-uni-ovm-0.xxxx.ca. Transition Server Update Repository: 3.3_trans_repo, URL/path: http://yum.xxxx.ca/yum/OracleVM/OVM3/x86_64/transition/3.3/
    Wed Mar  4 21:32:40 2015 INFO:  Server: pg-uni-ovm-0.xxxx.ca. OVS Server Update Repository: 3.3_ovs_repo, URL/path: http://yum.xxxx.ca/yum/unknown/OVM3X/latest/x86_64/
    Wed Mar  4 21:32:40 2015 INFO:  Getting update packages list in Server Update Repository: 3.3_ovs_repo, using oldest server: pg-uni-ovm-0.xxxx.ca, version: 3.2.9-749
    Wed Mar  4 21:32:43 2015 INFO:  Checking servers for non-native packages (those installed after initial server installation)
    Wed Mar  4 21:32:43 2015 FATAL: Version: 3.2.9, was not found in file: UpgradeServersYumPkgLists.txt. You must download a new version of this file. See Installation Guide for details.
    Wed Mar  4 21:32:43 2015 INFO:  Log file is available at /u01/app/oracle/ovm-manager-3/ovm_tools/bin/UpgradeServers.log
    Wed Mar  4 21:32:43 2015 INFO:  UpgradeServers script stopping...
    [root@pg-uni-om-0 ~]#
    cat /u01/app/oracle/ovm-manager-3/ovm_tools/etc/UpgradeServersYumPkgLists.txt
    shows nothing  in the 3.2 series
    How can I regenerate, download or fix this so I can update the servers?

    Please use Oracle VM Manager 3.3.2.
    https://wikis.oracle.com/display/oraclevm/Oracle+VM+What%27s+New
    For download instructions, visit Oracle VM Downloads

  • Restore command fails with "target not found.

    Hi,
    Can you help me explain what does the following output means and the possible way to clean it up? It doesn't look like to be a controlfile not in sync problem and the "change archivelog '..' uncatalog' reports file not found in controlfile. I have trouble finding out the root cause of this "restore failure" for archivelog. The "report unrecoverable" show no record. Thanks.
    This is 9iR2 under archivelog mode with weekly full backup. Recovery windows is set to 7 days.
    1)RMAN> restore archivelog all validate;
    ===========================================================
    RMAN-03002: failure of restore command at 08/22/2005 12:07:24
    RMAN-06026: some targets not found - aborting restore
    RMAN-06025: no backup of log thread 1 seq 1844 scn 133107107 found to restore
    RMAN-06025: no backup of log thread 1 seq 1843 scn 132994888 found to restore
    RMAN-06025: no backup of log thread 1 seq 1842 scn 132653855 found to restore
    RMAN-06025: no backup of log thread 1 seq 1841 scn 132328870 found to restore
    2) SQL> select name,archived,deleted,status from v$archived_log where sequence# in (1844,1843,1842,1841);
    NAME
    ARC DEL S
    /u05/hotbk/arch_1_1841.arc
    YES YES D
    /u05/hotbk/arch_1_1842.arc
    YES YES D
    /u05/hotbk/arch_1_1843.arc
    YES YES D
    /u05/hotbk/arch_1_1844.arc
    YES YES D
    3) These archivelog files already gone from the file system.
    4) list expired backup and delete expired backup has been done.
    5) delete obsolete has been done.
    6) RMAN> change archivelog '/u05/hotbk/arch_1_1842.arc' uncatalog;
    ===========================================================
    RMAN-03002: failure of uncatalog command at 08/22/2005 12:07:02
    RMAN-20240: archived log not found in the recovery catalog
    RMAN-06046: archive log name: /u05/hotbk/arch_1_1842.arc

    Did you tried to execute: restore archivelog from scn 1 validate; ?
    It can be the problem: Note:110160.1 - RMAN-06026 RMAN-06025 Restore Archivelogs Seperately: https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=110160.1
    Bye, Aron

  • TechTracks order fails 4 times with Page Not Found

    I have been unsuccessfully trying to order the Java Developer for Windows CD subscription through TechTracks (www.oracle.com/webapps/techtracks. The first 2 times, I got as far as the Personal Information page, but when I pressed Continue, after about a 20 second pause, I got a standard 'Page Not Found Error 404' web page. The 3rd and 4th attempt got me as far as the Payment Information page, where I supplied my credit card info and pressed Submit, and got the Oracle error page "Sorry, this page was not found" (www.oracle.com/errors/404.html). I have not gotten any order confirmation emails, so I don't think my card was charged. What's going on? Should I try this again, or is something really broken? BTW, how soon after ordering are the CD's shipped?
    Thank you,
    Robert Else
    Robert Else

    NEW INFO: Looks like I ended up with a duplicate order after all - just got the confirmation emails. Both orders went through even though I got the "Sorry this page was not found" error both times. The two order numbers are 20482 and 20483.
    ** Will you please cancel one of the orders and credit my card. Please advise when this has been done, or advise as to how I can get credit for the duplicate order.
    Thank you,
    Robert Else

  • Oracle TopLink Object-to-XML - issue JAXBException: Provider not found...

    Env:
    OS:XP
    Java dev env: JDev 10.1.2 production
    Toplink Workbench - 10g Developer Preview 3 (10.1.3.0) build 041116
    I am attempting to use the toplink object to xml functionality through carefully following the tutorial titled Oracle TopLink Object-to-XML on OTN (link: http://www.oracle.com/technology/products/ias/toplink/preview/10.1.3dp3/howto/ox/index.htm)
    The first 11 steps are nice and clear and very easy to follow. However, when I hit 12 I run into problems. I believe I have done all I am required to do.
    My demo test code falls over on the attempting to create the JAXB context:
    JAXBContext jaxbContext = JAXBContext.newInstance("examples.ox.model");
    The exception I get is:
    javax.xml.bind.JAXBException: Provider oracle.toplink.ox.jaxb.JAXBContextFactory not found
    - with linked exception:
    [java.lang.ClassNotFoundException: oracle.toplink.ox.jaxb.JAXBContextFactory ]
    The code is capable of loading the jaxb.properties file, and has toplink.jar in the classpath. I am able to create a is located JAXBContextFactory prior to calling the new instance logic, illustrating that the class is in the classpath.
    Using google I have seen it mentioned that the newInstance call could be making use of a different JVM to the Application (https://jaxb.dev.java.net/faq/#classloader) hence may not be able to pick up the JAXBContextFactory class. I have attempted to follow their advice of passing in a class loader - but this makes no difference.
    I.E. JAXBContext jaxbContext = JAXBContext.newInstance("examples.ox.model", this.getClass().getClassLoader());
    Does anyone recognise this issue and have a solution.
    Here is my code:
    try
    File file = new File("D:\\Toplink\\demo\\Customer-data.xml");
    JAXBContext jaxbContext = JAXBContext.newInstance("examples.ox.model);
    Unmarshaller unmarshaller = jaxbContext.createUnmarshaller();
    Customer customer = (Customer) unmarshaller.unmarshal(file);
    System.out.println(" customer.getFirstName() : "+customer.getFirstName());
    catch(Exception e)
    System.out.println("Error: "+ e.toString());
    As mentioned earlier it falls over on JAXBContext.newInstance("examples.ox.model);
    cheers
    Nick

    Hi Blaise,
    thanks for your response.
    My session.xml file is located:
    D:\Toplink\demo\classes\session.xml
    And contains:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <toplink-sessions version="10g Developer Preview 3 (10.1.3.0 )" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <session xsi:type="database-session">
    <name>examples.ox.model</name>
    <event-listener-classes/>
    <primary-project xsi:type="xml">D:/Toplink/demo/classes/CustomerProject.xml</primary-project>
    <login xsi:type="xml-login"/>
    </session>
    </toplink-sessions>
    My classpath references only jars downloaded with the links on the How To tutorial titled Oracle TopLink Object-to-XML on OTN (link: http://www.oracle.com/technology/products/ias/toplink/preview/10.1.3dp3/howto/ox/index.htm)
    This is the JDev output indicating the classpath and error:
    D:\Jdev1013Preview\jdk\bin\javaw.exe -ojvm -classpath D:\Toplink\demo\classes;D:\Toplink\lib\xml.jar;D:\Toplink\lib\xmlparserv2.jar;D:\Toplink\toplink\jlib\tljaxb.jar;D:\Toplink\toplink\jlib\toplink.jar examples.ox.model.RunDemo
    Error: javax.xml.bind.JAXBException: Provider oracle.toplink.ox.jaxb.JAXBContextFactory not found
    - with linked exception:
    [java.lang.ClassNotFoundException: oracle.toplink.ox.jaxb.JAXBContextFactory
    Process exited with exit code 0.
    Any more suggestions?
    In the meantime I will go through the information on the link that you have sent and see if I can get anyfurther.
    Thanks
    Nick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Maybe you are looking for

  • Just got a new MBP and I want to sell my old one.

    The email I got from Apple says they will give me $500 for my 3 year old MBP.  I have a lock set but I do not remember how I did this or how to remove it, but when I want to make a change with the time, for example, I have to insert a mastercode.  it

  • AIM camera is black when connected to iChat

    iMac G5 running osX.4.3 isight ichat (3.1) I am trying to do a one way chat to a buddy on AIM (pc - xp pro) and the camera says its connected but I just get a black screen. I am able to connect from one mac to another and view the video through ichat

  • Data transfer from RT to FPGA using DMA FIFO

    Hello all, My question is "How do you stream data from RT target to FPGA target using DMA FIFOs?" I would like to control some indicators (or controls) in FPGA vi using controls in the RT vi using DMA FIFO. I have used four controls in my RT vi, but

  • Problem in Adobe WDP Applications

    Dear All I have installed ADS on my Web Server 6.40. It seems to be working. When I make an application based on Adobe it given me an message in the area where there is Adobe form. The message is 'I am a placeholder control' Please help GG

  • Integration from CRM on Demand

    Hi All, Is it possible to send integration request from siebel crm on demand.If so, How do we do it. I want to integrate CRM on demand with peoplesoft system.Is there any way for the same. Any help is appreciated. Thanks in advance. Vamsi.