Exception in thread "main" oracle.apps.fnd.cache.CacheException

Dear Experts,
I am getting the below error.
$AFJVAPRG -classpath $AF_CLASSPATH -Dprotocol=imap \
-Ddbcfile=$FND_SECURE/TEST.dbc \
-Dport=993 -Dssl=Y \
-Dtruststore=/home/applprod/.keystore \
-Dserver=xxxxxxxxxxxxx \
[email protected] -Dpassword=pass@word01\
-Dconnect_timeout=120 -Ddebug=Y \
-DdebugMailSession=Y oracle.apps.fnd.wf.mailer.MailerException in thread "main" oracle.apps.fnd.cache.CacheException
at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:228)
at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1485)
at oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:354)
at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:211)
at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:171)
at oracle.apps.fnd.profiles.ExtendedProfileStore.getProfile(ExtendedProfileStore.java:148)
at oracle.apps.fnd.common.logging.DebugEventManager.configureUsingDatabaseValues(DebugEventManager.java:1259)
at oracle.apps.fnd.common.logging.DebugEventManager.configureLogging(DebugEventManager.java:1114)
at oracle.apps.fnd.common.logging.DebugEventManager.internalReinit(DebugEventManager.java:1083)
at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:1050)
at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:1037)
at oracle.apps.fnd.common.AppsLog.reInitialize(AppsLog.java:595)
at oracle.apps.fnd.common.AppsContext.initLog(AppsContext.java:941)
at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:926)
at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:891)
at oracle.apps.fnd.common.AppsContext.<init>(AppsContext.java:751)
at oracle.apps.fnd.wf.apps.WorkflowContext.<init>(WorkflowContext.java:31)
at oracle.apps.fnd.wf.apps.ContextFactory.makeContext(ContextFactory.java:54)
at oracle.apps.fnd.wf.common.WorkflowContext.<init>(WorkflowContext.java:82)
at oracle.apps.fnd.wf.mailer.Mailer.main(Mailer.java:4653)
Caused by: oracle.apps.jtf.base.resources.FrameworkException: Error in IAS Cache: java.lang.NullPointerException: null Connection
at oracle.apps.jtf.cache.IASCacheProvider.get(IASCacheProvider.java:712)
at oracle.apps.jtf.cache.CacheManager.getInternal(CacheManager.java:4802)
at oracle.apps.jtf.cache.CacheManager.get(CacheManager.java:4624)
at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:216)
... 19 more
Caused by: oracle.apps.jtf.base.resources.FrameworkException:
An exception occurred in the method CacheAccess.get
null
The base exception is:
null Connection
at oracle.apps.jtf.base.resources.FrameworkException.convertException(FrameworkException.java:607)
at oracle.apps.jtf.base.resources.FrameworkException.addException(FrameworkException.java:585)
at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:66)
at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:88)
at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:202)
at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:218)
at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:249)
... 23 more
Please advise.
Mohammed. Abdul Muqeet
Edited by: Mohammed Abdul Muqeet on Jan 21, 2013 7:20 PM
Edited by: Mohammed Abdul Muqeet on Jan 21, 2013 7:21 PM

Please post the details of the application release, database version and OS.
I am getting the below error.
$AFJVAPRG -classpath $AF_CLASSPATH -Dprotocol=imap \
-Ddbcfile=$FND_SECURE/TEST.dbc \
-Dport=993 -Dssl=Y \
-Dtruststore=/home/applprod/.keystore \
-Dserver=xxxxxxxxxxxxx \
[email protected] -Dpassword=pass@word01\
-Dconnect_timeout=120 -Ddebug=Y \
-DdebugMailSession=Y oracle.apps.fnd.wf.mailer.Mailer
Please see (oracle.apps.fnd.cache.CacheException - null connection - on AppsLocalLogin.jsp [ID 414170.1]).
Thanks,
Hussein

