What is oracle.adf.view.faces.CHECK_FILE_MODIFICATION message ?

Can anyone say what causes the message? and how can i prevent this message from been generated ?
2006-08-04 16:13:26.131 NOTIFICATION ADF Faces is running with time-stamp checking enabled. This should not be used in a production environment. See the oracle.adf.view.faces.CHECK_FILE_MODIFICATION property in WEB-INF/web.xml
Thanks.

Hi,
It's message appear because the parameter oracle.adf.view.faces.CHECK_FILE_MODIFICATION is true, so it's only a warning message. To prevent this change this property to false on web.xml
See the follow link to explain all options on web.xml related to ADF Faces.
http://www.oracle.com/technology/products/jdev/htdocs/partners/addins/exchange/jsf/doc/devguide/configuration.html
------- This is a explanation to its specific point-------
oracle.adf.view.faces.CHECK_FILE_MODIFICATION
If this pa rameter is enabled by setting to "true", ADF Faces will automatically check the modification date of your JSPs, and discard saved state when they change; this makes development easier, but adds overhead that should be avoided when your application is deployed.
Bye

Similar Messages

  • Looking for oracle.adf.view.faces.CHECK_FILE_MODIFICATION property

    Hi ,
    when i try to run a simple ADF form for the second time-one 'instance' of it has already run successfully some time ago , and the status of "embedded runtime OC4J SERVER" is running- i get the following error:
    INFO: ADF Faces is running with time-stamp checking enabled. This should not be used in a production environment. See the oracle.adf.view.faces.CHECK_FILE_MODIFICATION property in WEB-INF/web.xml
    I have searched the web.xml file in the current application...(userInterface project->Web Content - > Web-Inf) but i have not found the property "oracle.adf.view.faces.CHECK_FILE_MODIFICATION"....
    Where is there declared...????
    NOTE : I use JDev 10.1.3.
    My greetings,
    Simon

    Hi,
    oracle.adf.view.faces.CHECK_FILE_MODIFICATION is a context parameter that in JDeveloper IDE is set to true by default. You can set this to false but then this means that the JSPX files are no longer compiled when running them in the embedded OC4J, which means you actually see the "old" version
    <!-- If this parameter is enabled, ADF Faces will automatically
    check the modification date of your JSPs, and discard saved
    state when they change; this makes development easier,
    but adds overhead that should be avoided when your application
    is deployed -->
    <context-param> <param-name>oracle.adf.view.faces.CHECK_FILE_MODIFICATION</param-name>
    <param-value>false</param-value>
    </context-param>
    Frank

  • Customize messages in oracle.adf.view.faces.resource.MessageBundle class

    Is there a way to customize messages in oracle.adf.view.faces.resource.MessageBundle class?
    Thanks
    JP

    Hi,
    you don't mention teh JDeveloper release. The way you can do it is to define a custom resource bundle in a custom skin file. In 10.1.3 this is a bit more work because you have to write a complte skin wheras in JDeveloper 11 you can inherit from an existing skin
    Frank

  • ADF Faces: oracle.adf.view.faces.CHANGE_PERSISTENCE

    Does anyone have any information about oracle.adf.view.faces.CHANGE_PERSISTENCE. This appears to be un-documented.

    This may help explain the situatin. I originally had JDeveloper 10.1.3.2 installed when I started this tutorial. I then installed JDeveloper 11 version 4 and tried to work the WebCenter Protlet tutorial. When I did it tried to migrage my settings. However, when I attempted to do the tutorial I noticed that it did not have the same options for the WebCenter new applications that would create a Portlet folder. So, I went back to 10.1.3.2 to work the tutorial. No error was flagged at this point but that is when the problems started occuring. I browsed my working directory (C:\Oracle\jdevinstance) where I had my applications stored (C:\Oracle\jdevinstance\mywork) and I noticed that I had what appared to be possible conflicting system files. I had the following system files listed under the working directory: system, system11.1.1.0.17.45.24, system11.1.1.0.22.47.96, and system11.1.1.0.22.49.49. I don't know if this is the issue or not and any feedback about these extra files would be apprecaited?
    In addition, I create a new application (using 10.1.3.2) with a different applicaiton directory (C:\Oracle\jdevinstance\MyWork_10.1.3.2) and started the tutorial over. This time I had no issues with the JSP page and all of my web.xml files are the same version (2.4).

  • ClassNotFoundException: oracle.adf.view.faces.webapp.AdfFacesFilter

    Hi JDeveloper,
    Jdev Version: 11.1.1.6.0
    I am writing code to upload file to temp location, for this I added following configuration.
    <!-- This filter is always required by ADF; one of its functions is
    file upload. -->
    <filter>
    <filter-name>adfFaces</filter-name>
    <filter-class>oracle.adf.view.faces.webapp.AdfFacesFilter</filter-class>
    </filter>
    But on running the code getting below exception:
    weblogic.application.ModuleException: Failed to load webapp: 'SP'
         at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:393)
         at weblogic.application.internal.flow.ScopedModuleDriver.prepare(ScopedModuleDriver.java:176)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:199)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:517)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         Truncated. see log file for complete stacktrace
    Caused By: java.lang.ClassNotFoundException: oracle.adf.view.faces.webapp.AdfFacesFilter
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:297)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:270)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:64)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:305)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:246)
         Truncated. see log file for complete stacktrace
    Any clue on this?
    Please suggest
    Thanks,Ankur

    Hi Timo,
    I have read this blog carefully, but still my problem is unresolved. I have to save file to location on Submit button in popup. I am not able to get example how to do so, that on Submit button I should move the file to file server.
    My code is:
    <af:inputFile label="File Name:" id="if1" showRequired="true"
    autoSubmit="true"
    value="#{backingBeanScope.spr2DownloadPageBean.file}"
    valueChangeListener="#{backingBeanScope.spr2DownloadPageBean.uploadFile}"
    binding="#{backingBeanScope.spr2DownloadPageBean.inputFile}"/>
    Backing Bean:
    public void uploadFile(ValueChangeEvent valueChangeEvent) {
    // Add event code here...
    System.out.println("fileUpdate invoked");
    UploadedFile file =(UploadedFile)valueChangeEvent.getNewValue();
    if(file!=null){
    FacesContext context = FacesContext.getCurrentInstance();
    FacesMessage message = new FacesMessage(
    "Successfully uploaded file " + file.getFilename() +
    " (" + file.getLength() + " bytes)");
    I am not able to figure out code for Submit Button:
    public String UploadButton_action() {
    // Add event code here...
    if(this.getInputFile().getValue()==null){
    FacesContext context = FacesContext.getCurrentInstance();
    return null;
    Please suggest.

  • Java.lang.ClassNotFoundException: oracle.adf.view.faces.webapp.UIXComponent

    Hi all,
    My JDEV 11g suddenly can't be started and it throws this error message:
    java.lang.ClassNotFoundException: oracle.adf.view.faces.webapp.UIXComponentTag
    searched on internet, got no luck so far. It looks like that I missed a jar file somewhere that contains this class. But weird thing is that the IDE worked fine previously and I didn't do any change. Can someone tell me which jar file I might miss?
    Btw, I used the integrated WLS locally.
    Thanks in advance!
    Edited by: shawn_abc on Jan 30, 2012 2:48 PM

    'Trinidad Runtime 11' is included in the IDE, I couldn't find a "public_html" folder in Model project, but I see this folder under this path: \ViewController\model\public_html, also I see this folder: \ViewController\model\WEB-INF. I tried to rename the "public_html" to "public_html-bak" there and restart the server, then tried to launch the app in JDEV IDE, still I got this error: java.lang.ClassNotFoundException: oracle.adf.view.faces.webapp.UIXComponentTag.
    I check the library and classpath in IDE and it shows this jar file is used: C:\Oracle\JDev11114gU3\oracle_common\modules\oracle.adf.view_11.1.1\trinidad-api.jar
    then I opened this jar file and could only find the UIXComponentTag class as this path within the jar file: org\apache\myfaces\trinidad\webapp\UIXComponentTag.class. So I am wondering how could the application ask for this package: oracle.adf.view.faces.webapp.UIXComponentTag at all? I did a search in the application for "oracle.adf.view.faces.webapp", no returned at all.
    Thanks,
    Shawn
    Edited by: shawn_abc on Feb 2, 2012 3:45 PM

  • Missing class: oracle.adf.view.faces.webapp.AdfFacesFilterHelper

    I downloaded Steve's sample application "14. Dynamic JDBC Credentials for Model 1 and Model 2 [10.1.3.2] 2006, Upd: 30-MAR-2007 "
    I tried to run it, but got an error as like below.
    I'm using Jdeveloper 10.1.3.1.
    Can anybody help me?
    ------------------< my error >-----------------------------------------------------------------------------
    oracle.classloader.util.AnnotatedNoClassDefFoundError:
    Missing class: oracle.adf.view.faces.webapp.AdfFacesFilterHelper
    Dependent class: oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl
    Loader: current-workspace-app.web.DynamicCredentialsJSF:0.0.0
    Do I need somthing for this application?
    Please help again.
    Message was edited by:
    sdcsdc

    I have the same problem when trying to run a project created in 10.1.3.2 with 10.1.3.1
    I guess it's not downward compatible. It might seem silly trying to do this, but after testing I found that I can work around a bug in 10.1.3.1, something that doesn't work (anymore) in 10.1.3.2....
    I don't know yet how to fix it....
    [Update:] I created a new Application in 10.1.3.1 (BC and JSF in my case) en copied the jar files I got in the WEB-INF/lib into the app I made in 10.1.3.2. and voila, problem solved.
    Message was edited by:
    Wendy Tromp

  • Oracle.adf.view.faces.model classes and serializable

    Some (most?) classes in oracle.adf.view.faces.model - e.g., ChildPropertyTreeModel - are not serializable. If these objects are given the "session" scope, this causes problems. For instance, in a clustered environment with failover/load-balancing, session attributes must be serialized to be replicated to all cluster members. Adding one of these object to the session causes the serialization - and therefore the replication - process to fail. Does anybody know why these classes are not marked as serializable?

    Some (most?) classes in oracle.adf.view.faces.model - e.g., ChildPropertyTreeModel - are not serializable. If these objects are given the "session" scope, this causes problems. For instance, in a clustered environment with failover/load-balancing, session attributes must be serialized to be replicated to all cluster members. Adding one of these object to the session causes the serialization - and therefore the replication - process to fail. Does anybody know why these classes are not marked as serializable?

  • ADF progressIndicator without oracle.adf.view.faces.model.BoundedRangeMode

    Hello
    I am using progressIndicator for updating large number of database values. But it seems that oracle.adf.view.faces.model is not an opensource. But the progressIndicator using oracle.adf.view.faces.model.BoundedRangeModel. So any one please tell me is it possible to use progressIndicator without using oracle.adf.view.faces.model.BoundedRangeModel. I am updating nearly 10000 records. So it should use the progressIndicator.

    Hi,
    seems that your LOV implementation updates "MdlPrdId" on the table binding directly, which is not supposed to work
    Frank

  • ClassNotFoundException: oracle.adf.view.faces.bi.webapp.MapProxyServlet

    I have installed WebLogic 10.3.6 in AIX OS. I have created the managed servers and when i deploy my app developed with JDeveloper 11.1.2.2.0 it throws the error:
    ClassNotFoundException: oracle.adf.view.faces.bi.webapp.MapProxyServlet

    Hello Miguel,
    did you install the Application Development Runtime (ADR) 11.1.1.6.0 libraries in your Standalone WLS (and did you target them to your Managed Servers) ?
    Once done, you need to apply patch 13656274 and patch 13656372 (both available in My Oracle Support), before you run the WLST upgradeADF command.
    For more information, see Note 1328698.1 - How To Install the ADF Runtime Libraries 11g Release 2 in WebLogic Sever 10.3.5 / 10.3.6 - in My Oracle Support.
    Regards,
    Didier.
    Edited by: Didier Laurent on May 26, 2012 1:50 PM

  • Import oracle.adf.view.faces.context.AdfFacesContext fails

    I am trying to import import oracle.adf.view.faces.context.AdfFacesContext and it says "Error(9,8): AdfFacesContext not found". Do I need to add any library to JDeveloper?

    Hi,
    To import this class you just need of ADF Faces Runtime library on your project.
    Bye

  • Java.lang.ClassNotFoundException: oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl

    Hey,
    I am using jdeveloper 11 g release 2,
    running my application i am getting the error "
    java.lang.ClassNotFoundException: oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl"
    Can anyone assist on how to fix the error?
    java.lang.ClassNotFoundException: oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl
        at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:297)
        at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:270)
        at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:64)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:305)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:246)
        at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:179)
        at weblogic.utils.classloaders.ChangeAwareClassLoader.loadClass(ChangeAwareClassLoader.java:43)
        at oracle.adf.view.faces.webapp.AdfFacesFilter.init(AdfFacesFilter.java:46)
        at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterManager.java:332)
        at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
        at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
        at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:98)
        at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:59)
        at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1876)
        at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3153)
        at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1508)
        at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:482)
        at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
        at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
        at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
        at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
        at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
        at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:636)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:205)
        at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:58)
        at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
        at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
        at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
        at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:150)
        at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:116)
        at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
        at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
        at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
        at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
        at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:163)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)
        at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Regards
    steve kalenga

    Hey Frank ,
    It fail on the integrated WLS.
    <AdfFacesFilter> <init>
    java.lang.ClassNotFoundException: oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl
        at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:297)
        at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:270)
        at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:64)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:305)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:246)
        at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:179)
        at weblogic.utils.classloaders.ChangeAwareClassLoader.loadClass(ChangeAwareClassLoader.java:43)
        at oracle.adf.view.faces.webapp.AdfFacesFilter.init(AdfFacesFilter.java:46)
        at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterManager.java:332)
        at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
        at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
        at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:98)
        at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:59)
        at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1876)
        at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3153)
        at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1508)
        at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:482)
        at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
        at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
        at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
        at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
        at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
        at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:636)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:205)
        at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:58)
        at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
        at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
        at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
        at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:150)
        at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:116)
        at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
        at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
        at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
        at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
        at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:163)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)
        at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Regards
    steve kalenga

  • Java.io.NotSerializableException: oracle.adf.view. . . .RichSelectOneChoice

    Hi All,
    We have a section in a page to attach the files, called "Attachments".
    On click of "+" Icon we are showing a popup window,Which has 2 options with "RichSelectOneChoice".
    1.Desktop File 2.URL.
    Then we will browse and select the file and click OK button.
    We are consistently seeing below error message in Weblogic server.
    Can you please let me know what could be the reason.We didn't touch this code for quite sometime.
    [2012-12-05T05:01:16.796-05:00] [adf_server2_1] [ERROR] [ADFC-62004] [oracle.adfinternal.controller.state.SessionBasedScopeMap] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000JheWm3w9lZX_xt8DyW1GjlSk00004V,0] [APP: LT_SKU_App_v1] [dcid: 3d6375f6bdd86f9c:58e7e744:13b6a714d01:-7fe1-0000000000002cf9] [arg: pageFlowScope[/WEB-INF/RequesterHumanTask_TaskFlow.xml#RequesterHumanTask_TaskFlow]] [arg: SKUMgmtBean] [arg: com.lt.skumgmt.beans.SKUMgmt] ADFc: Scope object serialization failed (object not serializable), scope='pageFlowScope[WEB-INF/RequesterHumanTask_TaskFlow.xml#RequesterHumanTask_TaskFlow]', objectKey='SKUMgmtBean', objectType='com.lt.skumgmt.beans.SKUMgmt'.
    [2012-12-05T05:01:16.796-05:00] [adf_server2_1] [ERROR] [] [oracle.adfinternal.controller.state.SessionBasedScopeMap] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000JheWm3w9lZX_xt8DyW1GjlSk00004V,0] [APP: LT_SKU_App_v1] [dcid: 3d6375f6bdd86f9c:58e7e744:13b6a714d01:-7fe1-0000000000002cf9] [[
    java.io.NotSerializableException: oracle.adf.view.rich.component.rich.input.RichSelectOneChoice
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1156)
         at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1509)
         at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1474)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1392)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1150)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:326)
         at oracle.adfinternal.controller.util.Utils.verifySerializable(Utils.java:342)
         at oracle.adfinternal.controller.state.SessionBasedScopeMap.writeScopeMap(SessionBasedScopeMap.java:121)
         at oracle.adfinternal.controller.state.PageFlowScope.writeObject(PageFlowScope.java:153)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:945)
         at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1461)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1392)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1150)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:326)
         at java.util.HashMap.writeObject(HashMap.java:1195)
         at sun.reflect.GeneratedMethodAccessor93.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:945)
         at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1461)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1392)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1150)
         at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1509)
         at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1474)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1392)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1150)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:326)
         at weblogic.servlet.internal.session.ReplicatedSessionChange.writeExternal(ReplicatedSessionChange.java:124)
         at java.io.ObjectOutputStream.writeExternalData(ObjectOutputStream.java:1421)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1390)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1150)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:326)
         at weblogic.rjvm.MsgAbbrevOutputStream.writeObject(MsgAbbrevOutputStream.java:618)
         at weblogic.rjvm.MsgAbbrevOutputStream.writeObjectWL(MsgAbbrevOutputStream.java:609)
         at weblogic.rmi.internal.ObjectIO.writeObject(ObjectIO.java:38)
         at weblogic.rjvm.BasicOutboundRequest.marshalArgs(BasicOutboundRequest.java:88)
         at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:221)
         at weblogic.cluster.replication.ReplicationManager_1033_WLStub.update(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.cluster.replication.SecureReplicationInvocationHandler$ReplicationServicesInvocationAction.run(SecureReplicationInvocationHandler.java:184)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.cluster.replication.SecureReplicationInvocationHandler.invoke(SecureReplicationInvocationHandler.java:154)
         at $Proxy341.update(Unknown Source)
         at weblogic.cluster.replication.ReplicationManager.updateSecondary(ReplicationManager.java:535)
         at weblogic.servlet.internal.session.ReplicatedSessionData.syncSession(ReplicatedSessionData.java:594)
         at weblogic.servlet.internal.session.ReplicatedSessionContext.sync(ReplicatedSessionContext.java:85)
         at weblogic.servlet.internal.ServletRequestImpl$SessionHelper.syncSession(ServletRequestImpl.java:2811)
         at weblogic.servlet.internal.ServletRequestImpl$SessionHelper.syncSession(ServletRequestImpl.java:2786)
         at weblogic.servlet.internal.ServletResponseImpl$1.run(ServletResponseImpl.java:1479)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:1473)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1455)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

    It seems that you store UI reference is session scope bean, which is a common mistakes.
    check [url https://blogs.oracle.com/groundside/entry/the_uimanager_pattern]The UIManager Pattern

  • Import oracle.adf.view.rich.event.DropEvent; Not Found

    Ok guys I have a problem. A large number of my imports are not found when I type them into my project. I am following a book and there is no mention of this happening so I have no idea what to do. I figure maybe it is about finding libraries and adding them to my view controller but I am not sure what libraries I should add.
    These are the things that are missing
    import oracle.adf.view.rich.datatransfer.DataFlavor;
    import oracle.adf.view.rich.datatransfer.Transferable;
    import oracle.adf.view.rich.dnd.DnDAction;
    import oracle.adf.view.rich.event.DropEvent;
    import oracle.adfinternal.view.faces.model.binding.FacesCtrlHierNodeBinding;
    import org.apache.myfaces.trinidad.model.CollectionModel;
    import org.apache.myfaces.trinidad.model.RowKeySet;
    I am hoping that someone out there can help me with this problem

    Here is a listing of all of the packages missing since this happened. Keep in mind Ive been using some of these packages with no problems for a while. Dunno what happened. Also I left out the corresponding errors that I'm pretty sure appeared because of this but if anyone needs a full error list I can post it no problem.
    Error(6,29): package oracle.adf.controller does not exist
    Error(6,41): package oracle.adf.view.rich.datatransfer does not exist
    Error(7,41): package oracle.adf.view.rich.datatransfer does not exist
    Error(8,32): package oracle.adf.view.rich.dnd does not exist
    Error(9,34): package oracle.adf.view.rich.event does not exist
    Error(11,51): package oracle.adfinternal.view.faces.model.binding does not exist
    Error(17,41): package org.apache.myfaces.trinidad.model does not exist
    Error(18,41): package org.apache.myfaces.trinidad.model does not exist
    Error(3,29): package javax.faces.component does not exist
    Error(4,27): package javax.faces.context does not exist
    Error(5,27): package javax.faces.convert does not exist
    Error(11,27): package javax.faces.context does not exist
    Error(12,25): package javax.faces.event does not exist
    Error(16,36): package oracle.adf.view.rich.context does not exist
    Error(22,41): package org.apache.myfaces.trinidad.model does not exist
    Error(3,29): package oracle.adf.controller does not exist
    Error(6,43): package oracle.adf.view.rich.component.rich does not exist
    Error(7,52): package oracle.adf.view.rich.component.rich.fragment does not exist
    Error(8,34): package oracle.adf.view.rich.event does not exist
    Error(15,29): package javax.faces.component does not exist
    Error(16,27): package javax.faces.context does not exist
    Error(18,35): package oracle.adf.view.rich.render does not exist
    Error(20,42): package org.apache.myfaces.trinidad.render does not exist
    Error(21,40): package org.apache.myfaces.trinidad.util does not exist
    I sincerely hope someone can help me out of this mess

  • Unable to find class oracle.adf.controller.faces.lifecycle.ADFPhaseListener

    hi ,OTN
    I have an ADF 10g application which I migrate to Jdeveloper 11.1.1.3.0 version after migration and turning Adf faces to Apache Trinidad components and fixing all my code,compiling the application without any Errors,when I deployed my application to weblogic I had a deployment exception this is all the stack trace
    User defined listener com.sun.faces.config.ConfigureListener failed: com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED!
    Cause: Unable to find class 'oracle.adf.controller.faces.lifecycle.ADFPhaseListener '
    com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED!
    Cause: Unable to find class 'oracle.adf.controller.faces.lifecycle.ADFPhaseListener'
         at com.sun.faces.config.ConfigManager.initialize(ConfigManager.java:212)
         at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:195)
         at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         Truncated. see log file for complete stacktrace
    Caused By: com.sun.faces.config.ConfigurationException:
    Cause: Unable to find class 'oracle.adf.controller.faces.lifecycle.ADFPhaseListener'
         at com.sun.faces.config.processor.AbstractConfigProcessor.createInstance(AbstractConfigProcessor.java:248)
         at com.sun.faces.config.processor.LifecycleConfigProcessor.addPhaseListeners(LifecycleConfigProcessor.java:141)
         at com.sun.faces.config.processor.LifecycleConfigProcessor.process(LifecycleConfigProcessor.java:114)
         at com.sun.faces.config.processor.AbstractConfigProcessor.invokeNext(AbstractConfigProcessor.java:108)
         at com.sun.faces.config.processor.FactoryConfigProcessor.process(FactoryConfigProcessor.java:132)
         Truncated. see log file for complete stacktrace
    <08/10/2010 EET 04:11:11 م> <Error> <Deployer> <BEA-149265> <Failure occurred in the execution of deployment request with ID '1286547027015' for task '0'. Error is: 'weblogic.application.ModuleException: '
    weblogic.application.ModuleException:
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1514)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:486)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         Truncated. see log file for complete stacktrace
    Caused By: com.sun.faces.config.ConfigurationException:
    Cause: Unable to find class 'oracle.adf.controller.faces.lifecycle.ADFPhaseListener'
         at com.sun.faces.config.processor.AbstractConfigProcessor.createInstance(AbstractConfigProcessor.java:248)
         at com.sun.faces.config.processor.LifecycleConfigProcessor.addPhaseListeners(LifecycleConfigProcessor.java:141)
         at com.sun.faces.config.processor.LifecycleConfigProcessor.process(LifecycleConfigProcessor.java:114)
         at com.sun.faces.config.processor.AbstractConfigProcessor.invokeNext(AbstractConfigProcessor.java:108)
         at com.sun.faces.config.processor.FactoryConfigProcessor.process(FactoryConfigProcessor.java:132)
         Truncated. see log file for complete stacktrace
    >
    <08/10/2010 EET 04:11:11 م> <Error> <Deployer> <BEA-149202> <Encountered an exception while attempting to commit the 1 task for the application 'Version4'.>
    <08/10/2010 EET 04:11:11 م> <Warning> <Deployer> <BEA-149004> <Failures were detected while initiating deploy task for application 'Version4'.>
    <08/10/2010 EET 04:11:11 م> <Warning> <Deployer> <BEA-149078> <Stack trace for message 149004
    weblogic.application.ModuleException: :com.sun.faces.config.ConfigurationException:
    Source Document: file:/C:/Documents and Settings/Administrator/Application Data/JDeveloper/system11.1.1.3.37.56.60/o.j2ee/drs/Version4/ViewControllerWebApp.war/WEB-INF/faces-config.xml
    Cause: Unable to find class 'oracle.adf.controller.faces.lifecycle.ADFPhaseListener'
         at com.sun.faces.config.processor.AbstractConfigProcessor.createInstance(AbstractConfigProcessor.java:248)
         at com.sun.faces.config.processor.LifecycleConfigProcessor.addPhaseListeners(LifecycleConfigProcessor.java:141)
         at com.sun.faces.config.processor.LifecycleConfigProcessor.process(LifecycleConfigProcessor.java:114)
         at com.sun.faces.config.processor.AbstractConfigProcessor.invokeNext(AbstractConfigProcessor.java:108)
         at com.sun.faces.config.processor.FactoryConfigProcessor.process(FactoryConfigProcessor.java:132)
         Truncated. see log file for complete stacktrace
    help please?

    thank you for quick reply. but I ran my application in the integrated weblogic server in the Jdeveloper.I did not deploy it to a standalone one.did you mean the default domain?

