Oracle.adf.controller.activity.ActivityLogicException: ADFC-02013: Unable to get metadata for activity

Hello,
I am new to ADF, I am trying to learn how to navigate from one page to another, the code that I have is simple, but it is not working, I specified the control flow rules in the adfc-config.xml and I even tried to specify the navigation rules in the faces-config.xml file, but it doesn't matter if I do it in one configuration file or another I get the same error.  This is my first time working with ADF, I don't have formal training, just some video tutorial that I have seen on internet.  I have previous experience with JSF, so I feel more comfortable writing the code for my program than using all the graphical tools (at least at this moment)
Any help to solve this problem will be highly appreciated.
This is my page1.jsf  code:
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE html>
<f:view xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich" xmlns:h="http://java.sun.com/jsf/html">
    <af:document title="page1.jsf" id="d1" binding="#{backingBeanScope.backing_page1.d1}">
        <af:form id="f1" binding="#{backingBeanScope.backing_page1.f1}"></af:form>
    </af:document>  
    <h:head>
        <title>First JSF Example</title>
    </h:head>   
    <h:body>
        <h3>ADF Hello World Example</h3>
        <h:form>
            What's your name?
            <h:inputText value="#{backingBeanScope.backing_page1.message}"></h:inputText>
            <h:commandButton value="Welcome Me" action="#{backingBeanScope.backing_page1.processPage1}"></h:commandButton>
        </h:form>
    </h:body>   
</f:view>
This is my backing bean for page1:
package view.backing;
import oracle.adf.view.rich.component.rich.RichDocument;
import oracle.adf.view.rich.component.rich.RichForm;
public class Page1 {
    private RichForm f1;
    private RichDocument d1;
    private String message;
    public void setF1(RichForm f1) { this.f1 = f1; }   
    public RichForm getF1() {return f1;}   
     public void setD1(RichDocument d1) {this.d1 = d1;}
    public RichDocument getD1() {return d1;}
    public void setMessage(String msg) { this.message= msg;  }
    public String getMessage() { return this.message; }
    public String processPage1()
        System.out.println("++++++++++++++++++++++++++++++++++++++++++++++move to next page");
        return "success";   
This is my adfc-config.xml file:
<?xml version="1.0" encoding="UTF-8" ?>
<adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
  <control-flow-rule id="__5">
    <from-activity-id>page1.jsf</from-activity-id>
    <control-flow-case id="__6">
      <from-action>#{backingBeanScope.backing_page1.processPage1}</from-action>
      <from-outcome>success</from-outcome>
      <to-activity-id>page2.jsf</to-activity-id>
    </control-flow-case>
  </control-flow-rule>
  <managed-bean id="__2">
    <managed-bean-name>backing_page1</managed-bean-name>
    <managed-bean-class>view.backing.Page1</managed-bean-class>
    <managed-bean-scope>backingBean</managed-bean-scope>
    <!--oracle-jdev-comment:managed-bean-jsp-link:1page1.jsf-->
  </managed-bean>
  <managed-bean id="__1">
    <managed-bean-name>backing_page2</managed-bean-name>
    <managed-bean-class>view.backing.Page2</managed-bean-class>
    <managed-bean-scope>backingBean</managed-bean-scope>
    <!--oracle-jdev-comment:managed-bean-jsp-link:1page2.jsf-->
  </managed-bean>
</adfc-config>
Finally this is my page2.jsf
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE html>
<f:view xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich"  xmlns:h="http://java.sun.com/jsf/html">
    <af:document title="page2.jsf" id="d1" binding="#{backingBeanScope.backing_page2.d1}">
        <af:form id="f1" binding="#{backingBeanScope.backing_page2.f1}"></af:form>
    </af:document>
    <!--oracle-jdev-comment:auto-binding-backing-bean-name:backing_page2-->
    <h:body>
        <h3>ADF Hello World Example PAGE2</h3>  
    </h:body>     
</f:view>
This is the error that I get when I push the button on page1 and I try to navigate to page 2:
Target URL -- http://127.0.0.1:7101/EcatsADF12c-ViewController-context-root/faces/page1.jsf
<org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl> <ViewHandlerImpl> <_checkTimestamp> <TIMESTAMP_CHECKING_ENABLED_SHOULDNOT_IN_PRODUCTION>
<Apr 22, 2015 4:34:43 PM CDT> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:57,015 during the configured idle timeout of 5 seconds.>
<Apr 22, 2015 4:34:43 PM CDT> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:57,014 during the configured idle timeout of 5 seconds.>
<Apr 22, 2015 4:34:43 PM CDT> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:57,013 during the configured idle timeout of 5 seconds.>
<Apr 22, 2015 4:34:43 PM CDT> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:57,017 during the configured idle timeout of 5 seconds.>
<Apr 22, 2015 4:34:43 PM CDT> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:57,016 during the configured idle timeout of 5 seconds.>
++++++++++++++++++++++++++++++++++++++++++++++move to next page
<oracle.dfw.impl.incident.DiagnosticsDataExtractorImpl> <DiagnosticsDataExtractorImpl> <createADRIncident> <incident 11 created with problem key "ADFC-02013 [ADFc]">
<oracle.dfw.impl.incident.DiagnosticsDataExtractorImpl> <DiagnosticsDataExtractorImpl> <createADRIncident> <incident 12 created with problem key "ADFC-02013 [ADFc]">
<oracle.adf.view> <RichExceptionHandler> <_logUnhandledException> <ADF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase INVOKE_APPLICATION 5>
oracle.adf.controller.activity.ActivityLogicException: ADFC-02013: Unable to get metadata for activity 'page2.jsf'.
  at oracle.adfinternal.controller.util.Utils.createAndLogActivityLogicException(Utils.java:234)
  at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:1133)
  at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:979)
  at oracle.adfinternal.controller.engine.ControlFlowEngine.routeFromActivity(ControlFlowEngine.java:551)
  at oracle.adfinternal.controller.engine.ControlFlowEngine.performControlFlow(ControlFlowEngine.java:162)
  at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleAdfcNavigation(NavigationHandlerImpl.java:119)
  at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:88)
  at org.apache.myfaces.trinidadinternal.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:50)
  at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:130)
  at javax.faces.component.UICommand.broadcast(UICommand.java:315)
  at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:794)
  at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1259)
  at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:1074)
  at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:402)
  at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:225)
  at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593)
  at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:280)
  at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:254)
  at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)
  at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:346)
  at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)
  at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
  at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:192)
  at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
  at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:105)
  at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:502)
  at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
  at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:502)
  at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:327)
  at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:229)
  at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
  at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
  at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:202)
  at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
  at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:137)
  at java.security.AccessController.doPrivileged(Native Method)
  at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
  at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
  at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:120)
  at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:217)
  at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:81)
  at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
  at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:220)
  at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
  at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
  at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
  at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3436)
  at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3402)
  at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
  at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
  at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)
  at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2285)
  at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2201)
  at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
  at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1572)
  at weblogic.servlet.provider.ContainerSupportProviderImpl$WlsRequestExecutor.run(ContainerSupportProviderImpl.java:255)
  at weblogic.work.ExecuteThread.execute(ExecuteThread.java:311)
  at weblogic.work.ExecuteThread.run(ExecuteThread.java:263)