Similar Messages

  • Oracle.apps.fnd.cache.CacheException in login page

    Hi,
    i wrote one method in am and return that values to co and the following is the code in AM
    public String Status(String reqid){
        String Status2=null;
    String Status;
        while(Staus.equals("I")||Staus.equals("R")||Staus.equals("P"))
          try{
            try
               Thread.sleep(1000);
             } catch (InterruptedException e)
                System.out.println("eroor in am thread block");
            String Query ="select phase_code,status_code from fnd_concurrent_requests where request_id=?";
            PreparedStatement stmt = getOADBTransaction().createPreparedStatement(Query,1);
            stmt.setString(1,requestid);
            ResultSet resultset= stmt.executeQuery();
            if (resultset != null)
              while (resultset.next())
              if (resultset.getString(1) != null)
               Staus = resultset.getString(1); // here to fetch the column from the query
                Status2=resultset.getString(2);
          catch(SQLException exception)
          //Incase of any error while running the query throw an exception.
          throw new OAException("Error in  Query"+ exception, OAException.ERROR);
    return Status2;
    here iam checking phase code of the programe ,f it is C iam returning the status to variable in CO.it is taking one hour time to complete to get the status code :C
    in the application,program  is   runnig but after getting "C" also the progres is still running. i closed the session and opened again and it is giving following error:
    oracle.apps.fnd.cache.CacheException
    Please help me to solve this , i got the request id but while getting status only iam facing issue..

    Hi,
    1. Are you submitting this concurrent program from your code, if yes then you should issue commit immediately after submitting the request.
    OR
    2. Try using below PL/SQL block code in your AM (please convert to java call ).
    DECLARE
    l_request_id                               NUMBER;
    o_call_status                             BOOLEAN;
    o_request_phase                              VARCHAR2(200);
    o_request_status                             VARCHAR2(200);
    o_dev_request_phase                          VARCHAR2(200);
    o_dev_request_status                         VARCHAR2(200);
    o_request_status_mesg                        VARCHAR2(2000);
    BEGIN
               o_call_status := fnd_concurrent.wait_for_request(l_request_id,
                                                                 20,
                                                                 0,
                                                                 o_request_phase,
                                                                 o_request_status,
                                                                 o_dev_request_phase,
                                                                 o_dev_request_status,
                                                                 o_request_status_mesg);
    END;
    Regards,
    Sandeep M.

  • 500 Internal Server Error oracle.apps.fnd.cache.CacheException

    I have been trying to access a new instance using JDEV, but i have been getting this error:
    Can anyone help me ?
    500 Internal Server Error
    oracle.apps.fnd.cache.CacheException at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:228) at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1485) at oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:354) at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:211) at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:171) at oracle.apps.fnd.profiles.ExtendedProfileStore.getProfile(ExtendedProfileStore.java:148) at oracle.apps.fnd.common.logging.DebugEventManager.configureUsingDatabaseValues(DebugEventManager.java:1259) at oracle.apps.fnd.common.logging.DebugEventManager.configureLogging(DebugEventManager.java:1114) at oracle.apps.fnd.common.logging.DebugEventManager.internalReinit(DebugEventManager.java:1083) at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:1050) at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:1037) at oracle.apps.fnd.common.AppsLog.reInitialize(AppsLog.java:595) at oracle.apps.fnd.common.AppsContext.initLog(AppsContext.java:941) at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:926) at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:891) at oracle.apps.fnd.common.WebAppsContext.&lt;init&gt;(WebAppsContext.java:1027) at oracle.apps.fnd.common.WebRequestUtil.validateContext(WebRequestUtil.java:223) at OAErrorPage.jspService(_OAErrorPage.java:62) [OAErrorPage.jsp] at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.3.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59) at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462) at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594) at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193) at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindPageContext.handlePageThrowable(EvermindPageContext.java:847) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindPageContext.handlePageException(EvermindPageContext.java:813) at runregion.jspService(_runregion.java:193) [runregion.jsp] at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.3.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59) at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462) at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594) at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:122) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:111) at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260) at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239) at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34) at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298) at java.lang.Thread.run(Thread.java:595)Caused by: oracle.apps.jtf.base.resources.FrameworkException: Error in IAS Cache: java.lang.NullPointerException: null Connection at oracle.apps.jtf.cache.IASCacheProvider.get(IASCacheProvider.java:712) at oracle.apps.jtf.cache.CacheManager.getInternal(CacheManager.java:4802) at oracle.apps.jtf.cache.CacheManager.get(CacheManager.java:4624) at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:216) ... 50 moreCaused by: oracle.apps.jtf.base.resources.FrameworkException: An exception occurred in the method CacheAccess.getnullThe base exception is:null Connection at oracle.apps.jtf.base.resources.FrameworkException.convertException(FrameworkException.java:607) at oracle.apps.jtf.base.resources.FrameworkException.addException(FrameworkException.java:585) at oracle.apps.jtf.base.resources.FrameworkException.&lt;init&gt;(FrameworkException.java:66) at oracle.apps.jtf.base.resources.FrameworkException.&lt;init&gt;(FrameworkException.java:88) at oracle.apps.jtf.base.resources.FrameworkException.&lt;init&gt;(FrameworkException.java:202) at oracle.apps.jtf.base.resources.FrameworkException.&lt;init&gt;(FrameworkException.java:218) at oracle.apps.jtf.base.resources.FrameworkException.&lt;init&gt;(FrameworkException.java:249) ... 54 more

    Hi Pardeep,
    I was getting the same error. I have copied the JDK 1.5.0_16.zip from other user and unzip in the folder of mine like AB12020 where I have installed the Jdeveloper or might be your DBC file get corrupted.
    Check out..
    Thanks
    Anil Sharma
    PS-Pls marked ur questioned as answered and close the question.
    Edited by: OAFUser on Jan 15, 2009 9:43 PM

  • Oracle.apps.fnd.cache.CacheException

    Hi,
    I am getting following exception while I m running auto generated reports in server.
    But its working fine in local machine.
    oracle.apps.fnd.cache.CacheException
    at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:228)
    at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1485
    at oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:354)
    at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromD
    B(ExtendedProfileStore.java:210)
    at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(Exte
    ndedProfileStore.java:169)
    at oracle.apps.fnd.profiles.ExtendedProfileStore.getProfile(ExtendedProf
    ileStore.java:148)
    at oracle.apps.fnd.common.logging.DebugEventManager.configureUsingDataba
    seValues(DebugEventManager.java:1149)
    at oracle.apps.fnd.common.logging.DebugEventManager.configureLogging(Deb
    ugEventManager.java:1010)
    at oracle.apps.fnd.common.logging.DebugEventManager.internalReinit(Debug
    EventManager.java:979)
    at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEv
    entManager.java:946)
    at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEv
    entManager.java:933)
    at oracle.apps.fnd.common.AppsLog.reInitialize(AppsLog.java:570)
    at oracle.apps.fnd.common.AppsContext.initLog(AppsContext.java:932)
    at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java
    :917)
    at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java
    :882)
    at oracle.apps.fnd.common.AppsContext.<init>(AppsContext.java:742)
    at oracle.apps.fnd.common.WebAppsContext.<init>(WebAppsContext.java:933)
    at uttara.oracle.apps.uttaraimc.reports.jasper.DisabilitySummaryReportGe
    nerator.getServiceApplicationModule(DisabilitySummaryReportGenerator.java:132)
    at uttara.oracle.apps.uttaraimc.reports.jasper.DisabilitySummaryReportGe
    nerator.generateReport(DisabilitySummaryReportGenerator.java:35)
    at uttara.oracle.apps.uttaraimc.reports.jasper.WeeklyReportGenerator.gen
    erateWeeklyReports(WeeklyReportGenerator.java:90)
    at uttara.oracle.apps.uttaraimc.reports.jasper.WeeklyReportGenerator.mai
    n(WeeklyReportGenerator.java:27)
    Caused by: oracle.apps.jtf.base.resources.FrameworkException: Error in IAS Cache
    : java.lang.NullPointerException: null Connection
    at oracle.apps.jtf.cache.IASCacheProvider.get(IASCacheProvider.java:678)
    at oracle.apps.jtf.cache.CacheManager.getInternal(CacheManager.java:4684
    at oracle.apps.jtf.cache.CacheManager.get(CacheManager.java:4507)
    at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:216)
    ... 20 more
    Here is the code for generator class,
    public class EconomicSummaryReportGenerator implements AutoReportGenerator {
    public EconomicSummaryReportGenerator() {
    public boolean generateReport(String districtName, String townName,
    String wardName, String htmlPath,
    String areaCode) {
    System.out.println("Generating Economic Status Report for: " +
    areaCode);
    boolean stat = false;
    try {
    OAApplicationModuleImpl am = getServiceApplicationModule();
    Boolean executeQuery = BooleanUtils.getBoolean(false);
    if (wardName == null)
    wardName = "";
    if (townName == null)
    townName = "";
    Serializable[] parameters =
    { null, null, null, districtName, townName, wardName, "",
    executeQuery };
    Class[] paramTypes =
    { String.class, String.class, String.class, String.class,
    String.class, String.class, String.class, Boolean.class };
    am.invokeMethod("initEconomicSummaryDetails", parameters,
    paramTypes);
    if (wardName == "")
    wardName = null;
    if (townName == "")
    townName = null;
    OAViewObject districtTownWardVO = null;
    if (districtName != null && townName != null && wardName != null)
    districtTownWardVO =
    (OAViewObject)am.findViewObject("EconomicStatusSummaryDistTownWardVO1");
    else if (districtName != null && townName != null &&
    wardName == null)
    districtTownWardVO =
    (OAViewObject)am.findViewObject("EconomicStatusSummaryDistTownVO1");
    else if (districtName != null && townName == null &&
    wardName == null)
    districtTownWardVO =
    (OAViewObject)am.findViewObject("EconomicStatusSummaryDistrictVO1");
    EconomicStatusReportImpl repImpl = new EconomicStatusReportImpl();
    htmlPath =
    htmlPath + CDVReportConstants.economicSummaryReportName +
    areaCode;
    String status =
    repImpl.retrieveCDVRpt(districtTownWardVO, districtName,
    townName, wardName, htmlPath);
    if (am != null)
    am.remove();
    stat = (status == null) ? false : true;
    if (stat == false)
    System.out.println("Error: Report cannot be created at: " +
    htmlPath + " status: " + stat);
    else
    System.out.println("Report created at: " + htmlPath +
    " status: " + stat);
    } catch (Exception ex) {
    ex.printStackTrace();
    System.out.println("Error: Report cannot be created at: " +
    htmlPath + " status: " + stat);
    System.out.println("Error:" + ex);
    return stat;
    private static OAApplicationModuleImpl getServiceApplicationModule() {
    WebAppsContext ctx = new WebAppsContext(CDVReportConstants.dbcPath);
    // Process the error stack to make sure that the WebAppsContext object
    // was created correctly.
    OAException oaex =
    OAExceptionUtils.processAOLJErrorStack(ctx.getErrorStack());
    if (oaex != null) {
    throw oaex;
    ctx.getSessionManager().validateLogin(CDVReportConstants.userName,
    CDVReportConstants.passWord);
    ctx.getSessionManager().setResp(CDVReportConstants.applicationId,
    CDVReportConstants.responsibilityId);
    // Process the error stack again before creating the root application
    // module with the WebAppsContext instance.
    oaex = OAExceptionUtils.processAOLJErrorStack(ctx.getErrorStack());
    if (oaex != null) {
    throw oaex;
    return (OAApplicationModuleImpl)OAApplicationModuleFactory.createRootOAApplicationModule(ctx,
    "uttara.oracle.apps.uttaraimc.reports.server.EconomicStatusReportAM");
    What might be the reason for this exception?
    Please suggest.
    Thanks & Regards,
    Sagarika

    Hi,
    wrong forum. Please try the Apps forum on OTN
    Frank

  • Oracle.apps.fnd.cache.CacheException while generating Auto Reports

    Hi,
    Please help me in resolving out the ERROR occured while dealing with Automated Report Generation.
    Following is the Error Message:
    Weekly Report Generator starts running at:Tue Jun 24 14:41:47 IST 2008
    connection oracle.jdbc.driver.T4CConnection@789144
    Generating Health Summary Report for: _11_5_1.html
    oracle.apps.fnd.cache.CacheException
    at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:228)
    at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1485)
    at oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:354)
    at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:210)
    at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:169)
    at oracle.apps.fnd.profiles.ExtendedProfileStore.getProfile(ExtendedProfileStore.java:148)
    at oracle.apps.fnd.common.logging.DebugEventManager.configureUsingDataba
    seValues(DebugEventManager.java:1149)
    at oracle.apps.fnd.common.logging.DebugEventManager.configureLogging(Deb
    ugEventManager.java:1010)
    at oracle.apps.fnd.common.logging.DebugEventManager.internalReinit(Debug
    EventManager.java:979)
    at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEv
    entManager.java:946)
    at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEv
    entManager.java:933)
    at oracle.apps.fnd.common.AppsLog.reInitialize(AppsLog.java:570)
    at oracle.apps.fnd.common.AppsContext.initLog(AppsContext.java:932)
    at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java
    :917)
    at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java
    :882)
    at oracle.apps.fnd.common.AppsContext.<init>(AppsContext.java:742)
    at oracle.apps.fnd.common.WebAppsContext.<init>(WebAppsContext.java:933)
    at uttara.oracle.apps.uttaraimc.reports.jasper.HealthSummaryReportGenera
    tor.getServiceApplicationModule(HealthSummaryReportGenerator.java:110)
    at uttara.oracle.apps.uttaraimc.reports.jasper.HealthSummaryReportGenera
    tor.generateReport(HealthSummaryReportGenerator.java:40)
    at uttara.oracle.apps.uttaraimc.reports.jasper.WeeklyReportGenerator.gen
    erateWeeklyReports(WeeklyReportGenerator.java:75)
    at uttara.oracle.apps.uttaraimc.reports.jasper.WeeklyReportGenerator.mai
    n(WeeklyReportGenerator.java:27)
    Caused by: oracle.apps.jtf.base.resources.FrameworkException: Error in IAS Cache
    : java.lang.NullPointerException: null Connection
    at oracle.apps.jtf.cache.IASCacheProvider.get(IASCacheProvider.java:678)
    at oracle.apps.jtf.cache.CacheManager.getInternal(CacheManager.java:4684)
    at oracle.apps.jtf.cache.CacheManager.get(CacheManager.java:4507)
    at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:216)
    ... 20 more
    Error: Report cannot be created at: /oracle10/oracle/viscomn/java/oracle/apps/me
    dia/CDV/CDVReport/HTML/Auto/Weekly/24_06_2008/ status: false
    Error:oracle.apps.fnd.cache.CacheException
    No. of reports generated:0
    ************************************************************************

    It looks like the reports to be created is trying to use
    /oracle10/oracle/viscomn/java/oracle/apps/media/CDV/CDVReport/HTML/Auto/Weekly/24_06_2008/
    And it can not write in that location. Specify a different folder or check the permisisons/free space avaialable.
    Rajesh Alex

  • I face  "oracle.apps.fnd.cache.cacheexception" after login to apps

    hi, ihave
    RDBMS:9.2.0.3.0
    oracle APPs: 11.5.9
    i face oracle.apps.fnd.cache.cacheexception after i restore the database (coz of acrash) and note that the apps is not restored.
    so now ihave apps older than the DB by 2days.
    i checked the GUEST_USER_PWD=GUEST/ORACLE in the DBC file its correct .
    The GUEST_USER_PWD is GUEST/ORACLE and the login test result is Y
    and GUEST user account is not end dated..
    any help?

    i did that and here is the logs again
    error_log
    [Tue May 12 14:17:40 2009] [notice] FastCGI: process manager initialized (pid 680072)
    [Tue May 12 14:17:41 2009] [notice] Oracle HTTP Server Powered by Apache/1.3.19 configured -- resuming normal operations
    [Tue May 12 14:17:51 2009] [error] [client 10.22.8.62] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:17:51 2009] [error] [client 10.22.8.62] File does not exist: /home01/oraprod/prodcomn/java/oracle/ewt/alert/resource/AlertBundle_en_US.properties
    [Tue May 12 14:18:14 2009] [error] [client 10.22.8.64] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/jdbc
    [Tue May 12 14:18:16 2009] [error] [client 10.20.2.74] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:18:16 2009] [error] [client 10.20.2.74] File does not exist: /home01/oraprod/prodcomn/java/oracle/ewt/alert/resource/AlertBundle_en_US.properties
    [Tue May 12 14:18:18 2009] [error] [client 10.22.8.64] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:18:18 2009] [error] [client 10.22.8.64] File does not exist: /home01/oraprod/prodcomn/java/oracle/ewt/alert/resource/AlertBundle_en_US.properties
    [Tue May 12 14:18:37 2009] [error] [client 10.20.2.103] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:18:38 2009] [error] [client 10.20.2.103] File does not exist: /home01/oraprod/prodcomn/java/oracle/ewt/alert/resource/AlertBundle_en_US.properties
    [Tue May 12 14:19:17 2009] [error] [client 10.20.2.80] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:19:17 2009] [error] [client 10.20.2.80] File does not exist: /home01/oraprod/prodcomn/java/oracle/ewt/alert/resource/AlertBundle_en_US.properties
    [Tue May 12 14:19:41 2009] [error] [client 10.22.8.64] client denied by server configuration: /home01/oraprod/prodcomn/java/java
    [Tue May 12 14:19:41 2009] [error] [client 10.22.8.64] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/forms/engine
    [Tue May 12 14:19:41 2009] [error] [client 10.22.8.64] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:19:41 2009] [error] [client 10.22.8.64] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:19:41 2009] [error] [client 10.22.8.64] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:19:42 2009] [error] [client 10.22.8.64] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:19:42 2009] [error] [client 10.22.8.64] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:19:42 2009] [error] [client 10.22.8.64] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:19:42 2009] [error] [client 10.22.8.64] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:19:55 2009] [error] [client 192.168.202.35] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/forms/engine
    [Tue May 12 14:19:55 2009] [error] [client 192.168.202.35] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:19:55 2009] [error] [client 192.168.202.35] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:19:55 2009] [error] [client 192.168.202.35] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:19:55 2009] [error] [client 192.168.202.35] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:19:55 2009] [error] [client 192.168.202.35] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:19:55 2009] [error] [client 192.168.202.35] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:19:55 2009] [error] [client 192.168.202.35] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:21:52 2009] [error] [client 10.4.1.166] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/forms/engine
    [Tue May 12 14:21:52 2009] [error] [client 10.4.1.166] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:21:52 2009] [error] [client 10.4.1.166] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:21:52 2009] [error] [client 10.4.1.166] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:21:52 2009] [error] [client 10.4.1.166] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:21:52 2009] [error] [client 10.4.1.166] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:21:52 2009] [error] [client 10.4.1.166] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:21:52 2009] [error] [client 10.4.1.166] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:21:54 2009] [error] [client 10.22.8.74] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/jdbc
    [Tue May 12 14:21:55 2009] [error] [client 10.22.8.74] client denied by server configuration: /home01/oraprod/prodcomn/java/java
    [Tue May 12 14:22:08 2009] [error] [client 10.4.1.165] File does not exist: /home01/oraprod/prodcomn/java/oracle/apps/media/oracle/apps/media/splash.gif
    [Tue May 12 14:22:10 2009] [error] [client 10.4.1.166] File does not exist: /home01/oraprod/prodcomn/java/oracle/apps/media/oracle/apps/media/splash.gif
    [Tue May 12 14:22:25 2009] [error] [client 10.1.10.58] File does not exist: /home01/oraprod/prodcomn/portal/PROD_jtsrv18/favicon.ico
    [Tue May 12 14:22:54 2009] [error] [client 10.1.10.58] client denied by server configuration: /home01/oraprod/prodcomn/java/java
    [Tue May 12 14:22:54 2009] [error] [client 10.1.10.58] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/forms/engine
    [Tue May 12 14:22:54 2009] [error] [client 10.1.10.58] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:22:54 2009] [error] [client 10.1.10.58] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:22:54 2009] [error] [client 10.1.10.58] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:22:54 2009] [error] [client 10.1.10.58] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:22:54 2009] [error] [client 10.1.10.58] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:22:54 2009] [error] [client 10.1.10.58] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:22:54 2009] [error] [client 10.1.10.58] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:25:14 2009] [error] [client 10.1.13.45] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/jdbc
    [Tue May 12 14:25:15 2009] [error] [client 10.1.13.45] client denied by server configuration: /home01/oraprod/prodcomn/java/java
    [Tue May 12 14:25:23 2009] [error] [client 10.20.2.69] client denied by server configuration: /home01/oraprod/prodcomn/java/java
    [Tue May 12 14:25:23 2009] [error] [client 10.20.2.69] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/forms/engine
    [Tue May 12 14:25:23 2009] [error] [client 10.20.2.69] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:25:23 2009] [error] [client 10.20.2.69] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:25:23 2009] [error] [client 10.20.2.69] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:25:24 2009] [error] [client 10.20.2.69] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:25:24 2009] [error] [client 10.20.2.69] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:25:24 2009] [error] [client 10.20.2.69] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:25:24 2009] [error] [client 10.20.2.69] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:26:17 2009] [error] [client 10.4.1.166] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/jdbc
    [Tue May 12 14:26:35 2009] [error] [client 10.22.8.67] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/jdbc
    [Tue May 12 14:26:36 2009] [error] [client 10.22.8.67] client denied by server configuration: /home01/oraprod/prodcomn/java/java
    [Tue May 12 14:28:16 2009] [error] [client 10.22.8.72] File does not exist: /home01/oraprod/prodcomn/java/oracle/apps/media/oracle/apps/media/splash.gif
    [Tue May 12 14:29:21 2009] [error] [client 10.4.1.165] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/forms/engine
    [Tue May 12 14:29:21 2009] [error] [client 10.4.1.165] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:29:21 2009] [error] [client 10.4.1.165] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:29:21 2009] [error] [client 10.4.1.165] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:29:21 2009] [error] [client 10.4.1.165] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:29:21 2009] [error] [client 10.4.1.165] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:29:21 2009] [error] [client 10.4.1.165] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:29:21 2009] [error] [client 10.4.1.165] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:30:25 2009] [error] [client 10.20.2.95] client denied by server configuration: /home01/oraprod/prodcomn/java/java
    [Tue May 12 14:30:25 2009] [error] [client 10.20.2.95] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/forms/engine
    [Tue May 12 14:30:25 2009] [error] [client 10.20.2.95] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:30:25 2009] [error] [client 10.20.2.95] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:30:25 2009] [error] [client 10.20.2.95] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:30:25 2009] [error] [client 10.20.2.95] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:30:25 2009] [error] [client 10.20.2.95] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:30:26 2009] [error] [client 10.20.2.95] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:30:27 2009] [error] [client 10.20.2.95] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:30:43 2009] [error] [client 10.4.1.164] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/forms/engine
    [Tue May 12 14:30:43 2009] [error] [client 10.4.1.164] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:30:43 2009] [error] [client 10.4.1.164] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:30:43 2009] [error] [client 10.4.1.164] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:30:43 2009] [error] [client 10.4.1.164] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:30:43 2009] [error] [client 10.4.1.164] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:30:43 2009] [error] [client 10.4.1.164] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:30:43 2009] [error] [client 10.4.1.164] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:31:46 2009] [error] [client 10.20.2.92] client denied by server configuration: /home01/oraprod/prodcomn/java/java
    [Tue May 12 14:31:47 2009] [error] [client 10.20.2.92] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/forms/engine
    [Tue May 12 14:31:47 2009] [error] [client 10.20.2.92] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:31:47 2009] [error] [client 10.20.2.92] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:31:47 2009] [error] [client 10.20.2.92] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:31:47 2009] [error] [client 10.20.2.92] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:31:47 2009] [error] [client 10.20.2.92] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:31:48 2009] [error] [client 10.20.2.92] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:31:48 2009] [error] [client 10.20.2.92] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:34:24 2009] [error] [client 10.20.2.92] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:34:24 2009] [error] [client 10.20.2.92] File does not exist: /home01/oraprod/prodcomn/java/oracle/ewt/alert/resource/AlertBundle_en_US.properties
    [Tue May 12 14:39:51 2009] [error] [client 10.22.8.74] File does not exist: /home01/oraprod/prodcomn/java/oracle/apps/media/oracle/apps/media/splash.gif
    [Tue May 12 14:39:51 2009] [error] [client 10.22.8.74] File does not exist: /home01/oraprod/prodcomn/java/oracle/forms/icons/bgnd.gif
    [Tue May 12 14:41:35 2009] [error] [client 10.4.1.167] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/forms/engine
    [Tue May 12 14:41:35 2009] [error] [client 10.4.1.167] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:41:35 2009] [error] [client 10.4.1.167] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:41:35 2009] [error] [client 10.4.1.167] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:41:35 2009] [error] [client 10.4.1.167] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:41:35 2009] [error] [client 10.4.1.167] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:41:35 2009] [error] [client 10.4.1.167] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:41:35 2009] [error] [client 10.4.1.167] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:47:05 2009] [error] [client 10.20.2.105] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/jdbc
    [Tue May 12 14:47:06 2009] [error] [client 10.20.2.105] client denied by server configuration: /home01/oraprod/prodcomn/java/java
    [Tue May 12 14:48:47 2009] [error] [client 10.22.8.64] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:48:47 2009] [error] [client 10.22.8.64] File does not exist: /home01/oraprod/prodcomn/java/oracle/ewt/alert/resource/AlertBundle_en_US.properties
    [Tue May 12 14:48:54 2009] [error] [client 10.1.10.110] client denied by server configuration: /home01/oraprod/prodcomn/java/java
    [Tue May 12 14:48:54 2009] [error] [client 10.1.10.110] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/forms/engine
    [Tue May 12 14:48:54 2009] [error] [client 10.1.10.110] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:48:54 2009] [error] [client 10.1.10.110] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:48:54 2009] [error] [client 10.1.10.110] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:48:54 2009] [error] [client 10.1.10.110] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:48:54 2009] [error] [client 10.1.10.110] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:48:54 2009] [error] [client 10.1.10.110] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:48:54 2009] [error] [client 10.1.10.110] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:48:55 2009] [error] [client 10.1.10.110] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/forms/engine
    [Tue May 12 14:48:55 2009] [error] [client 10.1.10.110] File does not exist: /home01/oraprod/prodcomn/java/oracle/forms/engine/RunformBundle_ar_JO.properties
    [Tue May 12 14:51:20 2009] [error] [client 10.20.2.68] client denied by server configuration: /home01/oraprod/prodcomn/java/java
    Edited by: user8006044 on May 12, 2009 5:40 AM

  • Gurus, please help I am getting oracle.apps.fnd.cache.CacheException

    Hi, I am not a newbie to OAF. I have worked good amount on the OAF 9i development. Currently we are on R12.0.4 and Jdev 10g (patch 6908968) But this error really beats me. I believe it could be due to a Apache error, but may be I am doing something wrong here and so hopefully you can provide me some insight. I am trying to configure my JDev 10G for R12 development. I am trying to run supplied HelloWorld page in Tutorial.jpr. I have set the DB connection and provided the username/password with responsibility key and also the DBC file in the Runtime Connections properties for the Project. I have also tried the alternative i.e building a custom HelloWorld, but even with that I get the same error.
    Please let me know if I should be doing anything else.
    Thanks and appreciate your help.
    Rahul
    ---------------------------------------------------Error ------------------------------------------------------------------------
    racle.apps.fnd.cache.CacheException     
    at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:228)     
    at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1485)     
    at oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:354)     
    at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:211)     
    at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:171)     
    at oracle.apps.fnd.profiles.ExtendedProfileStore.getProfile(ExtendedProfileStore.java:148)     
    at oracle.apps.fnd.common.logging.DebugEventManager.configureUsingDatabaseValues(DebugEventManager.java:1259)     
    at oracle.apps.fnd.common.logging.DebugEventManager.configureLogging(DebugEventManager.java:1114)     
    at oracle.apps.fnd.common.logging.DebugEventManager.internalReinit(DebugEventManager.java:1083)     
    at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:1050)     
    at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:1037)     
    at oracle.apps.fnd.common.AppsLog.reInitialize(AppsLog.java:595)     
    at oracle.apps.fnd.common.AppsContext.initLog(AppsContext.java:941)     
    at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:926)     
    at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:891)     
    at oracle.apps.fnd.common.WebAppsContext.<init>(WebAppsContext.java:1027)     
    at oracle.apps.fnd.common.WebRequestUtil.validateContext(WebRequestUtil.java:223)     
    at OAErrorPage.jspService(_OAErrorPage.java:66)     [OAErrorPage.jsp]     
    at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.3.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)     
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)     
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)     
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)     
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)     
    at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindPageContext.handlePageThrowable(EvermindPageContext.java:847)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindPageContext.handlePageException(EvermindPageContext.java:813)     
    at runregion.jspService(_runregion.java:197)     [runregion.jsp]     
    at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.3.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)     
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)     
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)     
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)     
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)     
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)     
    at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)     
    at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)     
    at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)     
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)     
    at java.lang.Thread.run(Thread.java:595)Caused by: oracle.apps.jtf.base.resources.FrameworkException: Error in IAS Cache: java.lang.NullPointerException: null Connection     at oracle.apps.jtf.cache.IASCacheProvider.get(IASCacheProvider.java:712)     
    at oracle.apps.jtf.cache.CacheManager.getInternal(CacheManager.java:4802)     
    at oracle.apps.jtf.cache.CacheManager.get(CacheManager.java:4624)     
    at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:216)     
    ... 50 moreCaused by: oracle.apps.jtf.base.resources.FrameworkException: An exception occurred in the method CacheAccess.getnullThe base exception is:null Connection     
    at oracle.apps.jtf.base.resources.FrameworkException.convertException(FrameworkException.java:607)     
    at oracle.apps.jtf.base.resources.FrameworkException.addException(FrameworkException.java:585)     
    at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:66)     
    at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:88)     
    at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:202)     
    at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:218)     
    at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:249)     ... 54 more
    -------------------------------------------------------------------------------------------------------------------------------------------------

    I did thought it was a DBC issue before, so I requested the DBC file again from the DBA's. I try the page and get the same error again. This time I looked at the DBC and compared the JDBC string with what I have on the TNSNames. The server name on the DBC file provided to me was slightly off. So, that was the error. The dbc file had imbcdd-d as the server name, whereas in the TNSName it was imbcdd-b. I fixed the DBC and reran and there it goes I get the HelloWorld Page.
    Thanks a bunch to all. I should have it investigated more. Apologize for the siilly post.
    Rahul

  • Exception in thread "main" oracle.wsdl.toolkit.WSDLGenerationException:

    Hi,
    I am creating the PLSQL webservice to support refcursors. but when i am running the command java -jar WebServicesAssembler.jar -config config.xml i am getting this error.
    Exception in thread "main" oracle.wsdl.toolkit.WSDLGenerationException: java.lan
    g.Exception java.sql.Connection is an abstract class: cannot be instanciated
    at oracle.wsdl.toolkit.JavaXSDTypeMapper.getXSDType(JavaXSDTypeMapper.ja
    va:146)
    at oracle.wsdl.toolkit.WSDLGenerator.addOperationToWSDL(WSDLGenerator.ja
    va:466)
    at oracle.wsdl.toolkit.WSDLGenerator.generateWSDL(WSDLGenerator.java:259
    at oracle.wsdl.toolkit.WSDLGenerator.generateWSDL(WSDLGenerator.java:197
    at oracle.wsdl.toolkit.WSDLGenerator.generateWSDL(WSDLGenerator.java:185
    at oracle.j2ee.ws.tools.WsAssmWSDLGenerator.generateWSDL(WsAssmWSDLGener
    ator.java:343)
    at oracle.j2ee.ws.tools.WsAssmWSDLGenerator.generate(WsAssmWSDLGenerator
    .java:171)
    at oracle.j2ee.ws.tools.WsAssembler.assemble(WsAssembler.java:99)
    at oracle.j2ee.ws.tools.WsAssembler.main(WsAssembler.java:71)
    my config.xml file is like this
    <web-service>
    <display-name>Web Service using AASC_Ship_Console</display-name>
    <description>Exposing the PL/SQL package AascShipConsole as a Web Service under the endpoint: /PLSQL/aasc_ship_console
    </description>
    <destination-path>./aasc_ship_console.ear</destination-path>
    <temporary-directory>./tmp</temporary-directory>
    <context>/PLSQL</context>
    <!-- A stateless service based on a PL/SQL package. -->
    <stateless-stored-procedure-java-service>
    <!-- The URL under the context /PLSQL for the service -->
    <uri>/aasc_ship_console</uri>
    <!-- Info needed at publishing time -->
    <class-name>aasc_ship_console.aascImpl</class-name>
    <interface-name>aasc_ship_console.aasc_ship_console</interface-name>
    <java-resource>aasc_ship_console.jar</java-resource>
    <!-- Info needed at runtime - the JNDI DB connection -->
    <database-JNDI-name>jdbc/AppsDataSource</database-JNDI-name>
    </stateless-stored-procedure-java-service>
    <wsdl-gen>
         <wsdl-dir>wsdl</wsdl-dir>
    <!-- over-write a pregenerated wsdl , turn it 'false'
    to use the pregenerated wsdl-->
         <option name="force">true</option>
         <option name="httpServerURL">http://localhost:8888</option>
    </wsdl-gen>
    </web-service>
    if anybody knows the solution, please reply as soon as possible. Its very urgent.
    Thanks in advance.

    Hi,
    I am creating the PLSQL webservice to support refcursors. but when i am running the command java -jar WebServicesAssembler.jar -config config.xml i am getting this error.
    Exception in thread "main" oracle.wsdl.toolkit.WSDLGenerationException: java.lan
    g.Exception java.sql.Connection is an abstract class: cannot be instanciated
    at oracle.wsdl.toolkit.JavaXSDTypeMapper.getXSDType(JavaXSDTypeMapper.ja
    va:146)
    at oracle.wsdl.toolkit.WSDLGenerator.addOperationToWSDL(WSDLGenerator.ja
    va:466)
    at oracle.wsdl.toolkit.WSDLGenerator.generateWSDL(WSDLGenerator.java:259
    at oracle.wsdl.toolkit.WSDLGenerator.generateWSDL(WSDLGenerator.java:197
    at oracle.wsdl.toolkit.WSDLGenerator.generateWSDL(WSDLGenerator.java:185
    at oracle.j2ee.ws.tools.WsAssmWSDLGenerator.generateWSDL(WsAssmWSDLGener
    ator.java:343)
    at oracle.j2ee.ws.tools.WsAssmWSDLGenerator.generate(WsAssmWSDLGenerator
    .java:171)
    at oracle.j2ee.ws.tools.WsAssembler.assemble(WsAssembler.java:99)
    at oracle.j2ee.ws.tools.WsAssembler.main(WsAssembler.java:71)
    my config.xml file is like this
    <web-service>
    <display-name>Web Service using AASC_Ship_Console</display-name>
    <description>Exposing the PL/SQL package AascShipConsole as a Web Service under the endpoint: /PLSQL/aasc_ship_console
    </description>
    <destination-path>./aasc_ship_console.ear</destination-path>
    <temporary-directory>./tmp</temporary-directory>
    <context>/PLSQL</context>
    <!-- A stateless service based on a PL/SQL package. -->
    <stateless-stored-procedure-java-service>
    <!-- The URL under the context /PLSQL for the service -->
    <uri>/aasc_ship_console</uri>
    <!-- Info needed at publishing time -->
    <class-name>aasc_ship_console.aascImpl</class-name>
    <interface-name>aasc_ship_console.aasc_ship_console</interface-name>
    <java-resource>aasc_ship_console.jar</java-resource>
    <!-- Info needed at runtime - the JNDI DB connection -->
    <database-JNDI-name>jdbc/AppsDataSource</database-JNDI-name>
    </stateless-stored-procedure-java-service>
    <wsdl-gen>
         <wsdl-dir>wsdl</wsdl-dir>
    <!-- over-write a pregenerated wsdl , turn it 'false'
    to use the pregenerated wsdl-->
         <option name="force">true</option>
         <option name="httpServerURL">http://localhost:8888</option>
    </wsdl-gen>
    </web-service>
    if anybody knows the solution, please reply as soon as possible. Its very urgent.
    Thanks in advance.

  • Getting Exception: java.lang.ClassNotFoundException: oracle.apps.fnd.formsC

    Hi,
    I am getting an error while access R12 vision instance through solutionbeacon.com.
    This error is coming while installing Jinitiator from the link.
    Please help me out on this.
    Regards,
    Vara

    Hi Vara;
    Please enable jinit console and check error there and post it here please
    Regard
    Helios

  • Va.lang.ClassNotFoundException: oracle.apps.fnd.formsClient.Forms in R12.

    when we are trrying to access forms, we are getting below error, this is happening only one user other users able to access,and i am able to access other instances forms,
    here is java console java error msg:
    IE : 8 R12.1.3 pn OEL5.
    basic: completed perf rollup
    network: Cache entry not found [url: http://.com:8000/OA_JAVA/oracle/apps/fnd/formsClient/FormsLauncher.class, version: null]
    network: Connecting http://.com:8000/OA_JAVA/oracle/apps/fnd/formsClient/FormsLauncher.class with proxy=DIRECT
    network: Cache entry not found [url: http://.com:8000/OA_JAVA/oracle/apps/fnd/formsClient/FormsLauncher/class.class, version: null]
    network: Connecting http://com:8000/OA_JAVA/oracle/apps/fnd/formsClient/FormsLauncher/class.class with proxy=DIRECT
    load: class oracle/apps/fnd/formsClient/FormsLauncher.class not found.
    va.lang.ClassNotFoundException: oracle.apps.fnd.formsClient.FormsLauncher.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    basic: Exception: java.lang.ClassNotFoundException: oracle.apps.fnd.formsClient.For
    java.net.ConnectException: Connection refused: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(Unknown Source)
         at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
         at java.net.PlainSocketImpl.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at sun.net.NetworkClient.doConnect(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.http.HttpClient.<init>(Unknown Source)
         at sun.net.www.http.HttpClient.New(Unknown Source)
         at sun.net.www.http.HttpClient.New(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
         at sun.plugin.PluginURLJarFileCallBack.downloadJAR(Unknown Source)
         at sun.plugin.PluginURLJarFileCallBack.access$000(Unknown Source)
         at sun.plugin.PluginURLJarFileCallBack$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.plugin.PluginURLJarFileCallBack.retrieve(Unknown Source)
         at sun.net.www.protocol.jar.URLJarFile.retrieve(Unknown Source)
         at sun.net.www.protocol.jar.URLJarFile.getJarFile(Unknown Source)
         at sun.net.www.protocol.jar.JarFileFactory.get(Unknown Source)
         at sun.net.www.protocol.jar.JarURLConnection.connect(Unknown Source)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.connect(Unknown Source)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.getJarFileInternal(Unknown Source)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)
         at sun.misc.URLClassPath$JarLoader.getJarFile(Unknown Source)
         at sun.misc.URLClassPath$JarLoader.access$600(Unknown Source)
         at sun.misc.URLClassPath$JarLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.misc.URLClassPath$JarLoader.ensureOpen(Unknown Source)
         at sun.misc.URLClassPath$JarLoader.<init>(Unknown Source)
         at sun.misc.URLClassPath$3.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.misc.URLClassPath.getLoader(Unknown Source)
         at sun.misc.URLClassPath.getLoader(Unknown Source)
         at sun.misc.URLClassPath.getResource(Unknown Source)
         at java.net.URLClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(Unknown Source)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)

    when we are trrying to access forms, we are getting below error, this is happening only one user other users able to access,and i am able to access other instances forms, This is a client issue, and there is nothing you need to troubleshoot from the server side.
    Try to uninstall/install Sun JRE and check then. Also, try to use a different browser and see if you can reproduce the issue.
    Can't Launch Forms in E-Business when accessed via VPN: Formslauncher Notinited [ID 471120.1]
    Deploying Sun JRE (Native Plug-in) for Windows Clients in Oracle E-Business Suite Release 12 [ID 393931.1]
    FormsLauncher.class Not Found Error When Attempting to Access Forms in Applications [ID 291698.1]
    IE8 AND R12 SECURITY SETTING REQUIREMENT ON CROSS SITE SCRIPTING (XSS) [ID 1069497.1]
    If you still get the same error, enable debug as per these docs.
    How to enable tracing and logging for Sun JRE (Native Plug-in) [ID 549423.1]
    How To View The Java Console And Enable Tracing For Sun JRE (Native Plug-in) [ID 452853.1]
    Thanks,
    Hussein

  • Error oracle.apps.fnd.framework.OAException: Application:  in jdev

    Hello,
    I am facing one error in jdev . while running the OAF
    page suddenly i am getting following error. Yesterday
    it was working fine and even I have not changed
    anything. Even Toolbox tutorial pages are erroring
    out with this error. My connection setting and
    everything is proper.
    oracle.apps.fnd.framework.OAException: Application:
    FND, Message Name: FND_GENERIC_MESSAGE. Tokens:
    MESSAGE =
    oracle.apps.jtf.cache.CacheLoaderNotFoundException;
    (Could not lookup message because there is no database
    connection)
    Please help me out . Whole error is attached below.
    Thanks
    Ganesh
    Here is the error.
    Error Page
    Exception Details.
    oracle.apps.fnd.framework.OAException: Application:
    FND, Message Name: FND_GENERIC_MESSAGE. Tokens:
    MESSAGE =
    oracle.apps.jtf.cache.CacheLoaderNotFoundException;
    (Could not lookup message because there is no database
    connection)
         at
    oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888)
         at
    oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:862)
         at OAErrorPage.jspService(OAErrorPage.jsp:32)
         at
    com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at
    oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at
    oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at
    oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at
    com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at
    com.evermind.server.http.ServletRequestDispatcher.include(ServletRequestDispatcher.java:119)
         at
    com.evermind.server.http.EvermindPageContext.handlePageThrowable(EvermindPageContext.java:547)
         at
    com.evermind.server.http.EvermindPageContext.handlePageException(EvermindPageContext.java:518)
         at runregion.jspService(runregion.jsp:143)
         at
    com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at
    oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at
    oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at
    oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at
    com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at
    com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at
    com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at
    com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at
    com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at
    EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    oracle.apps.jtf.cache.CacheLoaderNotFoundException
         at
    oracle.apps.jtf.cache.CacheManager.getInternal(CacheManager.java:3236)
         at
    oracle.apps.jtf.cache.CacheManager.get(CacheManager.java:3203)
         at
    oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:248)
         at
    oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:974)
         at
    oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:360)
         at
    oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:225)
         at
    oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:184)
         at
    oracle.apps.fnd.profiles.ExtendedProfileStore.getProfile(ExtendedProfileStore.java:147)
         at
    oracle.apps.fnd.common.logging.DebugEventManager.configureUsingDatabaseValues(DebugEventManager.java:1107)
         at
    oracle.apps.fnd.common.logging.DebugEventManager.configureLogging(DebugEventManager.java:971)
         at
    oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:940)
         at
    oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:907)
         at
    oracle.apps.fnd.common.AppsLog.reInitialize(AppsLog.java:570)
         at
    oracle.apps.fnd.common.AppsContext.initLog(AppsContext.java:1025)
         at
    oracle.apps.fnd.common.WebAppsContext.init(WebAppsContext.java:3486)
         at
    oracle.apps.fnd.common.WebAppsContext.<init>(WebAppsContext.java:537)
         at
    oracle.apps.fnd.framework.server.OAUtility.getWebAppsContext(OAUtility.java:346)
         at
    oracle.apps.fnd.framework.CreateIcxSession.getEncryptedSessId(CreateIcxSession.java:144)
         at
    oracle.apps.fnd.framework.CreateIcxSession.createSession(CreateIcxSession.java:80)
         at runregion.jspService(runregion.jsp:96)
         at
    com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at
    oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at
    oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at
    oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at
    com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at
    com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at
    com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at
    com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at
    com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at
    EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    oracle.apps.jtf.cache.CacheLoaderNotFoundException
         at
    oracle.apps.jtf.cache.CacheManager.getInternal(CacheManager.java:3236)
         at
    oracle.apps.jtf.cache.CacheManager.get(CacheManager.java:3203)
         at
    oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:248)
         at
    oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:974)
         at
    oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:360)
         at
    oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:225)
         at
    oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:184)
         at
    oracle.apps.fnd.profiles.ExtendedProfileStore.getProfile(ExtendedProfileStore.java:147)
         at
    oracle.apps.fnd.common.logging.DebugEventManager.configureUsingDatabaseValues(DebugEventManager.java:1107)
         at
    oracle.apps.fnd.common.logging.DebugEventManager.configureLogging(DebugEventManager.java:971)
         at
    oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:940)
         at
    oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:907)
         at
    oracle.apps.fnd.common.AppsLog.reInitialize(AppsLog.java:570)
         at
    oracle.apps.fnd.common.AppsContext.initLog(AppsContext.java:1025)
         at
    oracle.apps.fnd.common.WebAppsContext.init(WebAppsContext.java:3486)
         at
    oracle.apps.fnd.common.WebAppsContext.<init>(WebAppsContext.java:537)
         at
    oracle.apps.fnd.framework.server.OAUtility.getWebAppsContext(OAUtility.java:346)
         at
    oracle.apps.fnd.framework.CreateIcxSession.getEncryptedSessId(CreateIcxSession.java:144)
         at
    oracle.apps.fnd.framework.CreateIcxSession.createSession(CreateIcxSession.java:80)
         at runregion.jspService(runregion.jsp:96)
         at
    com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at
    oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at
    oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at
    oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at
    com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at
    com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at
    com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at
    com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at
    com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at
    EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)

    Hi ganesh,
    You may want to try the OA Framework forum:OA Framework
    John

  • OA Framework pages gives oracle.apps.jtf.cache.CacheLoaderNotFoundExecption

    I have installed the right version of JDeveloper and started working on as per anilpassi demos and friends guidence.I was able to work on OA Framework pages, I have added some attributes in Tutorial page and also I was able to see isupplier page that I have to customize. While running the pages, it will take nearly 10mins to show every page.
    With the same configuration,Now I am getting error when I run any page from yesterday afternoon. So I have tried to reconfigure again the Jdeveloper and even I have tried by reinstalling it. Still I am getting the Error page. Here are details regarding the error page. I request you to go through these please and give your suggestions.
    I have set the JDEV_USER_HOME Environment Variable to “E:\jdevhome\jdev” and also I have set the database connection.
    The runtime settings I have given is below:
    Selected the DBC file.
    also the username and password i given is correct only. and also the user has the turorials responsibility.
    Error in IE while running:
    ==============
    Error Page Exception Details.
    oracle.apps.fnd.framework.OAException: Application: FND, Message Name: FND_GENERIC_MESSAGE. Tokens: MESSAGE = oracle.apps.jtf.cache.CacheLoaderNotFoundException;
    at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:891)
    at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:865)
    at OAErrorPage.jspService(OAErrorPage.jsp:34)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
    at com.evermind.server.http.ServletRequestDispatcher.include(ServletRequestDispatcher.java:119)
    at com.evermind.server.http.EvermindPageContext.handlePageThrowable(EvermindPageContext.java:547)
    at com.evermind.server.http.EvermindPageContext.handlePageException(EvermindPageContext.java:518)
    at runregion.jspService(runregion.jsp:143)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:797)
    at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    oracle.apps.jtf.cache.CacheLoaderNotFoundException
    at oracle.apps.jtf.cache.CacheManager.getInternal(CacheManager.java:3236)
    at oracle.apps.jtf.cache.CacheManager.get(CacheManager.java:3203)
    at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:248)
    at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1293)
    at oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:384)
    at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:210)
    at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:169)
    at oracle.apps.fnd.profiles.ExtendedProfileStore.getProfile(ExtendedProfileStore.java:148)
    at oracle.apps.fnd.common.logging.DebugEventManager.configureUsingDatabaseValues(DebugEventManager.java:1147)
    at oracle.apps.fnd.common.logging.DebugEventManager.configureLogging(DebugEventManager.java:1008)
    at oracle.apps.fnd.common.logging.DebugEventManager.internalReinit(DebugEventManager.java:977)
    at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:944)
    at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:931)
    at oracle.apps.fnd.common.AppsLog.reInitialize(AppsLog.java:570)
    at oracle.apps.fnd.common.AppsContext.initLog(AppsContext.java:894)
    at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:879)
    at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:848)
    at oracle.apps.fnd.common.AppsContext.(AppsContext.java:707)
    at oracle.apps.fnd.common.WebAppsContext.(WebAppsContext.java:940)
    at oracle.apps.fnd.framework.server.OAUtility.getWebAppsContext(OAUtility.java:352)
    at oracle.apps.fnd.framework.CreateIcxSession.getEncryptedSessId(CreateIcxSession.java:144)
    at oracle.apps.fnd.framework.CreateIcxSession.createSession(CreateIcxSession.java:80)
    at runregion.jspService(runregion.jsp:96)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:797)
    at java.lang.Thread.run(Thread.java:534)
    oracle.apps.jtf.cache.CacheLoaderNotFoundException
    at oracle.apps.jtf.cache.CacheManager.getInternal(CacheManager.java:3236)
    at oracle.apps.jtf.cache.CacheManager.get(CacheManager.java:3203)
    at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:248)
    at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1293)
    at oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:384)
    at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:210)
    at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:169)
    at oracle.apps.fnd.profiles.ExtendedProfileStore.getProfile(ExtendedProfileStore.java:148)
    at oracle.apps.fnd.common.logging.DebugEventManager.configureUsingDatabaseValues(DebugEventManager.java:1147)
    at oracle.apps.fnd.common.logging.DebugEventManager.configureLogging(DebugEventManager.java:1008)
    at oracle.apps.fnd.common.logging.DebugEventManager.internalReinit(DebugEventManager.java:977)
    at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:944)
    at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:931)
    at oracle.apps.fnd.common.AppsLog.reInitialize(AppsLog.java:570)
    at oracle.apps.fnd.common.AppsContext.initLog(AppsContext.java:894)
    at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:879)
    at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:848)
    at oracle.apps.fnd.common.AppsContext.(AppsContext.java:707)
    at oracle.apps.fnd.common.WebAppsContext.(WebAppsContext.java:940)
    at oracle.apps.fnd.framework.server.OAUtility.getWebAppsContext(OAUtility.java:352)
    at oracle.apps.fnd.framework.CreateIcxSession.getEncryptedSessId(CreateIcxSession.java:144)
    at oracle.apps.fnd.framework.CreateIcxSession.createSession(CreateIcxSession.java:80)
    at runregion.jspService(runregion.jsp:96)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:797)
    at java.lang.Thread.run(Thread.java:534)
    ==============
    Then in JDeveloper below messages are shown in Embedded OC4J Server tab:
    ==============
    [Starting OC4J using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    E:\jdevbin\jdk\bin\javaw.exe -client -classpath E:\jdevbin\j2ee\home\oc4j.jar;E:\jdevbin\jdev\lib\jdev-oc4j.jar -Xbootclasspath/p:E:\jdevbin\jdev\appslibrt\ojdbc14.jar;E:\jdevbin\jdev\appslibrt\nls_charset12.zip -DFND_JDBC_STMT_CACHE_SIZE=200 -DCACHENODBINIT=true -DRUN_FROM_JDEV=true -mx256m -Doracle.j2ee.dont.use.memory.archive=false -Xverify:none -Doracle.j2ee.dont.use.memory.archive=true -Doracle.j2ee.http.socket.timeout=500 com.evermind.server.OC4JServer -config E:\jdevhome\jdev\system9.0.3.5.1453\oc4j-config\server.xml
    [waiting for the server to complete its initialization...]
    Ready message received from Oc4jNotifier.
    Embedded OC4J startup time: 3797 ms.
    Auto-deploying OA Framework web application deployment descriptor (New server version detected)...
    Oracle9iAS (9.0.3.1.0) Containers for J2EE initialized
    TIME: runregion: initialization [16 ms]
    Tutalii: E:\jdevbin\jdev\appslibrt\iasjoc.zip archive
    ApplicationServer: appName = APPS_OA
    ApplicationServer: appName = bc4j
    ApplicationServer: appName = current-workspace-app
    ApplicationServer: appName = soap
    Ready message received from Oc4jNotifier.
    Embedded OC4J startup time: 1297 ms.
    Error creating the ORB :
    Auto-deploying OA Framework web application deployment descriptor (New server version detected)...
    TIME: runregion: initialization [16 ms]
    ====================
    Starting Embedded OC4J Server is been displayed in the status bar. Also when a OA Framework page is getting opened, huge lines of codes and messages will be shown in Embedded OC4J Server Tab, but here nothing is shown than TIME: runregion: initialization [16 ms] .
    Please help in figuring out this,
    Thank you,

    Nothing much can be done, if you don't have vpn type of tool in performance.Moreoever,to pick latest class files it is necessary to bounce local jdev oc4j server, every time you make a change.
    Most of the time it do takes latest class files, but sometimes it not, so don't know how u will manage it, because in ur case every time u terminate the server... to restart it will take another 40 minutes.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Exception in thread "main" dbca OEL 4.7

    Hallo!I am a newbie in Oracle 10g having installed Oracle 10g in Oracle Enterprise Linux version 4 update 7.
    While installing Oracle 10g (I installed it on my Laptop the server and not remotely),I configured xhost + display parameters via the commands below
    [root@joey-oel ~]# xhost +
    access control disabled, clients can connect from any host
    [root@joey-oel ~]# su - oracle
    [oracle@joey-oel ~]$ DISPLAY=10.0.0.1:0.0
    [oracle@joey-oel ~]$ export DISPLAY
    IP address 10.0.0.1 is the IP address of the server from where I am installing Oracle.When I try to launch the DBCA via the command below,
    [oracle@joey-oel ~]$ dbca
    I get the following error
    Exception in thread "main" [oracle@joey-oel ~]$ dbca
    Thus,I tried to reconfigure the display parameters as below but the errors shown below appear
    [root@joey-oel ~]# xhost +
    xhost: unable to open display "10.0.0.1:0.0"
    [root@joey-oel ~]# su - oracle
    [oracle@joey-oel ~]$ DISPLAY=10.0.0.1:0.0
    [oracle@joey-oel ~]$ export DISPLAY
    [oracle@joey-oel ~]$ xhost +
    xhost: unable to open display "10.0.0.1:0.0"
    [oracle@joey-oel ~]$ dbca
    Exception in thread "main" [oracle@joey-oel ~]$
    How do I resolve this?
    Thanks.

    What happens when you close the terminal , open a new terminal , issue as Root user xhost+ and then fire up dbca in Oralce user? Don't set again the display variable in the Oracle user if you have given xhost+ as Root.
    HTH
    Aman....

  • Oracle.apps.fnd.soa.util.SOAException: ServiceProcessingError: Exception returned from JCA Service Runtime. file:/u01/oracle/VIS/inst/apps/VIS_oracle-ebs/soa/PLSQL/4892/XXBT_MIDAS_ORDER_CREATION.wsdl

    we are getting below issue while generating WSDL .Can you please help me some one ?
    Error Description
    Error occured while service was processing. 
    Error Details
    oracle.apps.fnd.soa.util.SOAException: ServiceProcessingError: Exception returned from JCA Service Runtime. file:/u01/oracle/VIS/inst/apps/VIS_oracle-ebs/soa/PLSQL/4892/XXBT_MIDAS_ORDER_CREATION.wsdl [ XXBT_MIDAS_ORDER_CREATION_ptt::XXBT_MIDAS_ORDER_CREATION(InputParameters,OutputParameters) ] - WSIF JCA Execute of operation 'XXBT_MIDAS_ORDER_CREATION' failed due to: Could not instantiate InteractionSpec oracle.tip.adapter.apps.AppsStoredProcedureInteractionSpec due to: Error while setting JCA WSDL Property. Property setIRepOverloadSeq is not defined for oracle.tip.adapter.apps.AppsStoredProcedureInteractionSpec Please verify the spelling of the property. ; nested exception is: ORABPEL-12532 Error while setting JCA WSDL Property. Property setIRepOverloadSeq is not defined for oracle.tip.adapter.apps.AppsStoredProcedureInteractionSpec Please verify the spelling of the property. ; nested exception is: org.collaxa.thirdparty.apache.wsif.WSIFException: Could not instantiate InteractionSpec oracle.tip.adapter.apps.AppsStoredProcedureInteractionSpec due to: Error while setting JCA WSDL Property. Property setIRepOverloadSeq is not defined for oracle.tip.adapter.apps.AppsStoredProcedureInteractionSpec Please verify the spelling of the property. ; nested exception is: ORABPEL-12532 Error while setting JCA WSDL Property. Property setIRepOverloadSeq is not defined for oracle.tip.adapter.apps.AppsStoredProcedureInteractionSpec Please verify the spelling of the property. at oracle.apps.fnd.soa.provider.services.jca.JCAHandler.invoke(JCAHandler.java:169) at oracle.apps.fnd.soa.provider.services.jca.JCAHandler.handleRequest(JCAHandler.java:113) at oracle.apps.fnd.soa.provider.SOAProvider.processMessage(SOAProvider.java:342) at oracle.j2ee.ws.server.provider.ProviderProcessor.doEndpointProcessing(ProviderProcessor.java:956) at oracle.j2ee.ws.server.WebServiceProcessor$1.run(WebServiceProcessor.java:358) at java.security.AccessController.doPrivileged(Native Method) at javax.security.auth.Subject.doAs(Subject.java:396) at oracle.j2ee.ws.server.WebServiceProcessor.invokeEndpointImplementation(WebServiceProcessor.java:355) at oracle.j2ee.ws.server.provider.ProviderProcessor.doRequestProcessing(ProviderProcessor.java:466) at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:114) at oracle.j2ee.ws.server.WebServiceProcessor.doService(WebServiceProcessor.java:96) at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:194) at javax.servlet.http.HttpServlet.service(HttpServlet.java:763) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370) at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199) at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303) at java.lang.Thread.run(Thread.java:619) org.collaxa.thirdparty.apache.wsif.WSIFException: file:/u01/oracle/VIS/inst/apps/VIS_oracle-ebs/soa/PLSQL/4892/XXBT_MIDAS_ORDER_CREATION.wsdl [ XXBT_MIDAS_ORDER_CREATION_ptt::XXBT_MIDAS_ORDER_CREATION(InputParameters,OutputParameters) ] - WSIF JCA Execute of operation 'XXBT_MIDAS_ORDER_CREATION' failed due to: Could not instantiate InteractionSpec oracle.tip.adapter.apps.AppsStoredProcedureInteractionSpec due to: Error while setting JCA WSDL Property. Property setIRepOverloadSeq is not defined for oracle.tip.adapter.apps.AppsStoredProcedureInteractionSpec 

    Hi HDeiby,
    I didn't find the "setIRepOverloadSeq" in wsdl file.i have verified all wsdl files but i didn't find. Please let me know excat file name .
    [applmgr@oracle-ebs 4892]$ ls -ltr
    total 24
    -rwxrwxrwx 1 applmgr dba 3167 Sep  5 02:46 XXBT_MIDAS_ORDER_CREATION.wsdl
    -rwxrwxrwx 1 applmgr dba  706 Sep  5 02:46 XXBT_MIDAS_ORDER_CREATION_PKG.wsdl
    -rwxrwxrwx 1 applmgr dba 3534 Sep  5 02:46 XXBT_MIDAS_ORDER_CREATION_PKG_soap.wsdl
    -rwxrwxrwx 1 applmgr dba 3328 Sep  5 02:46 XXBT_MIDAS_ORDER_CREATION_PKG_soap_http.wsdl
    -rwxrwxrwx 1 applmgr dba 1328 Sep  5 02:46 APPS_XXBT_MIDAS_ORDER_CREATION_PKG_XXBT_MIDAS_ORDER_CREATION.xsd
    -rwxrwxrwx 1 applmgr dba 1245 Sep  5 02:46 AppsContextHeader.wsdl

  • Exception in thread "main" java.lang.UnsatisfiedLinkError: /opt/oracle/libo

    Hi,
    I"m using Mac OS X (32 bit) and trying to connect to an Oracle 10g server via JDBC. I just installed the Mac OS X 10.2 Instant Client Package - Basic Lite from here -- http://www.oracle.com/technology/software/tech/oci/instantclient/htdocs/intel_macsoft.html. Sadly, when I try and run my console app to connect, I get this error ...
    Exception in thread "main" java.lang.UnsatisfiedLinkError: /opt/oracle/libocijdbc10.jnilib:
         at java.lang.ClassLoader$NativeLibrary.load(Native Method)
         at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1822)
         at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1739)
         at java.lang.Runtime.loadLibrary0(Runtime.java:822)
         at java.lang.System.loadLibrary(System.java:993)
         at oracle.jdbc.driver.T2CConnection$1.run(T2CConnection.java:3135)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.jdbc.driver.T2CConnection.loadNativeLibrary(T2CConnection.java:3131)
         at oracle.jdbc.driver.T2CConnection.logon(T2CConnection.java:221)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:414)
         at oracle.jdbc.driver.T2CConnection.<init>(T2CConnection.java:132)
         at oracle.jdbc.driver.T2CDriverExtension.getConnection(T2CDriverExtension.java:78)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:801)
         at java.sql.DriverManager.getConnection(DriverManager.java:525)
         at java.sql.DriverManager.getConnection(DriverManager.java:140)
         at org.hibernate.connection.DriverManagerConnectionProvider.getConnection(DriverManagerConnectionProvider.java:133)
         at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:111)
         at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:2097)
         at myco.dor.dmv.driver.youthful.database.YouthfulDriverDatabase.<init>(YouthfulDriverDatabase.java:77)
         at myco.dor.dmv.driver.youthful.database.YouthfulDriverDatabase.getInstance(YouthfulDriverDatabase.java:83)
         at myco.dor.dmv.driver.youthful.AddressFileProcessor.execute(AddressFileProcessor.java:86)
         at myco.dor.dmv.driver.youthful.AddressFileProcessor.main(AddressFileProcessor.java:81)
    Any ideas? My CLASSPATH is set to include /opt/oracle/classes12.jar. My ORACLE_HOME is set to /opt/oracle and LD_LIBRARY_PATH is set to ORACLE_HOME (since that's where all the jars are). How can I troubleshoot this further?
    Thanks, - Dave

    You can verify the settings of the path to your libraries with
    System.out.println(System.getProperty("java.library.path"));before you call System.loadLibrary(), so you know if it is correct.
    I also found this information (for Solaris):
    The shared library file name requires a "lib" prefix and a ".so" extension. Do not include the "lib" prefix or the ".so" extension for the argument that you pass to the System.loadLibrary method.
    I don't know if that helps you solving your problem.

Maybe you are looking for