Maybe you are looking for

  • How can I add additional email accounts

    I am trying to move my email from windows live mail to Thunderbird. I have three email accounts which i wish to set up. There does not seem to be any 'account setup button'. Is this achievable in some way ? Thanks in advance for any advice

  • Issue with XSLT

    Hi All, I am working on a requirement to write an XSLT file which will do the following: 1. Copy contents from Input.xml to Output.xml 2. Read another xml file named Map.xml, select the value of printImmediate corresponding to Report Name and Version

  • Output message form based on Vendor

    Hello Gurus, I have 2 SAPScript forms to output delivery schedule lines by fax or by email. How can i make the system to select the correct output form based on vendor? So far i am thinking to create a different message type and create a condition re

  • Group Left report does not sort DESCending

    Hello seniors... i have the following query that produces result as desired below at SQL level; i am aiming at rows to be displyed in the DESCending order.. SQL> SELECT Z.ACATG_TYPE, Y.EXPN_CATG, z.ACATG_DESC, y.expn_code, y.expn_name,   2  DECODE(Z.

  • Join two 8 bit integers and send via Serial Port

    I am trying to join two 8 bit integers and send the result via the serial port. I have a constant of hex value A that I need to join with a value from hex 0 - F (this is based on incoming data) When I use the Join VI, and type cast to change from hex