User, tell us your jdev version, please!
What is your goal?
What you have find had nothing to do with ADF. If you ent to learn adf then I recommend to work through find of the tutorials available on the jdev home page.
If adf is not your goal, you might want to use Trinidad and ask your question in their forum.
You might not like the declarative approach adf uses, but if you want to learn how to use adf, you have to understand how ADF works. Most can be done using java, but one you understand the framework you see the advantage.
Timo

Similar Messages

  • CFB2 unable to access Services Browser (unable to get metadata for CFC)

    Hello --
    I'm a novice with CF9.
    == Scenario
    - Mac OS X v10.6.8
    - ColdFusion v9 [updated to latest 9.0.1]
    - JRun with integrated WebServer [listen on 8500 port]
    - Developer mode
    - ColdFusion Builder v2.0.0 Build 277745 [standalone installation]
    - Created a simple local CF9 server [localhost, local, 8500, ServerHome /Applications/ColdFusion9, ServerRoot /Applications/ColdFusion9/wwwroot]
    - Enabled Debugger Mode in ColdFusion Administrator, test debugger ok, no problem
    - RDS Viewer ok
    - I'm able to open localhost:8500/CFIDE/administration without any problem
    - I'm able to browsing CFIDE WebServer
    == Problem
    Within CFB2, when I try to open my local CF9 server to inspect RDS Server, I'm unable to view/introspect CFC Components.
    I receive an error message "Unable to get meta data for cfc".
    - In effect, trying to open cfcexplorer.cfc in componenutils path, I receive a 404 error
    == Server Details
    Server Details
    Server Product
    ColdFusion
    Version
    9,0,1,274733
    Edition
    Developer
    Serial Number
    Developer
    Operating System
    Mac OS X
    OS Version
    10.6.8
    Adobe Driver Version
    4.0 (Build 0005)
    JVM Details
    Java Version
    1.6.0_24
    Java Vendor
    Apple Inc.
    Java Vendor URL
    http://www.apple.com/
    Java Home
    /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home
    Java File Encoding
    MacRoman
    Java Default Locale
    it_IT
    File Separator
    Path Separator
    Line Separator
    Chr(10)
    User Name
    gobbo67
    User Home
    /Users/gobbo67
    User Dir
    /Applications/Adobe ColdFusion Builder 2/CFBuilder.app/Contents/MacOS
    Java VM Specification Version
    1.0
    Java VM Specification Vendor
    Sun Microsystems Inc.
    Java VM Specification Name
    Java Virtual Machine Specification
    Java VM Version
    19.1-b02-334
    Java VM Vendor
    Apple Inc.
    Java VM Name
    Java HotSpot(TM) 64-Bit Server VM
    Java Specification Version
    1.6
    Java Specification Vendor
    Sun Microsystems Inc.
    Java Specification Name
    Java Platform API Specification
    Java Class Version
    50.0
    == Extract from application.log
    25-giu-2011
    22.21
    Error
    web-29
    File not found: /CFIDE/componentutils/cfcexplorer.cfc The specific  sequence of files included or processed is:  /Applications/ColdFusion9/wwwroot/CFIDE/componentutils/cfcexplorer.cfc''
    25-giu-2011
    22.21
    Error
    web-29
    Exception thrown by error-handling template:
    25-giu-2011
    22.21
    Error
    web-29
    File not found:  /Applications/ColdFusion9/wwwroot/WEB-INF/exception/coldfusion/runtime/TemplateNotFoundEx ception.cfm  The specific sequence of files included or processed is:  /Applications/ColdFusion9/wwwroot/WEB-INF/exception/coldfusion/runtime/TemplateNotFoundEx ception.cfm''
    == Extract from exception.log
    "Error","web-29","06/25/11","22:21:10",,"File not found: /Applications/ColdFusion9/wwwroot/WEB-INF/exception/coldfusion/runtime/TemplateNotFoundEx ception.cfm The specific sequence of files included or processed is: /Applications/ColdFusion9/wwwroot/WEB-INF/exception/coldfusion/runtime/TemplateNotFoundEx ception.cfm'' "
    coldfusion.runtime.TemplateNotFoundException: File not found: /Applications/ColdFusion9/wwwroot/WEB-INF/exception/coldfusion/runtime/TemplateNotFoundEx ception.cfm
    My problem is probably similar to http://forums.adobe.com/thread/503319
    Any suggest is appreciate.
    Alex/

    Hello --
    after spending many hours I'm believe that probably my concern arent related to CFBuilder [or not only] but also with CF9 installation on Mac OS X.
    Attached you can find  screen-shot about second page of Server Setup. Please note that I have  configured a *local* server (not remote) with a developer environment.
    Additional  info; after checking in detail, I have noted that integrated WebServer  (that I'm believe is JRun based) listen on 8500 is unable to open any  .cfm page.
    Under a directory created in WebRoot [Applications\ColdFusion9\wwwroot\Education] I have created a dumb index.cfm page, but that isnt executed.
    But whem I go in CFIDE\administration all is working nicely.
    Where can I check about integrated WebServer configuration, handler, etc?
    == Error from Local CF9 server.log
    27/06 09:02:01 error Requested resource 'File not found: /Education/index.cfm' (File%20not%20found%3a%20%2fEducation%2findex.cfm) not found
    java.lang.IllegalStateException
          at jrun.servlet.JRunResponse.getWriter(JRunResponse.java:205)
          at jrun.servlet.JRunResponse.sendError(JRunResponse.java:597)
          at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:316)
          at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)
          at jrun.servlet.http.WebService.invokeRunnable(WebService.java:172)
          at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320)
          at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
          at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266)
          at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    == About starting server.log
    "Information","main","06/27/11","08:49:04",,"Starting logging..."
    "Information","main","06/27/11","08:49:04",,"Starting license..."
    "Information","main","06/27/11","08:49:04",,"Invalid ColdFusion 9 license."
    "Information","main","06/27/11","08:49:04",,"Invalid ColdFusion 9 license."
    "Information","main","06/27/11","08:49:04",,"Developer Edition enabled"
    "Information","main","06/27/11","08:49:04",,"Starting crypto..."
    "Information","main","06/27/11","08:49:04",,"Installed  JSafe JCE provider: Version 3.6 RSA Security Inc. Crypto-J JCE Security  Provider (implements RSA, DSA, Diffie-Hellman, AES, DES, Triple DES,  DESX, RC2, RC4, RC5, PBE, MD2, MD5, RIPEMD160, SHA1, SHA224, SHA256,  SHA384, SHA512, HMAC-MD5, HMAC-RIPEMD160, HMAC-SHA1, HMAC-SHA224,  HMAC-SHA256, HMAC-SHA384, HMAC-SHA512)"
    "Information","main","06/27/11","08:49:04",,"Starting security..."
    "Information","main","06/27/11","08:49:04",,"Starting scheduler..."
    "Information","main","06/27/11","08:49:04",,"Starting WatchService..."
    "Information","main","06/27/11","08:49:04",,"Starting debugging..."
    "Information","main","06/27/11","08:49:04",,"Starting sql..."
    "Information","main","06/27/11","08:49:05",,"Pool Manager Started"
    "Information","main","06/27/11","08:49:05",,"Starting mail..."
    "Information","main","06/27/11","08:49:05",,"Starting runtime..."
    "Information","main","06/27/11","08:49:05",,"CORBA Configuration not enabled"
    "Information","main","06/27/11","08:49:05",,"Starting cron..."
    "Information","main","06/27/11","08:49:05",,"Starting registry..."
    "Information","main","06/27/11","08:49:05",,"Starting client..."
    "Information","main","06/27/11","08:49:06",,"Starting xmlrpc..."
    "Information","main","06/27/11","08:49:06",,"Starting graphing..."
    "Information","main","06/27/11","08:49:07",,"Starting verity..."
    "Information","main","06/27/11","08:49:07",,"Starting solr..."
    "Information","main","06/27/11","08:49:07",,"Starting archive..."
    "Information","main","06/27/11","08:49:07",,"Starting document..."
    "Information","main","06/27/11","08:49:07",,"Starting eventgateway..."
    "Information","main","06/27/11","08:49:07",,"Starting FlexAssembler..."
    "Information","main","06/27/11","08:49:07",,"Starting .NET..."
    "Information","main","06/27/11","08:49:07",,"Starting Monitoring..."
    "Information","main","06/27/11","08:49:07",,"ColdFusion started"
    27/06 08:49:07 user ColdFusionStartUpServlet: ColdFusion: application services are now available
    27/06 08:49:07 user CFMxmlServlet: init
    27/06 08:49:07 user CFMxmlServlet: Macromedia Flex Build: 87315.134646
    27/06 08:49:07 INFO Macromedia Flex Build: 87315.134646
    27/06 08:49:08 user CFSwfServlet: init
    27/06 08:49:08 user CFCServlet: init
    27/06 08:49:09 user FlashGateway: init
    27/06 08:49:09 user MessageBrokerServlet: init
    27/06 08:49:09 user CFFormGateway: init
    27/06 08:49:09 user CFInternalServlet: init
    27/06 08:49:09 user WSRPProducer: init
    27/06 08:49:10 user ServerCFCServlet: init
    Server coldfusion ready (startup time: 10 seconds)
    06/27 08:49:20 [Thread-15] WARN  PDFM_W19004: The system font "/Library/Fonts/Baskerville.ttc" could not be loaded.
    com.adobe.fontengine.font.InvalidFontException: Data could not be copied
          at com.adobe.fontengine.font.opentype.FontFactory$TableToLoad.load(Unknown Source)
          at com.adobe.fontengine.font.opentype.FontFactory$FontToLoad.load(Unknown Source)
          at com.adobe.fontengine.font.opentype.FontFactory$TTCToLoad.load(Unknown Source)
          at com.adobe.fontengine.font.opentype.FontFactory.load(Unknown Source)
          at com.adobe.fontengine.font.opentype.FontFactory.load(Unknown Source)
          at com.adobe.fontengine.fontmanagement.FontLoader.loadFont(Unknown Source)
          at com.adobe.fontengine.fontmanagement.FontLoader.load(Unknown Source)
          at com.adobe.internal.pdfm.util.FontSetBuilder.loadFontsPath(FontSetBuilder.java:385)
          at com.adobe.internal.pdfm.util.FontSetBuilder.loadFontsPath(FontSetBuilder.java:472)
          at com.adobe.internal.pdfm.util.FontSetBuilder.initFonts(FontSetBuilder.java:175)
          at com.adobe.internal.ddxm.Executive.initFonts(Executive.java:573)
          at coldfusion.document.DocumentServiceImpl.callAssemblerInitFonts(DocumentServiceImpl.java:1 249)
          at coldfusion.document.DocumentServiceImpl.initializeDocumentService(DocumentServiceImpl.jav a:230)
          at coldfusion.document.DocumentServiceImpl.access$000(DocumentServiceImpl.java:52)
          at coldfusion.document.DocumentServiceImpl$1.run(DocumentServiceImpl.java:180)
    27/06 08:53:14 user RDSServlet: init
    27/06 08:53:14 user RDSServlet: init
    27/06 08:53:14 user RDSServlet: init
    27/06 08:53:14 user RDSServlet: init
    27/06 08:53:14 user RDSServlet: init
    27/06 08:53:14 user RDSServlet: init
    27/06 08:53:14 user RDSServlet: init
    27/06 08:53:14 user RDSServlet: init
    27/06 08:53:14 user RDSServlet: init
    27/06 08:53:14 user RDSServlet: init
    27/06 08:53:14 user RDSServlet: init
    27/06 09:00:52 user FileServlet: init

  • Oracle.adfinternal.controller.savepoint.SavePointException: ADFC-08008: The ADF Controller is unable to insert a savepoint record for ID

    I implemented a save point in a task flow by creating a save point in a method action The following is the code from managed bean for creating the save point:
                 ControllerContext cc = ControllerContext.getInstance();
    if (cc != null) {
    SavePointManager mgr = cc.getSavePointManager();
    if (mgr != null) {
    String id = mgr.createSavePoint();
    savePointId = id;
    It worked fine in local (Integrated Weblogic server). It also worked fine initially when I deployed the changes to the DEV weblogic server. But after a couple of days, in DEV server I get the following error everytime when trying to create a save point:
    Caused By: oracle.adfinternal.controller.savepoint.SavePointException: ADFC-08008: The ADF Controller is unable to insert a savepoint record for ID '4d233555-ea0c-4bae-9f17-cc6c
    7124870f'. oracle.adfinternal.controller.savepoint.SavePointUtil.createAndLogSavePointException(SavePointUtil.java:56)
            at oracle.adfinternal.controller.savepoint.SavePointDBPersistManager.insertSavePoint(SavePointDBPersistManager.java:245)
            at oracle.adfinternal.controller.savepoint.DBSavePointManagerImpl.storeSavePoint(DBSavePointManagerImpl.java:127)
            at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.storeSavePoint(SavePointManagerImpl.java:301)
            at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.createAndStoreSavePoint(SavePointManagerImpl.java:257)
            at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.createSavePoint(SavePointManagerImpl.java:187)
            at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.createSavePoint(SavePointManagerImpl.java:116)
            at view.security.errormanagement.ManageErrorsMB.saveTaskFlow(ManageErrorsMB.java:213)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
            at java.lang.reflect.Method.invoke(Method.java:611)
            at com.sun.el.parser.AstValue.invoke(Unknown Source)
            at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
            at oracle.adf.controller.internal.util.ELInterfaceImpl.invokeMethod(ELInterfaceImpl.java:173)
            at oracle.adfinternal.controller.activity.MethodCallActivityLogic.execute(MethodCallActivityLogic.java:163)
            at oracle.adfinternal.controller.engine.ControlFlowEngine.executeActivity(ControlFlowEngine.java:1035)
            at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:926)
            at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:824)
            at oracle.adfinternal.controller.engine.ControlFlowEngine.routeFromActivity(ControlFlowEngine.java:554)
            at oracle.adfinternal.controller.engine.ControlFlowEngine.performControlFlow(ControlFlowEngine.java:158)
            at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleAdfcNavigation(NavigationHandlerImpl.java:115)
            at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:84)
            at org.apache.myfaces.trinidadinternal.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:50)
            at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:130)
            at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
            at org.apache.myfaces.trinidad.component.UIXCollection.broadcast(UIXCollection.java:157)
            at org.apache.myfaces.trinidad.component.UIXTable.broadcast(UIXTable.java:279)
            at oracle.adf.view.rich.component.UIXTable.broadcast(UIXTable.java:145)
            at oracle.adf.view.rich.component.rich.data.RichTable.broadcast(RichTable.java:479)
            at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:159)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:130)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:461)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:134)
            at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:112)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:130)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:461)
            at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:134)
            at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:106)
            at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:1129)
            at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:353)
            at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:204)
            at javax.faces.webapp.FacesServlet.service(FacesServlet.java:312)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:122)
            at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
            at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
            at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
            at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
            at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)
            at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
            at java.security.AccessController.doPrivileged(AccessController.java:284)
            at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
            at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
            at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
            at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
            at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
            at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
            at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
            at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
            at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused By: java.sql.SQLException: Connection has already been closed.
            at weblogic.jdbc.wrapper.PoolConnection.checkConnection(PoolConnection.java:58)
            at weblogic.jdbc.wrapper.Connection.preInvocationHandler(Connection.java:94)
            at weblogic.jdbc.wrapper.Connection.prepareCall(Connection.java:543)
            at oracle.adfinternal.controller.savepoint.SavePointDBPersistManager.insertSavePoint(SavePointDBPersistManager.java:221)
            at oracle.adfinternal.controller.savepoint.DBSavePointManagerImpl.storeSavePoint(DBSavePointManagerImpl.java:127)
            at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.storeSavePoint(SavePointManagerImpl.java:301)
            at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.createAndStoreSavePoint(SavePointManagerImpl.java:257)
            at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.createSavePoint(SavePointManagerImpl.java:187)
            at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.createSavePoint(SavePointManagerImpl.java:116)
            at view.security.errormanagement.ManageErrorsMB.saveTaskFlow(ManageErrorsMB.java:213)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
            at java.lang.reflect.Method.invoke(Method.java:611)
    At the bottom of the stack, this statement "Caused By: java.sql.SQLException: Connection has already been closed." intrigues me, but why this error occurs after a couple of days or after particular number of connections or access to the application.
    This same issue is also happening in all environments including PROD. Please help. JDeveloper version used is 11.1.2.1.0.

    We got the solution from Oracle support. 
    Passivation Fails With Error "Connection has already been closed" in PoolConnection.checkConnection() (Doc ID 1330271.1). Problem is caused by the WebLogic Server Connection Pool feature "Inactive Connection Timeout". When this parameter is set up, WLS will forcibly release reserved connections back into the pool. This is a problem for ADF BC that relies on keeping the JDBC connection associated to its
    Application Module instance.
    Set the "Inactive Timeout Session" to 0 (default), so that the JDBC connection stays active while
    the corresponding Application Module instance is active:
    Thanks....

  • Oracle.adf.controller.ControllerException: ADFC-00011

    We have installed a cluster with Weblogic PS3. After we startup the wohole cluster, one of the manged serevrs does not start correctly. We get:
    ####<Mar 15, 2011 12:43:01 PM CET> <Error> <HTTP> <l1-mwpsysapp03.nl.rsg> <MWPSYS-MS1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kern
    el.Default (self-tuning)'> <<WLS Kernel>> <> <f9d1a0b2e4a1ab40:-1243ffee:12eb9509536:-7ffc-0000000000000022> <1300189381875> <BEA-101020> <[S
    ervletContext@28271646[app:MetropoolWebPortalV2 module:/mwp2 path:/mwp2 spec-version:2.5]] Servlet failed with Exception
    oracle.adf.controller.ControllerException: ADFC-00011: The ADF Controller is unable to create an MDSSession. See exception for details.
    at oracle.adfinternal.controller.util.Utils.createAndLogControllerException(Utils.java:208)
    at oracle.adfinternal.controller.application.AdfcAppInitializer.checkForMds(AdfcAppInitializer.java:242)
    at oracle.adfinternal.controller.application.AdfcAppInitializer.initialize(AdfcAppInitializer.java:116)
    at oracle.adfinternal.controller.application.FacesContextFactoryImpl.getFacesContext(FacesContextFactoryImpl.java:53)
    at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl.getFacesContext(FacesContextFactoryImpl.java:64)
    at org.apache.myfaces.trinidad.webapp.ResourceServlet.service(ResourceServlet.java:157) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    We restarted everything, but this does not help. According to the Release Notes of PS3; we have restarted the Adminserver and of course this managed servers. The admin server and managed servers are installed and confiured on their on server.
    Regards,
    Marc
    http://orasoa.blogspot.com

    Apple,
    First thing I'd suggest -> try re-installing jdeveloper in a path without spaces to see if that resolves the problem.
    john

  • 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?

  • Oracle.adf.controller.ControllerException: ADFC-0618

    Hi,
    while refreshing page or on navigation from a page that contains custom task flow (message board), its showing an error
    " oracle.adf.controller.ControllerException: ADFC-0618: View ID 'oracle/webcenter/portalapp/pages/home.jspx' is invalid.
    ADF_FACES-60097:For more information, please see the server's error log for an entry beginning with: ADF_FACES-60096:Server Exception during PPR, #1 "
    Please help if any one can.
    Thanks

    Hi,
    appears it cannot find the page specified
    Frank

  • Oracle.adf.controller.faces.context.FacesPageLifecycleContext not found

    Hi all,
    I am using JDeveloper 11.1.1.0 and I am trying to do an application about security.
    I have found some references on web and I have a bean that uses this line of code:
    FacesPageLifecycleContext ctx = (FacesPageLifecycleContext)event.getLifecycleContext();
    but on the line:
    import oracle.adf.controller.faces.context.FacesPageLifecycleContext;
    the debugger tells me: "class oracle.adf.controller.faces.context.FacesPageLifecycleContext not found"
    What's the correct class to import?
    Thanks

    Hi,
    not sure what you are doing - however I am not asking ;-)
    Try import oracle.adf.controller.v2.context.LifecycleContext
    Frank

  • Unable to get RequestDispatcher for Context

    Eclipse 3.3.0
    Tomcat 6.0.16
    Java 1.5.0_13
    Mac OS X 10.5.6
    Greetings:
    I'm attempting to retrieve information cross context in my web application. I've attempted to enable cross context access by three means.
    - I've added "crossContext=true" to the <Context> element in the server.xml of the Tomcat configuration under the Servers project of my workspace.
    - I've added "crossContext=true" to the <Context> element in a META-INF/context.xml in the WebContent folder of my project.
    - I've added "crossContext=true" to the <Context> element of the context.xml file in the conf directory of the Tomcat installation directory.
    Yet despite these changes I'm still seeing "Unable to get RequestDispatcher for Context....Verify values and/or enable cross context access" in the console. What do I need to do to enable cross context access using Eclipse? Thanks for any help.
    ETA - I've had this working before. I believe that I upgraded to Tomcat 6 from Tomcat 5.5 and that's when the jstl cross context actions broke.
    ETA - I've got it working in Tomcat 6. The problem arises when I change the name of my webapplication from "foo" to ROOT inside eclipse. I want a jsp page in the ROOT web application to be able to access a servlet in the "bar" web application.
    Edited by: nantucket on May 17, 2009 2:17 PM
    Edited by: nantucket on May 17, 2009 2:26 PM

    Thanks for your reply evnafets.
    How many times do you declare your context???I know, I know... I got frustrated. :o)
    But seriously, since my post I've discovered that it is "working" but not in the manner I had expected within the IDE. That is, if I access the page at
    http://localhost:8080/ROOT/myPage.jspThen I can see the contents retrieved from the context bar. But if I use.
    http://localhost:8080/myPage.jspI can see that the page somehow has been deployed to the root context, but the error code 500 appears in place of where the content from the bar context should be.
    However, if I export war files for these two web applications and run them in Tomcat 6 outside of Eclipse, everything works as it should. So this is an eclipse issue with respect to deploying a web application to the root context. Maybe there is some configuration about that I must make somewhere.
    I hope that makes sense.
    Anyhow, the server.xml file contains the following..
    <Context crossContext="true" docBase="bar" path="/bar" reloadable="true" source="org.eclipse.jst.j2ee.server:bar"/>
       <Context crossContext="true" docBase="ROOT" path="/ROOT" reloadable="true" source="org.eclipse.jst.j2ee.server:ROOT"/>The jstl code in the jsp page accessing the context bar is the following.
    <c:import url='/helloworld?action=view' context='/bar' />

  • Need help with error on Lion Server (kernel: add_fsevent: unable to get path for vp ..)

    I have had some Xsan issues and one of my volumes kept failing. I did a complete hard reboot of the entire system after trying all the cvfsck options. Now the volume seems to be ok but I am now getting the following errors and can not figure out what they are. Any help to a new Admin would be greatly appreciated.
    5/7/12 1:59:13.000 PM kernel: add_fsevent: unabled to get a path for vp 0xb129000.  dropping the event.
    5/7/12 1:59:15.000 PM kernel: add_fsevent: unable to get path for vp 0xb12a4d0 (live.0.indexHead; ret 22; type 4)
    5/7/12 1:59:15.000 PM kernel: add_fsevent: unabled to get a path for vp 0xb12a4d0.  dropping the event.
    5/7/12 1:59:15.000 PM kernel: add_fsevent: unable to get path for vp 0xb129de0 (live.1.indexHead; ret 22; type 4)
    5/7/12 1:59:15.000 PM kernel: add_fsevent: unabled to get a path for vp 0xb129de0.  dropping the event.
    5/7/12 1:59:15.000 PM kernel: add_fsevent: unable to get path for vp 0xe3964d0 (live.2.indexHead; ret 22; type 4)
    5/7/12 1:59:15.000 PM kernel: add_fsevent: unabled to get a path for vp 0xe3964d0.  dropping the event.
    5/7/12 2:01:22.024 PM mdworker32: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    5/7/12 2:01:22.525 PM com.apple.mdworker.pool.0: PSSniffer error: Invalid argument
    5/7/12 2:01:24.697 PM mdworker: FontImporter: Validation failed - "/Volumes/Matilda/Dexter/Randy project - Burke update/James E Burke Awards video revision/Past Video files/ETH742/tricyclestudios (After FX) Jeremy/Assets/FUTURA_4.TTF".
    5/7/12 2:01:24.697 PM mdworker: FontImporter: Validation Result - "(
        kATSFontTestSeverityFatalError
    Then I got a few more of the errors like the top lines.
    Please help!!
    Thanks,
    Kevin Rosenthal

    Turns out there were disk issues that I repaired by rebooting into Lion Recovery Mode (restart, hold Command-R during startup) and running Disk Utility. Disk Utility reported:
    Volume bitmap needs minor repair for orphaned blocks
    Invalid volume free block count
    It fixed both problems and the drive then verified clean.
    While I was there, I also repaired permissions, though I doubt that the permission oddities were the cause of the errors.
    After rebooting into normal Lion, two things happend:
    Time Machine quite happily went back to work and took a backup, no issue. Several hourlies have run since then, no problems.
    Spotlight did some re-indexing. This caused some hangs (spinning beachballs) at first, but it self-cleared. It definitely didn't last long enough to re-index the entire drive; I'm guessing that it needed to re-index some of the repaired sections.
    So far as I know, no files were corrupted -- but the drive is about 80% free space, so odds are that the orphaned blocks were not in a critical area.

  • Already activated iPhone 5 iOS 7.0.2 asks for activation - Unable to activate. now what?

    So, my phone has not been used in 14 days now, cus my charger stopped working wich it shouldnt, I guess?
    Anyways, thats not the point. When I finally got a new charger in the mail, I plugged my phone and powered it on.
    Now it asks for activation. Im like; okay, didnt i do this twice already?
    anyway, I tried to activate, both with wifi, and mobile network.
    No success.
    I even tried activation through iTunes.
    NO ******* SUCCESS.
    How come my device suddenly not work, while being untouched, out of power and completely unable to turn it on?
    Someone help me out, I really want to be able to use my phone, and this situation costs me alot of money, while im unable to answere my phone.

    Hi mt.ahsan!
    I have a website for you that can help you find that Apple ID, then you can reset the password for it if necessary:
    Apple ID: How to find your Apple ID
    http://support.apple.com/kb/HT5625
    Thanks for using the Apple Support Communities!
    Cheers,
    Braden

  • Currently working on OpenSPARC. Unable to get ModelSim for working on Linux

    We are working on OpenSPARC. We need to get ModelSim to compile the code in Verilog. We are unable to get ModelSim to work on Fedora Linux Version 9, as ModelSim only works on Windows.Is there a way to get Modelsim for Fedora Linux version 9.
    Regards,
    K.Pradheep Kumar
    19.08.08

    They have a Modelsim LE version for Linux. Check this out:
    http://www.model.com/products/default.asp

  • Client unable to get the javax.activation.DataHandler object from Server

    Hi All,
    I am trying to download the file from the server to the client using Javax.Activation.Data Handler object with IBM web services. But server always returning the Data Handler object is null. I am wondering why it is behaving like this.
    My requirement is add the file to the Data Handler object from the server and read the same from the client. But I am always getting Data Handler object is  null at the client place.
    Please see the client side code and server side code below.
    Server side Code:
    This is the simple web service method, its creating the Data Handler object and adding it to the Hash Map and returning the Hash Map object to the client.
    public Hashtable download()
              DataHandler dh = null;
              HashMap hashMap =new HashMap();
              try{
                   //Sample test files contains data
                   String downLoadFName="C:/ADP/downLoadData.txt";
                   //Creating the DataHandler Object with sample file
                   dh      =      new DataHandler(new FileDataSource(new File(downLoadFName)));
                   //Keeping the DataHandler object in the HashMap.
                   hashMap.put("DATAHANDLER",dh);
                   //keeping the sample test message object in the HashMap
                   hashMap.put("TEST","Keeping the DataHandler and test messages in the hashTable");                         
              }catch(Exception e){
                   logger.error("Error :while sending the data:"+e.getMessage(), e);
              //retrun the HashMap object to the client.
              return hashMap;
    Client Side Code:
    This is the simple client code, and connecting to the server and invoking the web service method
    //This is the client code,Just invoking the webservice method from the Webspehre server.
    public class WebserviceClient {
         static DocumentTransfer controller     =     null;
         public static void main(String args[]){     
                DocumentTransferService service          =     null;
              try{
                   //Creating the service Object
                   service               =     new DocumentTransferServiceLocator();
                   //Getting the Server connection
                    controller          =      (DocumentTransfer)service.getDocumentTransfer(new java.net.URL("http://localhost:9081/eNetsRuntimeEngine/services/DocumentTransfer"));
                    //Calling the download method from the server and it returns HashMap object.
                   HashMap hashMap     = controller.download();
                   //Getting the DataHandler Object from the HashMap
                    DataHandler dh=(DataHandler)hashMap.get("DATAHANDLER");
                   System.out.println("DATAHANDLER: :"+dh);
                   //Getting the String object from the HashMap.
                   String message=(String)hashMap.get("TEST");
                   System.out.println(": :"+message);
               }catch(Exception e){
                    System.out.println("Exception :Not able to get the file :"+e.getMessage());
    Could you please give me some inputs on this?
    Thanks in advance,
    Sreeni.

    Hi Stif,
    Thanks for your response.I did debug from server side,it has printing content of Data Handler properly.
    Also i have debug request and response messages using TCP/IP monitor(RAD environment has this feature).The response from the server is going proplery.
    But the client side Data Handler is coming null.
    Any advice or solution would be greatly appreciated.
    Thanks,
    Sreeni.

  • Unable to get cells for the columns which have no data in cross-tab report

    Hi friends,
    I am developing a cross-tab report.
    Let's take an example to explain the problem.
    Here is the XML file i am using
      <?xml version="1.0" ?>
    - <!--  Generated by Oracle Reports version 6.0.8.11.3
      -->
    - <MODULE1>
    - <LIST_G_SCHEMECODE>
    - <G_SCHEMECODE>
      <SCHEMECODE>171091</SCHEMECODE>
      <AMOUNT>0</AMOUNT>
      <ASSET_TYPE>Govt Guarantee</ASSET_TYPE>
      <MARGIN>0</MARGIN>
      <AMOUNT_SECURED>0</AMOUNT_SECURED>
      <VALUE_OF_SECURITY>0</VALUE_OF_SECURITY>
      </G_SCHEMECODE>
    - <G_SCHEMECODE>
      <SCHEMECODE>171091</SCHEMECODE>
      <AMOUNT>0</AMOUNT>
      <ASSET_TYPE>Loans To Govt</ASSET_TYPE>
      <MARGIN>0</MARGIN>
      <AMOUNT_SECURED>0</AMOUNT_SECURED>
      <VALUE_OF_SECURITY>0</VALUE_OF_SECURITY>
      </G_SCHEMECODE>
    - <G_SCHEMECODE>
      <SCHEMECODE>171093</SCHEMECODE>
      <AMOUNT>0</AMOUNT>
      <ASSET_TYPE>Govt Guarantee</ASSET_TYPE>
      <MARGIN>120</MARGIN>
      <AMOUNT_SECURED>0</AMOUNT_SECURED>
      <VALUE_OF_SECURITY>0</VALUE_OF_SECURITY>
      </G_SCHEMECODE>
    - <G_SCHEMECODE>
      <SCHEMECODE>171093</SCHEMECODE>
      <AMOUNT>0</AMOUNT>
      <ASSET_TYPE>Loans To Govt</ASSET_TYPE>
      <MARGIN>0</MARGIN>
      <AMOUNT_SECURED>0</AMOUNT_SECURED>
      <VALUE_OF_SECURITY>0</VALUE_OF_SECURITY>
      </G_SCHEMECODE>
    - <G_SCHEMECODE>
      <SCHEMECODE>*171095*</SCHEMECODE>
      <AMOUNT>0</AMOUNT>
      <ASSET_TYPE>Govt Guarantee</ASSET_TYPE>
      <MARGIN>100</MARGIN>
      <AMOUNT_SECURED>0</AMOUNT_SECURED>
      <VALUE_OF_SECURITY>0</VALUE_OF_SECURITY>
      </G_SCHEMECODE>
      </LIST_G_SCHEMECODE>
      </MODULE1>Now I want SCHEMECODE in rows and ASSET_TYPE in columns.
    And the each ASSET_TYPE column is to be divided into 2 sub-columns (MARGIN,AMOUNT_SECURED).
    I am able to achevie this.
    The problem is that ,for the schemecode 171095, since there is no data for ASSET_TYPE "Loans To Govt",no cells are generated for this SCHEMECODE and ASSET TYPE.
    But the requirement is to generate blank cells.
    If needed i will send the template at xml files also.

    try this, there must be simpler one i guess...
    1. take a form field, and make its type as number. Paste the below one <?xdoxslt:set_variable($_XDOCTX,'v1',2)?>
    2. now take a table with as below,
    A l B |
    C l D1 l D2 l E1 l E2 l
    observe that i. A, C are in one column
    ii. cell B is on top of D1, D2
    iii. we have no cell on top of E1 and E2 cells
    iv. 'l' represents the wall of the cell :)
    A: <?horizontal-break-table:1?> SCHEMECODE
    B: <?for-each-group@column:G_SCHEMECODE;ASSET_TYPE?> <?ASSET_TYPE?> <?end for-each?>
    C: <?for-each-group:G_SCHEMECODE;SCHEMECODE?> <?xdoxslt:set_variable($_XDOCTX,'v1',2)?> <?SCHEMECODE?>
    D1: <?for-each-group@cell:current-group();ASSET_TYPE?> <?MARGIN?> <?xdoxslt:set_variable($_XDOCTX,'v1',xdoxslt:get_variable($_XDOCTX,'v1')-1)?>
    D2: <?AMOUNT_SECURED?> <?end for-each?> <?end for-each?>
    E1: <?for-each@column:xdoxslt:foreach_number($_XDOCTX,1,xdoxslt:get_variable($_XDOCTX,'v1'),1)?>
    E2: <?END FOR-EACH?>
    3. If you are confused gimme your email id, i will pass the template. But you should add credits to me.. :)

  • PI 7.1 Ent Svc Builder - Unable to Upload Metadata for SeeBurger

    I arttempt to follow the SeeBurger instructions to upload metadata into PI, but when I try I get the following error. 
    Software component SEEBURGER_EDI_ADAPTER 7.1 of seeburger cannot be changed. You are not permitted to create new objects.
    Right-Click on Namespace, New -> Adapter Objects -> Adapter Metadata -> Name =Split997 -> click create button (and the error above is displayed).
    I am able to do this successfully in PI 7.0 with the same authorizations.
    What am I missing?

    Hi John,
    My two cents are:
    Please check the version of the seeburger adapter , the version 1.8 is for XI 3.0 and 7.0 whereas for PI 7.1 seeburger has launched a suite of version 2.0 adapters.
    This is the reason why you can import content into old version of Xi and not in the new one.
    Regards
    joel

  • Unable to edit metadata for some files, Bridge CS6

    I am editing metadata for .wav files, and somehow a few of them have become locked for editing. I have checked the properties for these files and still have full permissions for all users.
    As you can see in the screen capture below, the pencil icons you click to edit the metadata are gone and an error message comes up. Thanks for any help you can give!

    Wow, I just answered my own question...
    After an hour trying to figure this out, I decided to just go ahead and edit the images, but "Edit in Camera Raw" was not an option.  So, I went to Tools \ Cache \ Purge Cache for Folder "xxx"
    Problem solved.

Maybe you are looking for

  • Why photos look warmer in Safari??

    Hi everyone, I am using CS3 on my 2006 white iMac to edit my photos. I adjust the colour temperature of my photos so that they look natural in CS3. However, after posting them on Flickr, they looks much warmer on Safari. If I use FireFox (instead of

  • Can I use any Class in a Use Bean Tag of a JSP

    I have tried to modify the existing EditForm.java file and created a new Class File which changes the presentation(render method)in the Edit Form. can I use the new class as a Bean in the use bean tag of a JSP.

  • Uninstall/Install Query

    Hello, How do we uninstall any application or software ? Where does it gets stored on installation? Regards

  • Getting Error ORA-06550

    I am created a web service on top of complex type PL/SQL API, I am trying to test the service by passing all the parameters, but I am running into the following errorr i have checked all the APIS are valid only <?xml version="1.0" encoding="UTF-8"?>

  • Pages long date has changed

    I invoke Command Shift 5 ALL the time to input the long date and time.  Before the update either to Pages or Lion I would get this format: Sunday, July 24, 11 2011:20:42 PM Now I get this: Sunday, July 24, 11 11:20:53 PM Notice it's missing the 20 be