Intermittent error in production server JBO-25200: Application module is not connected to a database.

We've set 60 min as session timeout and AM pool parameters also high  (<AM-Pooling jbo.ampool.maxinactiveage="1200000" jbo.ampool.initpoolsize="25" jbo.ampool.maxpoolsize="1000" jbo.recyclethreshold="50" jbo.ampool.maxavailablesize="50" jbo.ampool.minavailablesize="25"/>) in our application due to requirements.  We are using jdev 11.1.1.7.0
Intermittently The page is getting refreshed and unsaved data is lost when user leaves a page for 5 or 10 min and on return back to application and performing operations back. There is not much load also on the server. When we analyze the logs the below exception is thrown on the logs.
Exception Class: oracle.jbo.NotConnectedException
Message: JBO-25200: Application module is not connected to a database.
Agent: APP_BSA_BPA[mnatest_soa2]@egw-bpm2-mnat.wfs.com:5508
API: Exception
Thread Name: [ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)' <562720362>
Exception StackTrace
Method Class Line        File Name
handleRollback oracle.jbo.server.DefaultTxnHandlerImpl 145         <unknown>
doRollback oracle.jbo.server.DBTransactionImpl 5174       <unknown>
rollback oracle.jbo.server.DBTransactionImpl 2544       <unknown>
resetState oracle.jbo.server.ApplicationModuleImpl 4860       <unknown>
disconnect oracle.jbo.common.ampool.DefaultConnectionStrategy 343         <unknown>
doPoolDisconnect oracle.jbo.server.ApplicationPoolMessageHandler 592         <unknown>
doPoolMessage oracle.jbo.server.ApplicationPoolMessageHandler 430         <unknown>
doPoolMessage oracle.jbo.server.ApplicationModuleImpl 9316       <unknown>
sendPoolMessage oracle.jbo.common.ampool.ApplicationPoolImpl 4530       <unknown>
prepareApplicationModule oracle.jbo.common.ampool.ApplicationPoolImpl 2460       <unknown>
doCheckout oracle.jbo.common.ampool.ApplicationPoolImpl 2270       <unknown>
useApplicationModule oracle.jbo.common.ampool.ApplicationPoolImpl 3169       <unknown>
useApplicationModule oracle.jbo.common.ampool.SessionCookieImpl 592         <unknown>
useApplicationModule oracle.jbo.http.HttpSessionCookieImpl 234         <unknown>
useApplicationModule oracle.jbo.common.ampool.SessionCookieImpl 525         <unknown>
useApplicationModule oracle.jbo.common.ampool.SessionCookieImpl 520         <unknown>
initializeApplicationModule oracle.adf.model.bc4j.DCJboDataControl 523         <unknown>
getApplicationModule oracle.adf.model.bc4j.DCJboDataControl 869         <unknown>
internalGetBeanDataControl oracle.adf.model.bc4j.DCJboDataControl 969         <unknown>
findOrCreateMethodRowSetIterator oracle.adf.model.bc4j.DCJboDataControl 1236       <unknown>
initSourceRSI oracle.jbo.uicli.binding.JUMethodIteratorDef$JUMethodIteratorBinding 698         <unknown>
callInitSourceRSI oracle.adf.model.binding.DCIteratorBinding 1679       <unknown>
internalGetRowSetIterator oracle.adf.model.binding.DCIteratorBinding 1652       <unknown>
refresh oracle.adf.model.binding.DCIteratorBinding 4506       <unknown>
refreshIfNeeded oracle.adf.model.binding.DCExecutableBinding 341         <unknown>
getRowSetIterator oracle.adf.model.binding.DCIteratorBinding 1612       <unknown>
getViewObject oracle.jbo.uicli.binding.JUMethodIteratorDef$JUMethodIteratorBinding 473         <unknown>
_loadCriterionList oracle.adfinternal.view.faces.model.binding.FacesCtrlSearchBinding$AdfConjunctionCriterion 3504 <unknown>
getCriterionList oracle.adfinternal.view.faces.model.binding.FacesCtrlSearchBinding$AdfConjunctionCriterion 3417 <unknown>
invoke sun.reflect.GeneratedMethodAccessor4821 - <unknown>
invoke sun.reflect.DelegatingMethodAccessorImpl       25 <unknown>
invoke java.lang.reflect.Method 597         <unknown>
Any idea why this exception thrown ? Is this because of weblogic server connections cleanup or something to do with connections?  As per my understanding , JDBC connection will not be released when AM is active/managed mode.  Oracle Doc says
" That application module instance holds onto the JDBC connection object that it acquired from the pool until the application module instance is removed from the application module pool."

jbo.ampool.maxinactiveage is set to 20 min which means that If AM in the pool is inactive for 20 min then clean this AM in the next cycle (still that is not our case).  We also set jbo.recyclethreshold="50" means 50 AMs can exists in the pool with managed-state. We set these because of performance reasons.  As per my understanding, AM instance will be deleted (????) but in any action on the UI will pick up another instance of the AM because datacontrolframe is still valid in the session.  Do we have any best practice like jbo.ampool.maxinactiveage should be equal to session time out?. The error seems AM lost the underlying JDBC connection and somehow application is using that stale AM ?. what will be possible reason?.

Similar Messages

  • JBO-25200: Application module is not connected to a database

    Using JDev 9.0.3.
    I am receiving the following error when running my app through JDevloper's embedded OC4J:
    JBO-25200: Application module is not connected to a database.
    The error is happening when I execute the following line(s) of code:
    // holds the ViewObject RowSet
    RowSet accessTypeRS = PersonalInfoForm.getAccessTypeRS();
    if (accessTypeRS != null) {
    if (accessTypeRS.getEstimatedRowCount() > 0) {
    accessTypeRS.setRangeSize(-1);
    I receive the error when trying to execute the setRangeSize method. However, several prior attempts caused the error at the line above (getEstimatedRowCount)
    I am using connection pooling with a datasource and I'm retrieving an application module through the app module pool.
    jbo.doconnectionpooling is set to true.
    Disconnect ApplicationModule upon release is checked.
    Any ideas on why and how this is happening?
    Thanks!
    -Teri Kemple
    <AppModuleConfig name="PersonalInfoBcModuleLocal">
    <DsName>jdbc/arcavisionCoreDS</DsName>
    <DeployPlatform>LOCAL</DeployPlatform>
    <DsPasswd>adw02_www</DsPasswd>
    <jbo.doconnectionpooling>true</jbo.doconnectionpooling>
    <DsUserName>adw02_www</DsUserName>
    <JDBCDataSource>jdbc/arcavisionCoreDS</JDBCDataSource>
    <jbo.project>PersonalInfoBC0</jbo.project>
    <AppModuleJndiName>com.arca.personalinfo.bc.PersonalInfoBcModule</AppModuleJndiName>
    <ApplicationName>com.arca.personalinfo.bc.PersonalInfoBcModule</ApplicationName>
    </AppModuleConfig>
    <ConnectionDefinition name="jdbc/arcavisionCoreDS">
    <ENTRY name="DsPasswd" value="adw02_www"/>
    <ENTRY name="DsName" value="jdbc/arcavisionCoreDS"/>
    <ENTRY name="DsUserName" value="adw02_www"/>
    </ConnectionDefinition>

    Hi,
    Please post test steps using the BC4J tester or a test script that illustrates the issue against a simple table. Otherwise, it is extremeley difficult to debug/diagnose the issue on this forum.
    I have not seen this issue in any of the automated unit test scripts that exercise the ApplicationModule pooling.
    Thanks,
    JR

  • Application module is not connected to a database

    Using JDev 11.1.1.3
    I have an application that uses EJB and i have an application that uses business components. The EJB app needs to integrate some parts from the BC application so i package the BC model in a jar file and use it in my EJB to create some records.
    This is some code that i execute in my EJB to create a new record using the BC jar:
    ApplicationModule module = Configuration.createRootApplicationModule("bcApp.model.MyModuleImpl", "MyModuleLocal");
    am = (MyModuleImpl)module;
    BillDefImpl billDef = (BillDefImpl)BillImpl.getDefinitionObject();
    bill = (BillImpl)billDef.createInstance2(am.getDBTransaction(), null);
    //set some attributes
    EntityDefImpl billLineDef = BillLineImpl.getDefinitionObject();
    BillLineImpl billLine = (BillLineImpl)billLineDef.createInstance2(am.getDBTransaction(),null);
    billLine.setBill(bill);
    //set some attributes
    am.getTransaction().commit();The weird behavior of this is that the first time i call this code, everything is working just fine. Both the bill and billLine are created in the database. No error shows up in the console.
    When i try to do the exact same in the same session, i get the "Application module is not connected to a databas" error. When i open a new session, everything is working fine again.
    I also tried using the am.getDBTransaction().commit(); instead of the getTransaction.
    Can anybody tell me what could cause this kind of behavior? Am i doing something wrong?
    Edited by: Yannick Ongena on Sep 5, 2011 7:31 AM

    Sorry, just a typo. I modified the classes/package for this post.
    I also did some more testing and it appears to be EJB related. The code i provided above is called from an EJB. When I execute the code from a managed bean, i don't get this error when i execute it a second time.
    Maybe also useful info. My application module uses a JNDI data source that is configured on the weblogic server.

  • Thread: Application sever is not connecting to the database

    Oracle Production DB is :9i, UNIX Aix 5.2
    Application server :10g, Os: win 2008
    Application server : Mendix Application server.
    Error:Error: ORA-00604: error occurred at recursive SQL level 1
    ORA-01882: timezone region not found
    : Can't create a new connection for jdbc:oracle:thin:@<xxx.xx.x.xx>:1521:ABCDEF : ORA-00604: error occurred at recursive SQL level 1
    ORA-01882: timezone region not found
    Here Application is running fine, But when we are trying to connect to the 9i production server through jdbc connection its throwing error as i told.
    I was set timezone same on both databases and on machines also. Even though it is giving same error
    Here application server machine time is same but time zone is different like time is 12.11 in all machines but time zone is UTC+04:00, Abudhabi, Muscat where as in databases '+04:00' UNK. Here i was tried to change the time zone of Application server, but it was not having +04:00,UNK
    So please tell me what exactly need to do to sync the database from 10g db of Mendix application server to 9i production database.
    Its urgent...pls
    Regards
    873393

    chk this
    How to fix msg=ORA-01882: timezone region  not found
    you have to set this java option
    -Duser.timezone=EET //for your timezone

  • Application module with no connection to the database in jdeveloper 10.1.3

    I have a number of programmatic bc view objects and entity objects which i have implemented through the time from different projects and now that i have collected them i want to add all of them in a reusable application module. However i don't need a connection to the database for this application module. Is it possible to enforce the application module to circumvent the db connection?

    Hi user,
    Just out of curiosity, why would you use ADF BC for that - if I had a bunch of non-db data sources, I'd probably use POJOs and create POJO data controls.
    I didn't look in 10g, but in 11g, the ApplicationModule has a method called getDBConnectionRequired() that you could override to see if that solves your issue.
    John

  • "Application module  is not a root app module but has no parent"

    This is to follow up on my answered question on rootAN substitution
    Re: "login session has expired" after am substitution
    I am working on an OAF extension.
    I have a new LOV region. I extended (to be substituted) the seeded VO, call it xxVO. And I have three custom methods using this xxVO that are called from processFormRequest of my controller which extends the seeded controller.
    So putting these methods in rootAM and AM substitution didn't work as some folks pointed out.
    So I created xxAM (extends root AM), put xxVO in xxAM’s data model and put my methods in xxAM, set this xxAM as AMDefinition for my custom LOV region.
    In my controller I do
    OAApplicationModule xxAM = new xxprg.oracle.apps.icx.por.req.server.xxprgRequisitionAMImpl();
    But I am getting
    => oracle.apps.fnd.framework.OAException: oracle.jbo.InvalidOwnerException: JBO-25301: Application module is not a root app module but has no parent
    at
    xxAM.invokeMethod("handleChangeRequester", parameters);
    I found a few posts on the same topic. One advise was to not instantiate ‘new’ AM but do something like this
    Xo2cAcctOviewExtAMImpl amExt = (Xo2cAcctOviewExtAMImpl )pageContext.getApplicationModule(webBean);
    In this example I am confused about the fact that ‘getApplicationModule(webBean);’ which is used in the signature of the processFormRequest will return a ‘rootAM’, is this correct?
    There was another workaround mentioned in other posts to not use xxAM at all but build a class to mimic an xxAM passing all needed values that custom methods require. In which case how(or better where) do I instantiate xxVO since now xxVO won’t be part of any AM data model?
    Can someone please clarify.
    Thank you
    Anatoliy

    Pratap,
    Thank you for the response.
    The reason I need to use new xxCO on the page is this.
    Seeded page CheckoutLinesPG.
    It has advanced table on it where every column has it's one external region.
    The new LOV region xxRN is put on a page also under this table new column.
    1. When a requester (seeded region on the seeded page) is changed then my xxLOV should reflect the change and be populated according to what is selected in the Requester LOV.
    2. When one-time address is added (another seeded region on the seeded page) my xxLOV should be disabled, when one time address taken out - enabled again.
    So xxCO should apply to the whole page.
    The VO behind advanced table PoRequisitionLinesVO is extended with 2 additional attributes and will substitute, the new xxVO is under xxAM data model.
    All works fine with my methods in the seeded RequisitionAM which I get a handle to in the xxCO. But I don;t know how to get the handle to the xxAM if I put my methods there.
    Thanks,
    Anatoliy
    P.S. just fyi - I know it is not the recommended approach but what I did for now I put all calls into the controller - in the controller I can get a handle to root AM, through that I am getting a handle to xxVO which (!) is substituted during runtime with my xxVO. But if you can figure out how to get a handle to xxAM in my case it will be great.
    Edited by: asmirnov on Mar 24, 2009 2:04 PM

  • Runtime error in production server

    Hi experts,
    I have designed one report.In that report 3 includes are there.
    I excuted this report in quality server it is working fine.
    When this report is executing in production server it is giving error
    "INCLUDE YP_AAAA NOT FOUND".
    Why it is coming like this ?please help me.
    regards
    kavi

    Hi kavi,
    May be the INCLUDE YP_AAAA is not available in production server, means the INCLUDE YP_AAAA was not included in the TR (transport request). so this object is not moved to the production server. Now you save this include in one TR and move the TR  to production server again.
    Regards
    DKS

  • JBO-25301: Application module ... is not a root app module but has no..

    Hello,
    Tools:_
    Jdeveloper 10.1.2
    JPDK 10.1.2
    ADF
    Portal version 10.1.2 (repository upgrade 10.1.4)
    Problem:_
    I have an application that calls other application module from it's own application module. Some times it gives error (not every time):
    •     JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.InvalidOwnerException, msg=JBO-25301: Application module FormHistoryServiceLocal is not a root app module but has no parent
    •        JBO-29000: Unexpected exception caught: oracle.jbo.InvalidOwnerException, msg=JBO-25301: Application module FormHistoryServiceLocal is not a root app module but has no parent
    •           JBO-25301: Application module FormHistoryServiceLocal is not a root app module but has no parent
    Code that application uses to call other application module:_
    public ApplicationHandler( ApplicationModule rootModule )
        try
          if(rootModule != null)
            formHistory = (FormHistoryService)rootModule.findApplicationModule(FORMHISTORYSERVICE_LOCAL);
            if(formHistory == null){
              formHistory = (FormHistoryService)rootModule.createApplicationModule( FORMHISTORYSERVICE_LOCAL, FORMHISTORYSERVICE_DEF );
            userInfoDAO.connect();
          }else System.out.println("Application Module was NULL");
        }catch(Exception e)
          e.printStackTrace();
    (calls: formHistory.addToHistory())
    The other application module:+
    public void addToHistory( Number formId, Number status, Number type, Number userId, String event )
        FormhistoryDefImpl defImpl = (FormhistoryDefImpl)EntityDefImpl.findDefObject("com.mysite.app.Formhistory");
        FormhistoryImpl fh = (FormhistoryImpl)defImpl.CreateFormhistory( this.getDBTransaction(), new NameValuePairs() ); //************ Exception is thrown from here! ************
        fh.setFormid(formId);
        fh.setStatus(status);
        fh.setType(type);
        fh.setUserid(userId);
        fh.setEvent(event);
        oracle.jbo.domain.Date eventTimestamp = new oracle.jbo.domain.Date((new java.sql.Timestamp(new java.util.Date().getTime())));
        fh.setEventtimestamp(eventTimestamp);
        this.getTransaction().commit();
    What's wrong here?
    JBO description:+
    JBO-25301: InvalidOwnerException
    Cause: While traversing the parenthood chain for application modules, a child application module was found with no container (parent) application module.
    Action: If this application has added custom business component classes, it may be that the application code is attempting to access a child application module before it is fully initialized. If this is not the case, this error probably represents some internal error in BC4J framework, in which case contact BC4J Technical Support.
    How can i ensure that child application module is already initialized?

    Anyone?

  • MDB application PasSerialsService_SerialsService is NOT connected to messag

    Hi Experts,
    After deployment of application *" PasSerialsService_SerialsService "*, I am getting state as Active but health as *"warning"*. when I cheked the health in monitoring tab. i found following error.
    *"MDB application PasSerialsService_SerialsService is NOT connected to messaging system."*
    I have restarted managed servers and admin server and later I trued to update the deployment application from deployment navigator still it is showing health as *"warning"*
    Can any one help me out to resolve this issue
    Thanks in Advance.
    Than & Regards,
    Phani

    Hi
    Following content from log file
    Log File Content:
    ####<May 16, 2011 12:48:09 PM IST> <Warning> <EJB> <HSCHARTOMR0112> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <OracleSystemUser> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b1d> <1305530289425> <BEA-010061> <The Message-Driven EJB: LotsServiceAMService_AsyncRequestProcessorMDB is unable to connect to the JMS destination: oracle.j2ee.ws.server.async.DefaultRequestQueue. The Error was:
    The destination for the MDB LotsServiceAMService_AsyncRequestProcessorMDB(Application: PasSerialsService_SerialsService#V1.1, EJBComponent: SerialsServices_MiddleTier_AsyncMdb.jar) could not be resolved at this time. Please ensure the destination is available at the JNDI name oracle.j2ee.ws.server.async.DefaultRequestQueue. The EJB container will periodically attempt to resolve this MDB destination and additional warnings may be issued.>
    ####<May 16, 2011 12:48:09 PM IST> <Warning> <EJB> <HSCHARTOMR0112> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <OracleSystemUser> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b1d> <1305530289429> <BEA-010061> <The Message-Driven EJB: TransactionsServiceAMService_AsyncResponseProcessorMDB is unable to connect to the JMS destination: oracle.j2ee.ws.server.async.DefaultResponseQueue. The Error was:
    The destination for the MDB TransactionsServiceAMService_AsyncResponseProcessorMDB(Application: PasTransactionsService_TransactionsService#V1.1, EJBComponent: TransactionsServices_MiddleTier_AsyncMdb.jar) could not be resolved at this time. Please ensure the destination is available at the JNDI name oracle.j2ee.ws.server.async.DefaultResponseQueue. The EJB container will periodically attempt to resolve this MDB destination and additional warnings may be issued.>
    ####<May 16, 2011 12:48:09 PM IST> <Warning> <EJB> <HSCHARTOMR0112> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <OracleSystemUser> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b1d> <1305530289430> <BEA-010061> <The Message-Driven EJB: PackagingServiceAMService_AsyncRequestProcessorMDB is unable to connect to the JMS destination: oracle.j2ee.ws.server.async.DefaultRequestQueue. The Error was:
    The destination for the MDB PackagingServiceAMService_AsyncRequestProcessorMDB(Application: PasSerialsService_SerialsService#V1.1, EJBComponent: SerialsServices_MiddleTier_AsyncMdb.jar) could not be resolved at this time. Please ensure the destination is available at the JNDI name oracle.j2ee.ws.server.async.DefaultRequestQueue. The EJB container will periodically attempt to resolve this MDB destination and additional warnings may be issued.>
    ####<May 16, 2011 12:48:09 PM IST> <Warning> <EJB> <HSCHARTOMR0112> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <OracleSystemUser> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b1d> <1305530289430> <BEA-010061> <The Message-Driven EJB: TransactionsServiceAMService_AsyncRequestProcessorMDB is unable to connect to the JMS destination: oracle.j2ee.ws.server.async.DefaultRequestQueue. The Error was:
    The destination for the MDB TransactionsServiceAMService_AsyncRequestProcessorMDB(Application: PasTransactionsService_TransactionsService#V1.1, EJBComponent: TransactionsServices_MiddleTier_AsyncMdb.jar) could not be resolved at this time. Please ensure the destination is available at the JNDI name oracle.j2ee.ws.server.async.DefaultRequestQueue. The EJB container will periodically attempt to resolve this MDB destination and additional warnings may be issued.>
    ####<May 16, 2011 12:48:09 PM IST> <Warning> <EJB> <HSCHARTOMR0112> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <OracleSystemUser> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b1d> <1305530289431> <BEA-010061> <The Message-Driven EJB: TransactionsProcessingServiceAMService_AsyncResponseProcessorMDB is unable to connect to the JMS destination: oracle.j2ee.ws.server.async.DefaultResponseQueue. The Error was:
    The destination for the MDB TransactionsProcessingServiceAMService_AsyncResponseProcessorMDB(Application: PasTransactionsService_TransactionsService#V1.1, EJBComponent: TransactionsServices_MiddleTier_AsyncMdb.jar) could not be resolved at this time. Please ensure the destination is available at the JNDI name oracle.j2ee.ws.server.async.DefaultResponseQueue. The EJB container will periodically attempt to resolve this MDB destination and additional warnings may be issued.>
    ####<May 16, 2011 12:48:09 PM IST> <Warning> <EJB> <HSCHARTOMR0112> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <OracleSystemUser> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b1d> <1305530289432> <BEA-010061> <The Message-Driven EJB: SerialGenRequestServiceAMService_AsyncResponseProcessorMDB is unable to connect to the JMS destination: oracle.j2ee.ws.server.async.DefaultResponseQueue. The Error was:
    The destination for the MDB SerialGenRequestServiceAMService_AsyncResponseProcessorMDB(Application: PasTransactionsService_TransactionsService#V1.1, EJBComponent: TransactionsServices_MiddleTier_AsyncMdb.jar) could not be resolved at this time. Please ensure the destination is available at the JNDI name oracle.j2ee.ws.server.async.DefaultResponseQueue. The EJB container will periodically attempt to resolve this MDB destination and additional warnings may be issued.>
    ####<May 16, 2011 12:48:09 PM IST> <Warning> <EJB> <HSCHARTOMR0112> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <OracleSystemUser> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b1d> <1305530289433> <BEA-010061> <The Message-Driven EJB: JobInstanceServiceAMService_AsyncRequestProcessorMDB is unable to connect to the JMS destination: oracle.j2ee.ws.server.async.DefaultRequestQueue. The Error was:
    The destination for the MDB JobInstanceServiceAMService_AsyncRequestProcessorMDB(Application: PasTransactionsService_TransactionsService#V1.1, EJBComponent: TransactionsServices_MiddleTier_AsyncMdb.jar) could not be resolved at this time. Please ensure the destination is available at the JNDI name oracle.j2ee.ws.server.async.DefaultRequestQueue. The EJB container will periodically attempt to resolve this MDB destination and additional warnings may be issued.>
    ####<May 16, 2011 12:48:09 PM IST> <Warning> <EJB> <HSCHARTOMR0112> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <OracleSystemUser> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b1d> <1305530289433> <BEA-010061> <The Message-Driven EJB: SerialGenerationRequestProcessServiceAMService_AsyncResponseProcessorMDB is unable to connect to the JMS destination: oracle.j2ee.ws.server.async.DefaultResponseQueue. The Error was:
    The destination for the MDB SerialGenerationRequestProcessServiceAMService_AsyncResponseProcessorMDB(Application: PasTransactionsService_TransactionsService#V1.1, EJBComponent: TransactionsServices_MiddleTier_AsyncMdb.jar) could not be resolved at this time. Please ensure the destination is available at the JNDI name oracle.j2ee.ws.server.async.DefaultResponseQueue. The EJB container will periodically attempt to resolve this MDB destination and additional warnings may be issued.>
    ####<May 16, 2011 12:48:09 PM IST> <Warning> <EJB> <HSCHARTOMR0112> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <OracleSystemUser> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b1d> <1305530289439> <BEA-010061> <The Message-Driven EJB: SerialGenRequestServiceAMService_AsyncRequestProcessorMDB is unable to connect to the JMS destination: oracle.j2ee.ws.server.async.DefaultRequestQueue. The Error was:
    The destination for the MDB SerialGenRequestServiceAMService_AsyncRequestProcessorMDB(Application: PasTransactionsService_TransactionsService#V1.1, EJBComponent: TransactionsServices_MiddleTier_AsyncMdb.jar) could not be resolved at this time. Please ensure the destination is available at the JNDI name oracle.j2ee.ws.server.async.DefaultRequestQueue. The EJB container will periodically attempt to resolve this MDB destination and additional warnings may be issued.>
    ####<May 16, 2011 12:48:09 PM IST> <Warning> <EJB> <HSCHARTOMR0112> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <OracleSystemUser> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b1d> <1305530289439> <BEA-010061> <The Message-Driven EJB: LotsServiceAMService_AsyncResponseProcessorMDB is unable to connect to the JMS destination: oracle.j2ee.ws.server.async.DefaultResponseQueue. The Error was:
    The destination for the MDB LotsServiceAMService_AsyncResponseProcessorMDB(Application: PasSerialsService_SerialsService#V1.1, EJBComponent: SerialsServices_MiddleTier_AsyncMdb.jar) could not be resolved at this time. Please ensure the destination is available at the JNDI name oracle.j2ee.ws.server.async.DefaultResponseQueue. The EJB container will periodically attempt to resolve this MDB destination and additional warnings may be issued.>
    ####<May 16, 2011 12:48:09 PM IST> <Warning> <EJB> <HSCHARTOMR0112> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <OracleSystemUser> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b1d> <1305530289440> <BEA-010061> <The Message-Driven EJB: PackagingServiceAMService_AsyncResponseProcessorMDB is unable to connect to the JMS destination: oracle.j2ee.ws.server.async.DefaultResponseQueue. The Error was:
    The destination for the MDB PackagingServiceAMService_AsyncResponseProcessorMDB(Application: PasSerialsService_SerialsService#V1.1, EJBComponent: SerialsServices_MiddleTier_AsyncMdb.jar) could not be resolved at this time. Please ensure the destination is available at the JNDI name oracle.j2ee.ws.server.async.DefaultResponseQueue. The EJB container will periodically attempt to resolve this MDB destination and additional warnings may be issued.>
    ####<May 16, 2011 12:48:09 PM IST> <Warning> <EJB> <HSCHARTOMR0112> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <OracleSystemUser> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b1d> <1305530289443> <BEA-010061> <The Message-Driven EJB: SerialGenerationRequestProcessServiceAMService_AsyncRequestProcessorMDB is unable to connect to the JMS destination: oracle.j2ee.ws.server.async.DefaultRequestQueue. The Error was:
    The destination for the MDB SerialGenerationRequestProcessServiceAMService_AsyncRequestProcessorMDB(Application: PasTransactionsService_TransactionsService#V1.1, EJBComponent: TransactionsServices_MiddleTier_AsyncMdb.jar) could not be resolved at this time. Please ensure the destination is available at the JNDI name oracle.j2ee.ws.server.async.DefaultRequestQueue. The EJB container will periodically attempt to resolve this MDB destination and additional warnings may be issued.>
    ####<May 16, 2011 12:48:09 PM IST> <Warning> <EJB> <HSCHARTOMR0112> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <OracleSystemUser> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b1d> <1305530289448> <BEA-010061> <The Message-Driven EJB: TransactionsProcessingServiceAMService_AsyncRequestProcessorMDB is unable to connect to the JMS destination: oracle.j2ee.ws.server.async.DefaultRequestQueue. The Error was:
    The destination for the MDB TransactionsProcessingServiceAMService_AsyncRequestProcessorMDB(Application: PasTransactionsService_TransactionsService#V1.1, EJBComponent: TransactionsServices_MiddleTier_AsyncMdb.jar) could not be resolved at this time. Please ensure the destination is available at the JNDI name oracle.j2ee.ws.server.async.DefaultRequestQueue. The EJB container will periodically attempt to resolve this MDB destination and additional warnings may be issued.>
    ####<May 16, 2011 12:48:09 PM IST> <Warning> <EJB> <HSCHARTOMR0112> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <OracleSystemUser> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b1d> <1305530289449> <BEA-010061> <The Message-Driven EJB: JobInstanceServiceAMService_AsyncResponseProcessorMDB is unable to connect to the JMS destination: oracle.j2ee.ws.server.async.DefaultResponseQueue. The Error was:
    The destination for the MDB JobInstanceServiceAMService_AsyncResponseProcessorMDB(Application: PasTransactionsService_TransactionsService#V1.1, EJBComponent: TransactionsServices_MiddleTier_AsyncMdb.jar) could not be resolved at this time. Please ensure the destination is available at the JNDI name oracle.j2ee.ws.server.async.DefaultResponseQueue. The EJB container will periodically attempt to resolve this MDB destination and additional warnings may be issued.>
    ####<May 16, 2011 12:48:09 PM IST> <Warning> <EJB> <HSCHARTOMR0112> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <OracleSystemUser> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b1d> <1305530289450> <BEA-010061> <The Message-Driven EJB: SerialsServiceAMService_AsyncResponseProcessorMDB is unable to connect to the JMS destination: oracle.j2ee.ws.server.async.DefaultResponseQueue. The Error was:
    The destination for the MDB SerialsServiceAMService_AsyncResponseProcessorMDB(Application: PasSerialsService_SerialsService#V1.1, EJBComponent: SerialsServices_MiddleTier_AsyncMdb.jar) could not be resolved at this time. Please ensure the destination is available at the JNDI name oracle.j2ee.ws.server.async.DefaultResponseQueue. The EJB container will periodically attempt to resolve this MDB destination and additional warnings may be issued.>
    ####<May 16, 2011 12:48:09 PM IST> <Warning> <EJB> <HSCHARTOMR0112> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <OracleSystemUser> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b1d> <1305530289450> <BEA-010061> <The Message-Driven EJB: SerialsServiceAMService_AsyncRequestProcessorMDB is unable to connect to the JMS destination: oracle.j2ee.ws.server.async.DefaultRequestQueue. The Error was:
    The destination for the MDB SerialsServiceAMService_AsyncRequestProcessorMDB(Application: PasSerialsService_SerialsService#V1.1, EJBComponent: SerialsServices_MiddleTier_AsyncMdb.jar) could not be resolved at this time. Please ensure the destination is available at the JNDI name oracle.j2ee.ws.server.async.DefaultRequestQueue. The EJB container will periodically attempt to resolve this MDB destination and additional warnings may be issued.>
    ####<May 16, 2011 12:48:09 PM IST> <Info> <EJB> <HSCHARTOMR0112> <soa_server1> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b1e> <1305530289589> <BEA-010060> <The Message-Driven EJB: PeopleQueryMDB has connected/reconnected to the JMS destination: jms/bpm/PeopleQueryTopic.>
    ####<May 16, 2011 12:48:09 PM IST> <Info> <EJB> <HSCHARTOMR0112> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <OracleSystemUser> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b1f> <1305530289602> <BEA-010060> <The Message-Driven EJB: MessageForwarderBean has connected/reconnected to the JMS destination: OraSDPM/Queues/OraSDPMEngineSndQ1.>
    ####<May 16, 2011 12:48:09 PM IST> <Info> <EJB> <HSCHARTOMR0112> <soa_server1> <[STANDBY] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <OracleSystemUser> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b20> <1305530289639> <BEA-010060> <The Message-Driven EJB: DriverDispatcherBean has connected/reconnected to the JMS destination: OraSDPM/Queues/OraSDPMDriverDefSndQ1.>
    ####<May 16, 2011 12:48:09 PM IST> <Info> <EJB> <HSCHARTOMR0112> <soa_server1> <[STANDBY] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b21> <1305530289651> <BEA-010060> <The Message-Driven EJB: BAMActionMDB has connected/reconnected to the JMS destination: jms/bpm/MeasurementTopic.>
    ####<May 16, 2011 12:48:09 PM IST> <Info> <EJB> <HSCHARTOMR0112> <soa_server1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b22> <1305530289653> <BEA-010060> <The Message-Driven EJB: NotificationSender has connected/reconnected to the JMS destination: jms/Queue/NotificationSenderQueue.>
    ####<May 16, 2011 12:48:09 PM IST> <Info> <EJB> <HSCHARTOMR0112> <soa_server1> <[STANDBY] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)'> <OracleSystemUser> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b23> <1305530289654> <BEA-010060> <The Message-Driven EJB: MessageDispatcherBean has connected/reconnected to the JMS destination: OraSDPM/Queues/OraSDPMWSRcvQ1.>
    ####<May 16, 2011 12:48:09 PM IST> <Info> <EJB> <HSCHARTOMR0112> <soa_server1> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b24> <1305530289710> <BEA-010060> <The Message-Driven EJB: TestFwkEmulatorBean has connected/reconnected to the JMS destination: jms/testfwk/TestFwkQueue.>
    ####<May 16, 2011 12:48:09 PM IST> <Info> <EJB> <HSCHARTOMR0112> <soa_server1> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <OracleSystemUser> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b25> <1305530289719> <BEA-010060> <The Message-Driven EJB: MessageReceiverBean has connected/reconnected to the JMS destination: OraSDPM/Queues/OraSDPMEngineRcvQ1.>
    ####<May 16, 2011 12:48:09 PM IST> <Info> <EJB> <HSCHARTOMR0112> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b26> <1305530289732> <BEA-010060> <The Message-Driven EJB: TaskNotificationSender has connected/reconnected to the JMS destination: jms/Queue/NotificationSenderQueue.>
    ####<May 16, 2011 12:48:09 PM IST> <Info> <EJB> <HSCHARTOMR0112> <soa_server1> <[STANDBY] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b27> <1305530289741> <BEA-010060> <The Message-Driven EJB: CubeActionMDB has connected/reconnected to the JMS destination: jms/bpm/MeasurementTopic.>
    ####<May 16, 2011 12:48:12 PM IST> <Info> <Common> <HSCHARTOMR0112> <soa_server1> <[STANDBY] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b2a> <1305530292504> <BEA-000628> <Created "1" resources for pool "eis/wlsjms/OPSMQueue", out of which "1" are available and "0" are unavailable.>
    ####<May 16, 2011 12:48:12 PM IST> <Info> <Common> <HSCHARTOMR0112> <soa_server1> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001b28> <1305530292504> <BEA-000628> <Created "1" resources for pool "eis/wlsjms/OPSMQueue", out of which "1" are available and "0" are unavailable.>
    ####<May 16, 2011 12:48:12 PM IST> <Info> <Common> <HSCHARTOMR0112> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@1469cd3d> <<anonymous>> <> <0000IzreP^t1Jfc5ljH7iZ1DoCx1000000> <1305530292940> <BEA-000628> <Created "1" resources for pool "EDNLocalTxDataSource", out of which "1" are available and "0" are unavailable.>
    ####<May 16, 2011 12:48:14 PM IST> <Info> <Common> <HSCHARTOMR0112> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@14aaf136> <<anonymous>> <BEA1-00E7DAA94BC3> <0000IzreP^t1Jfc5ljH7iZ1DoCx1000000> <1305530294596> <BEA-000628> <Created "1" resources for pool "SOADataSource", out of which "1" are available and "0" are unavailable.>
    ####<May 16, 2011 12:49:14 PM IST> <Info> <Common> <HSCHARTOMR0112> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <3007adcbf067bb09:-4f5bbf1d:12ff7a97690:-8000-0000000000001baf> <1305530354269> <BEA-000628> <Created "1" resources for pool "EDNDataSource", out of which "1" are available and "0" are unavailable.>
    Thanks,
    Phani

  • (IMP)application module and DB connection issue

    Hi,
    In my BC4J application, Application module is not releasing DB connection after the execution of the JSP page. It usually takes approx 3500-4000sec. to release it. On what parameters this time is dependent??
    I am using data-source to connect to DB. Application Module configurations parameters are set with default values.
    If i select "Disconnect Application Module Upon Release" from the configuration of Application module, it releases DBconnection at the end of http Request. Is it a proper solution to the issue ? any performance related issues with it?
    My JSP code's basic structure is
    try
    <jbo:ApplicationModule id="<AM ID>" definition="<Fully qualified AM classname>" releasemode="Stateless/stateFul" />
    // application code
    catch(Exception e)
    // Code to take necessary action if exception occurs
    finally
    <jbo:ReleasePageResources appid="<AM ID>" releasemode="Stateless/StateFul"/>
    Please guide me on this.
    Thanks in advance,
    Devang

    Hi john,
    Thanks for your reply... in other way can i restrict the number of connections created for the application module By selecting the Disconnect Application Module Upon Release in application module configuration.
    If i select that check box in Appmodule-->configurations->Edit->Pooling and Scalability means, while loading my screen number of connections are increased after completion of loading a screen immediatly connections also got reduced. if i select this check box whether it will give any other problems.
    Here am using the uishell dynamic tab after opening more number of tabs am getting connection pool error.not allways.. thats why am trying to restrict the no.of connections opening.
    please can you provide some info regarding this
    Reg,
    Brahma B

  • Adobe cloud application manager - can not connect to internet

    To ADOBE - The Adode cloud Order no is DSSY006786009DT and is current
    The Adobe cloud application manager - can not connect to internet even though there is internet connection and says it might be time zone error but that is correct  - Sydney Australia
    Question:
         1. Is anybody else having this problem
         2. How do we fix
    I already changed the time zone east coast US - did not change anything
    Could it be a corrupt program - thus requiring to reinstall program Application manager
    I am using Windows 7.
    It has been like it for ten days - It asks to log in everytime I turn computer on
    All programs in Creative Cloud work
    Any suggestions and solution
    Online help and phone help had no solutions other than what I suggested - that is reload application manager
    Thanks for help
    Ian Cleland

    The Creative Cloud File Synching was just offline, should be online now again.
    See top off: http://forums.adobe.com/community/creative_cloud/creative_cloud_connection
    Maybe that was your problem.

  • Error Could not connect to the database - ora-12545: tns:name lookup failure

    Hi,
    I am a tech at a failing company. Unfortuneatly some users still need ADI installed and working with very limited resources to troubleshoot oracle. I am getting the error - ( Could not connect to the database - ora-12545: tns:name lookup failure )when the user tries to log on to ADI. Any suggestions? I would really appreciate it. We are on Windows NT on an NT network. Oracle 8.05 client installed and ADI 6.0.
    Thanks, Mary

    Copy the tnsname.ora file from Oracle Database serve onto the client PC.
    Path: %Oracle_home%\net80\admin\
    Send me a mail if there is any other issues
    Regards
    Oluseyi Funmi Oduberu
    Oracle Consultant
    Email:[email protected]
    Hi,
    I am a tech at a failing company. Unfortuneatly some users still need ADI installed and working with very limited resources to troubleshoot oracle. I am getting the error - ( Could not connect to the database - ora-12545: tns:name lookup failure )when the user tries to log on to ADI. Any suggestions? I would really appreciate it. We are on Windows NT on an NT network. Oracle 8.05 client installed and ADI 6.0.
    Thanks, Mary

  • View Objects in the shared application module is not refreshing

    Hi ,
    I have view objects defined shared apps module. This view objects are used for creating lovs which won't change very frequently. I have set the AutoRefresh=true for this view objects. I do have a UI to update the underline table for these lovs. The view objects defined in the shared application module is not getting reflected even I add a new value in the database. Is there any way to refresh these lovs as soon as its added to db?
    Thanks
    Suneesh

    I will explain my scenario ;
    I have a view object(ViewA) where I have defined many LOVs for different attributes. Thes LOVs are using the shared application module's view object (shared_view1,shared_view2...etc) as List DataSource. Where exactly I need to set the auto refresh property=true. Currently I have set all of my shared apps view objects's(shared_view1,shared_view2...etc) autorefresh property=true.Do I need to use the autorefresh =true in the ViewA ?
    What is the concept of autorefresh=true ? Wiill it refresh automatically the view object nexttime i am accessing the page after the db inserts ? Is there any time delay there ? if there is it something configurable ?
    Thanks
    Suneesh

  • Nested application module use own connection

    Hi everyone,
    I'm trying to figure out how to let a nested application module use it's own connection instead of it's parent.
    Any suggestions?
    We're using Jdeveloper 10.1.3.3.0.
    Regards

    Hi,
    The issue is not about the data, but about the database connection. The idea is to have a general BC library (with iits Application Modules and View Objects), using its own database schema, and have that one imported in other applications, with other database schemas.
    We have to use these imported BC's in the application AM, because that's the way JHeadstart works. This will result in a table not found exception, because the imported VO's are in another schema.
    We were hoping that we could nest an imported Application Module and that it uses its own connection to its own database schema, but unfortuantely that does not seem possible since nested application modules inherit the connection of the parent (root) application module.
    Or is there perhaps a way to achieve this; i.e. have a nested application module using its own database connection and not inherit this from its parent?
    Ciao
    Aino

  • I am using Ipad 2, Wi-Fi is connected but cant open any web-site " error : Safari cannot open the page because it is not connected to the internet "

    I am using ipad 2, Wi-Fi is connected but cant open any web-site " error : safari cannot open the page becasue it is not connected to the internet "
    need support please

    You haven't provided much information, such as what type of router you have?  If you entered the encryption key as the password as opposed to the router name you have selected?  If you have WEP or WPA?  What you've tried that didn't work, other than saying it doesn't work?  So, below is a link to some assistance.  Follow this and see if it helps you.........
    http://www.apple.com/support/ipad/assistant/wifi/

Maybe you are looking for