Integrating sonar with jdeveloper

Any idea that how sonar can be integrated with jdeveloper ?Is there any seperate sonar plugin available for jdeveloper?If anybody done this earlier,please tell me procedures about it.Thanks in advance

There is no jdev plugin for sonar. However, you can easily use sonar as external tool and even can add it to an ant build file.
That's not as tidily  integrated as it can be, but it works.
Check out Oracle Team Productivity Center</title> //<title>AMIS Technology Blog » Oracle Team Productivit…
or https://groups.google.com/forum/#!topic/adf-methodology/FRmfWnzk_0g for more info.
Timo

Similar Messages

  • Integrating FTP with JDeveloper

    Can anyone help me with integrating FTP with JDeveloper (10.1.3)
    I am developing jsp pages for a web site. the website runs on a Sun Solaris UNIX server.
    At present i develop my jsp pages in JDeveloper and save then to a file on my PC. I then have to use an external tool (Ultraedit) to FTP them to my webserver for testing.
    I have seen in this forum that there is something called 'ant' which will allow you to FTP direct from JDeveloper. I know zero about 'ant' and after spending a couple of hours trawling arround the web i'm still no wiser.
    Can someone give me a hands held, idiot friendly explanation of what i have to do to integrate FTP?
    john

    Here is a basic explanation of the FTP task in ANT.
    You can just create a new Ant build file in your project, add this task with the correct parameters and then right-click run on the build file.
    Another options is to use JDeveloper to create standard WAR file for deployment and then passing it to the server to deploy.

  • Integrating StarTeam with Jdeveloper 9i R3

    Hi
    Is there a possibility to integrate StarTeam with JDeveloper 9i Release 3 ?
    Graf Laszlo
    [email protected]

    We provide the API used internally by the SCM framework to the public with JDeveloper, however StarTeam isn't currently on the radar for us to include support for.
    Rob

  • Issue with integrating subversion with Jdeveloper 11g (11.1.1.4)

    Hi.
    I have been trying to set-up subversion in Jdeveloper 11g (11.1.1.4) however i keep on getting a authenication error see below
    The Url i am using is https://[servername]/svnrepo/department-repo/Projects/Project1
    Testing read access for repository https://[servername]/svnrepo/department-repo/Projects/Project1...
    svn: authentication failed. Please check your username and password.
    svn: authentication failed. Please check your username and password.
    Access refused.
    I can access the svn repository via TortoiseSVN using the same credentials successfully.
    Does anyone know why entering in the same details in Jdev causing this issue and how i can overcome the problem?
    Thanks

    There have been a couple of issues with using tortoise and jdev together.
    Search the forum for "+tortoise +svn" and select 'LastYear' to get older results. I bet you find your problem.
    Timo

  • Integration with JDeveloper?

    Hello,
    My team is evaluating the possibility of using ODI in one of our projects, but at first sight it shows that this is not a product that Oracle developed from scratch (which doesn't mean it's bad!). My only concern is that the terminology (and the UI in general) does not seem to be very intuitive for an Oracle developer, which might not help to reduce the learning curve.
    Do you know if there are any plans for integrating ODI with JDeveloper?
    Thanks!
    Pablo

    There should be more chances to find in the future ODI in Oracle JDev than in Eclipse.
    -FX

  • Spring framework with JDeveloper

    Hi,
    I'm developing to an application using JDeveloper. I need to use Spring framework, somebody has used it, integrating it with JDeveloper ?
    Thanks

    Hello,
    How do you use ADF with Spring in a JSF application? I am trying and it seems like my ADF filter and JSf-Spring integration filter conflict with each other. Here the stanzas from my web.xml file. Ther ADF Internal listener fails with a null ptr or a java.lang.ArrayIndexOutOfBoundsException when I attempt to access my JSF page (no ADF tags are in this page but it does use Spring/JSF managed beans). If I remove the ADF filter and retry everything works???
    <!-- Runtime exception -->
    java.lang.ArrayIndexOutOfBoundsException: 3
         javax.faces.component.UICommand.restoreState(UICommand.java:268)
         javax.faces.component.html.HtmlCommandButton.restoreState(HtmlCommandButton.java:826)
         javax.faces.component.UIComponentBase.processRestoreState(UIComponentBase.java:999)
         javax.faces.component.UIComponentBase.processRestoreState(UIComponentBase.java:1011)
         javax.faces.component.UIComponentBase.processRestoreState(UIComponentBase.java:1011)
         javax.faces.component.UIComponentBase.processRestoreState(UIComponentBase.java:1011)
         oracle.adfinternal.view.faces.application.StateManagerImpl.restoreView(StateManagerImpl.java:249)
         com.sun.faces.application.ViewHandlerImpl.restoreView(ViewHandlerImpl.java:246)
         oracle.adfinternal.view.faces.application.ViewHandlerImpl.restoreView(ViewHandlerImpl.java:192)
         com.sun.faces.lifecycle.RestoreViewPhase.execute(RestoreViewPhase.java:157)
         com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
         com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
         oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:264)
         oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:151)
         oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:123)
         de.mindmatters.faces.spring.RequestHandledFilter.doFilter(RequestHandledFilter.java:117)
    <!-- Faces Filter -->
    <filter>
    <filter-name>faces</filter-name>
    <filter-class>oracle.adfinternal.view.faces.webapp.FacesFilter</filter-class>
    <init-param>
    <param-name>faces-servlet-url-pattern</param-name>
    <param-value>/faces/*</param-value>
    </init-param>
    </filter>
    <filter>
    <filter-name>adfFaces</filter-name>
    <filter-class>oracle.adf.view.faces.webapp.AdfFacesFilter</filter-class>
    </filter>
    <filter>
    <filter-name>RequestHandled</filter-name>
    <filter-class>de.mindmatters.faces.spring.RequestHandledFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>RequestHandled</filter-name>
    <url-pattern>/faces/*</url-pattern>
    </filter-mapping>
    <!-- Faces Filter Mappings -->
    <filter-mapping>
    <filter-name>faces</filter-name>
    <url-pattern>*.jspx</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfFaces</filter-name>
    <servlet-name>faces</servlet-name>
    </filter-mapping>
    <listener>
         <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

  • Is it possible to use SOA Suite 11g with JDeveloper's integrated WebLogic?

    Is it possible to use SOA Suite 11g with JDeveloper's integrated WebLogic? Or do you have to install an external WebLogic?
    Thanks for help.
    Edited by: user7722720 on 07-Dec-2011 02:04

    Hi
    By default, NO it is NOT possible to deploy any SOA Applications on Integrated Weblogic Server that comes with JDeveloper. This integrated weblogic server is very light weight basic weblogic server with single domain (only 1 AdminServer) to deploy a standard J2EE, ADF Applications like EJBs, WebApps, WebServices, ADF Apps etc. BUT SOA (having BPEL, BPMs etc ) cannot be deployed.
    There is an option to upgrade this integrated weblogic server and install SOA on top of this. Like download soa installer that matches with your JDeveloper version and install soa on top of this weblogic. BUT I strongly do not recommend this, because you will not be able to upgrade iin future to the latest versions.
    Yes, its always better to install the standalone Weblogic Server that matches with your JDeveloper version. Then install SOA on top of this Weblogic Server. Then create RCU Schemas in any Oracle Database. Run config wizard and create a SOA Domain. Now integrate this in your JDeveloper to deploy any soa applications.
    Make sure that JDeveloper, Weblogic Server, SOA Software, RCU all these versions should match and they should be same.
    Thanks
    Ravi Jegga

  • Issue in rendering the characters in pdf after integrating with jdeveloper

    hi all,
    i have a strange problem, i have get the jar files of the bi publisher and integrated it with the jdeveloper 11g and it's workin great in viewing reports in all format except the pdf format because we are working on a project in the middle east so we need to render arabic letters, the arabic letters rendered correctly on all formats except in pdf it renders "????? ??? " only question marks, but the strange issue that when we are using the bi publisher desktop and preview the reports in pdf format it renders correctly so we don't know what's wrong right now.... any idea
    hope for help, our customer will kick our ass if we don't do this arabic reports
    thanx

    Hi
    I am also having the same issue, could you please let me know how to display arabic characters properly in pdf. I am using the following java code to generate the PDF using xml publisher java API..
    try { // Convert RTF to XSL-FO
                   InputStream rtfInputStream = new FileInputStream(
                             "C:\\ebpp\\template\\BillTemplate.rtf");
                   RTFProcessor rtfProcessor = new RTFProcessor(rtfInputStream); // input
                   // template
                   rtfProcessor.setOutput("C:\\ebpp\\xsl\\XslBillTemplate.xsl"); // output
                   // file
                   rtfProcessor.process();
                   // Create XSL-FO objects for multiple XML input streams
                   InputStream[] in = new InputStream[1];
                   InputStream xmlInputStream = new FileInputStream(
                             "C:\\ebpp\\xml\\192359_B1-533.xml");
                   Reader xmlReader = new InputStreamReader(xmlInputStream, "UTF-8");
                   InputStream xslInputStream = new FileInputStream(
                             "C:\\ebpp\\xsl\\XslBillTemplate.xsl");
                   Reader xslReader = new InputStreamReader(xslInputStream, "UTF-8");
                   InputStream fFOStream = FOUtility.createFO(xmlReader, xslReader);
                   Array.set(in, 0, fFOStream);
                   // FOUtility.createFO
                   // FileInputStream
                   // Generate the merged FO
                   InputStream mergedFOStream = FOUtility.mergeFOs(in, null);
                   Reader mergedReader = new InputStreamReader(mergedFOStream, "UTF-8");
                   if (mergedFOStream == null) {
                        System.out.println("Merge failed.");
                   // Create FO Processor
                   FOProcessor processor = new FOProcessor();
                   processor.setData(mergedReader);
                   processor.setTemplate((String) null);
                   // FORMAT_EXCEL , FORMAT_HTML, FORMAT_RTF , FORMAT_PDF
                   // Set the format
                   processor.setOutput("C:\\ebpp\\pdf\\192359_B1-533.pdf");
                   processor.setOutputFormat(FOProcessor.FORMAT_PDF);
                   processor.generate();
              } catch (XDOException xe) {
                   System.out.println(" XDOException " + xe.getMessage());
              } catch (Exception e) {
                   System.out.println(" Exception " + e.getMessage());
    Please reply me back ..

  • RCFaces integration with JDeveloper?

    Hi gang
    Before I go nuts trying to get this to work, has anybody successfully installed and used RCFaces components with JDeveloper 10.1.3.1 ADF Faces components?
    Regards,
    CM.

    Hi Frank
    Errors appear to be in JDev 10.1.3.1. I'm playing with a list of 3rd party JSF vendor component sets looking for a more "Windows" like multi-level menu component that can be populated from a backing bean as my customers don't want the BLAF <af:page> component.
    I'm having a fair amount of trouble across the board in loading and running with the 3rd party component sets in JDev. I'm able to embed the components in the JSF source with JDev correctly showing the list of components in the Components Palette (though this is flaky and doesn't always show), and the attributes of the components in the Property Palette.
    On compiling the JSF page with the 3rd party vendor's components I often receive error messages similar to the following (this example using Exadel's components):
    Error: Unable to instantiate tag: vcp:panel (class: com.exadel.vcp.taglib.PanelTag) Make sure that the tag class is available and that the tag library containing the class is not excluded from this application.
    Error: Unable to find class for bean: null defined by tag with class: com.exadel.vcp.taglib.PanelTag
    For the record I have configured my web.xml file as detailed by the Exadel install instructions.
    I'm no expert on JAR files and tag libraries, but the majority of JSF component vendors have released a single JAR of components for the likes of Sun's Studio Creator, Eclipse etc, so I would be expecting the JAR & components to integrate easily into JDev too without throwing the above errors.
    Also configuring 3rd party libraries via JDev's managed library facility appears to choke in number of places similar to this forum post:
    problem with adding Sun JSF RI v1.2 as a new library in JDeveloper 10.1.3.1
    With RCFaces components embedded in the JSF page, after restarting JDev, I've had JDev internally throw exceptions such as:
    java.lang.NullPointerException
    at oracle.bali.xml.model.XmlContext._initializeViewIfNecessary(XmlContext.java:1871)
    at oracle.bali.xml.model.XmlContext.getView(XmlContext.java:844)
    at oracle.bali.xml.gui.GuiXmlContext.getGui(GuiXmlContext.java:154)
    at oracle.bali.xml.gui.GuiXmlContextUtils.getGui(GuiXmlContextUtils.java:22)
    ...and so on...
    If I remove the RCFaces component, the errors go away. In this case I'd expect JDeveloper to show a graceful error message, not the exception. However you are right, the RCFaces documentation leaves something to be desired.
    Hope this helps. Let me know if you'd like more info.
    Regards,
    CM.

  • Integration - SOA suite with jdeveloper

    Hello!
    Iam totally new user with oracle products. I have only used oracle database but this was very little.
    Iam still a student and professor told me that i need to use SOA suite and jdeveloper, to make a bussiness process.
    I have d/l oracle SOA suite 10.1.3.1 and Jdeveloper 10.1.3.3.0. Now i would like to start but i dont know how to.
    I have installed soa suite and unziped jdeveloper in to the same directory.
    10.1.3.1
    |->jdevstudio10133
    |->OracleAS_1
    When i run jdeveloper i can not make new BPEL project (options to make new file is disabled). How can i integrate oracle soa suite with jdeveloper?

    Learn About All Things SOA:: SOA India 2007:: IISc, Bangalore (Nov 21-23)
    Aligning IT systems to business needs and improving service levels within the constraints of tight budgets has for long been the topmost challenge for CIOs and IT decision makers. Service-oriented Architecture (SOA) provides a proven strategy to clearly address both of these objectives. Creating more agile information systems and making better use of existing infrastructure are two leading factors that are boosting SOA adoption across large, medium, and small Indian industries from the BFSI, Retail, Telecom, Manufacturing, Pharma, Energy, Government and Services verticals in India. If you are an IT decision maker belonging to any of these verticals, SOA India 2007 (IISc, Bangalore, Nov 21-23 2007) presents a unique opportunity to gather cutting-edge business and technical insights on SOA and other related areas such as BPM, BPEL, Enterprise 2.0, SaaS, MDM, Open Source, and more.
    At SOA India 2007, acclaimed SOA analysts, visionaries, and industry speakers from across the world will show you how to keep pace with change and elevate your IT infrastructure to meet competition and scale effectively. The organisers are giving away 100 FREE tickets worth INR 5000 each to the first 100 qualified delegates belonging to the CxO/IT Decision Maker/Senior IT Management profile, so hurry to grab this opportunity to learn about all things SOA. You can send your complete details, including your designation, e-mail ID, and postal address directly to Anirban Karmakar at [email protected] to enrol in this promotion that is open until 12 October 2007.
    SOA India 2007 will also feature two half-day workshops on SOA Governance (by Keith Harrison-Broninski) and SOA Architecture Deep Dive (by Jason Bloomberg). If you are an IT manager, software architect, project leader, network & infrastructure specialist, or a software developer, looking for the latest information, trends, best practices, products and solutions available for building and deploying successful SOA implementations, SOA India 2007’s technical track offers you immense opportunities.
    Speakers at SOA India include:
    •     Jason Bloomberg, Senior Analyst & Managing Partner, ZapThink LLC
    •     Keith Harrison-Broninski, Independent consultant, writer, researcher, HumanEdJ
    •     John Crupi, CTO, JackBe Corporation
    •     Sandy Kemsley, Independent BPM Analyst, column2.com
    •     Prasanna Krishna, SOA Lab Director, THBS
    •     Miko Matsumara, VP & Deputy CTO, SoftwareAG
    •     Atul Patel, Head MDM Business, SAP Asia Pacifc & Japan
    •     Anil Sharma, Staff Engineer, BEA Systems
    •     Coach Wei, Chairman & CTO, Nexaweb
    •     Chaitanya Sharma, Director EDM, Fair Isaac Corporation
    A partial list of the sessions at SOA India 2007 include:
    •     EAI to SOA: Radical Change or Logical Evolution?
    •     BPEL: Strengths, Limitations & Future!
    •     MDM: Jumpstart Your SOA Journey
    •     Governance, Quality, and Management: The Three Pillars of SOA Implementations
    •     Building the Business Case for SOA
    •     Avoiding SOA Pitfalls
    •     SOA Governance and Human Interaction Management
    •     Business Intelligence, BPM, and SOA Handshake
    •     Enterprise 2.0: Social Impact of Web 2.0 Inside Organizations
    •     Web 2.0 and SOA – Friends or Foe?
    •     Achieving Decision Yield across the SOA-based Enterprise
    •     Governance from day one
    •     Demystifying Enterprise Mashups
    •     Perfecting the Approach to Enterprise SOA
    •     How to Build Cost Effective SOA. “Made in India” Really Works!
    For more information, log on to http://www.soaindia2007.com/.

  • Web services with JDeveloper - serialization error

    Dear all,
    I have an issue with web services created with JDeveloper 10.1.3.2.0.
    Namely, this is what I do:
    1. I've created some TopLink classes from tables; one of this classes is called Task (and it's located in a package called "integration")
    2. I've created another class, called Integration, where I use these TopLink classes; in this new class I have a method called getTasksStatus, which returns an ArrayList containing Task objects
    3. I've created a web service from this class (Integration) by right-clicking on the class name in Applications Navigator and choosing Create J2EE Web Service.
    When I call the method getTasksStatus from the test web service (endpoint),
    I get this error:
    Oct 8, 2007 7:14:30 PM oracle.webservices.service
    SEVERE: serialization error: no serializer is registered for (class integration.Task, null) serialization error: no serializer is registered for (class integration.Task, null)
    When I call a method which returns a primitive type, everything is fine.
    I understand the problem, but I don't know a solution yet. Could you please help ?
    Thank you,
    Best regards,
    Sorin

    One solution to this problem is to make sure that the complex type you are using in yous service interface do implement the JAVA Bean as per the spec (at least Oracle's interpretation of it).
    You need to have getter/setter for all members and you need to have an empty ctor() to create new instances of your objects. In some cases, the design time let you get by, but the runtime fails in the code generation.
    In your case, the 'Task' class may have some issue.
    Hope it helps,
    -eric

  • FOD schema installation with tutorial Database Development with JDeveloper

    I followed the instruction online at http://www.oracle.com/technetwork/developer-tools/jdev/index-095536.html to install FOD schema. Errors displayed when call "run ant target -> buildall" were below:
    populateImages:
    [java] 2010-9-26 14:56:01 oracle.as.jmx.framework.LoggerHelper log
    [java] SEVERE: Error initializing the JMX FRamework SPI "oracle.as.jmx.framework.standardmbeans.spi.JMXFrameworkProviderImpl"
    [java] java.lang.reflect.InvocationTargetException
    [java]      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [java]      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [java]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [java]      at java.lang.reflect.Method.invoke(Method.java:597)
    [java]      at oracle.as.jmx.framework.PortableMBeanFactory.initializeSPI(PortableMBeanFactory.java:1895)
    [java]      at oracle.as.jmx.framework.PortableMBeanFactory.initializePlatformSPI(PortableMBeanFactory.java:1851)
    [java]      at oracle.as.jmx.framework.PortableMBeanFactory.init(PortableMBeanFactory.java:1831)
    [java]      at oracle.as.jmx.framework.PortableMBeanFactory.<init>(PortableMBeanFactory.java:207)
    [java]      at oracle.as.jmx.framework.PortableMBeanFactory.<init>(PortableMBeanFactory.java:215)
    [java]      at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    [java]      at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    [java]      at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    [java]      at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    [java]      at java.lang.Class.newInstance0(Class.java:355)
    [java]      at java.lang.Class.newInstance(Class.java:308)
    [java]      at oracle.mds.core.MDSInstance.lookupMBeanServer(MDSInstance.java:2061)
    [java]      at oracle.mds.core.MDSInstance.checkMDSDeployStatus(MDSInstance.java:950)
    [java]      at oracle.mds.core.MDSInstance.<init>(MDSInstance.java:1692)
    [java]      at oracle.mds.core.MDSInstance.<init>(MDSInstance.java:1666)
    [java]      at oracle.mds.core.MDSInstance.findAndStoreMDSInstance(MDSInstance.java:1962)
    [java]      at oracle.mds.core.MDSInstance.getOrCreateInstance(MDSInstance.java:507)
    [java]      at oracle.mds.core.MDSInstance.getOrCreateInstance(MDSInstance.java:470)
    [java]      at oracle.adf.share.config.ADFMDSConfig.getDefaultMDSInstance(ADFMDSConfig.java:436)
    [java]      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [java]      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    But still got message - "BUILD SUCCESSFUL" at the end. Does anyone know how to solve this problem?
    My intention of performing FOD schema installation was to follow the tutorial "Database Development with JDeveloper" at http://st-curriculum.oracle.com/obe/jdev/obe11jdev/ps1/databasedevelopment/obe_%20databasedevmt.htm. But I stopped at the last topic "Creating and Debugging PL/SQL Objects in the Database" ->"Running a SQL Script to Create an Object Type" when trying to create a object using script on the page.
    This is the script:
    ------------------------------------------------start
    REM
    REM Create object ORDER_ITEMS_REC
    REM
    CREATE or REPLACE type ORDER_ITEMS_REC as object
    ORDER_ID NUMBER(15),
    LINE_ITEM_ID NUMBER(3),
    PRODUCT_ID NUMBER(15),
    QUANTITY NUMBER(6),
    UNIT_PRICE NUMBER(8,2),
    CREATED_BY VARCHAR2(60),
    CREATION_DATE DATE,
    LAST_UPDATED_BY VARCHAR2(60),
    LAST_UPDATE_DATE DATE,
    OBJECT_VERSION_ID NUMBER(15)
    show errors;
    --------------------------------------------------end
    and the error message I got was
    ------------------------------------------------start
    Error report:
    ORA-01031: insufficient privileges
    01031. 00000 - "insufficient privileges"
    ------------------------------------------------end
    I was wandering whether the error of FOD installation could cause the error of the tutorial?
    Any response will be appreciated.

    1. you dont have to insall Oracle database at the BO machine side, you just need any database to hold the BO repository.
    2. you cant connect directly using BO, only Crystal reports can connect directly to R3 database, you need to have a BW in between.
    extract your data into the BW, and let BO connect to BW using the BO integration kit for SAP solutions.
    3. no you dont have to have 3 different machines, using one BO machine you connect to them all, but you may need build a  BO environment, (Development, Production servers)
    good luck

  • Stability problem with Jdeveloper while working with BPM studio

    I am frequently facing this problem while working with Jdeveloper. I get the  message " an unexpected error has occurred in Jdevloper . Jdevloper memory setting in my case is 1000MB.  Any Any solution for this issue?
    Here is the details of error
    oracle.integration.platform.blocks:Nov 01, 2013 11:37:17 AM oracle.integration.platform.blocks.FabricConfigManager <clinit>
    WARNING: JRF is unable to determine the current application server platform.
    oracle.integration.platform.blocks:Nov 01, 2013 11:37:17 AM oracle.integration.platform.blocks.WLSPlatformConfigurationProvider <clinit>
    WARNING: JRF is unable to determine the current application server platform.
    Invoking command: Changes in technical Exception See enterprise manager for details
    Invoking command: Add Activity
    Invoking command:
    Invoking command:
    Invoking command: Changes in technical Exception See enterprise manager for details
    Invoking command:
    Invoking command:
    Invoking command: Changes in technical Exception See enterprise manager for details
    Invoking command:
    Invoking command:
    Invoking command: Changes in Start2
    Invoking command:
    Invoking command:
    Invoking command: Remove
    Invoking command:
    Invoking command:
    Performing action Business Exception[ from oracle.bpm.fusion.studio.navigator.ProjectNavigatorWindow ]
    Performing action Export[ from oracle.bpm.fusion.studio.navigator.ProjectNavigatorWindow ]
    Performing action Export[ from oracle.bpm.fusion.studio.navigator.ProjectNavigatorWindow ]
    Performing action Open Application...[ from oracle.bpm.fusion.studio.navigator.ProjectNavigatorWindow ]
    Performing action Open...[ from oracle.bpm.fusion.studio.navigator.ProjectNavigatorWindow ]
    Invoking command: delete_namespace_from_adfconfig
    Invoking command: add_namespace_to_adfconfig
    Invoking command:
    Invoking command:
    Invoking command: Changes in Exception Notification
    Invoking command:
    Invoking command:
    Invoking command:
    Invoking command:
    Invoking command: Changes in catchallSystemfault
    Invoking command: Add Activity
    Invoking command:
    Invoking command:
    Invoking command: Move catchallSystemfault
    Invoking command: Changes in catchallSystemfault
    Invoking command:
    Invoking command:
    Performing action Business Object[ from oracle.bpm.fusion.studio.navigator.ProjectNavigatorWindow ]
    Invoking command: Remove
    Invoking command:
    Invoking command:
    Invoking command: Changes in ServiceTask
    Invoking command:
    Invoking command:
    Invoking command: Move End2
    Invoking command: Changes in Exception Notification
    Invoking command:
    Invoking command:
    Performing action Save All[ from oracle.tip.tools.ide.workflow.addin.WFXmlVisualEditor ]
    Invoking command: [ from oracle.tip.tools.ide.workflow.addin.WFXmlVisualEditor ]
    Invoking command:
    Invoking command: Changes in Exception Notification
    Invoking command:
    Invoking command:
    Performing action Save All[ from oracle.bpm.fusion.studio.editor.ProcessEditor ]
    Invoking command: [ from oracle.bpm.fusion.studio.editor.ProcessEditor ]
    Invoking command:
    Invoking command: createElementTaskDataControlConfigs
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: create root element
    Invoking command:
    Invoking command: savePathUrlToMetadatRegistry
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command: addDataControl
    Invoking command:
    Invoking command: Initialize Unbounded Task Flow
    Invoking command: Modify XML[ from oracle.jdevimpl.audit.log.AuditLogPage ]
    Invoking command: Initial Reformat
    Invoking command: XML Edit
    Invoking command: XML Edit
    Invoking command: Adding default render kit id
    Invoking command: Update skin version
    Invoking command: XML Edit
    Invoking command: XML Edit
    Invoking command: XML Edit
    Invoking command:
    Invoking command: Initialize Bounded Task Flow
    Invoking command: ADFm create locale and bundle
    Invoking command: Creating Task Flow based on Human Task
    Invoking command: Creating Task Flow based on Human Task
    Invoking command: Modify XML[ from oracle.jdevimpl.audit.log.AuditLogPage ]
    Invoking command: Initial Reformat
    Invoking command: XML Edit
    Invoking command: Adding Converters to Faces - ADFm Phase Listener
    Invoking command: XML Edit
    Invoking command: Initial Reformat
    Invoking command: Configure ADF Faces Page
    Invoking command:
    Invoking command: createElementTaskApplication
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: savePathUrlToMetadatRegistry
    Invoking command:
    Invoking command: createElementTaskpageDefinition
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: XML Edit
    Invoking command: AutoGenerateJSP
    Started CommandProcessor transaction: Arrange Nodes on thread AWT-EventQueue-0 at batch level 1
    Started CommandProcessor transaction: Arrange Nodes (Part 1) on thread AWT-EventQueue-0 at batch level 2
    Invoking command: Begin Adjustment[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: [ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "sdm:polyPoints"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "sdm:polyPoints"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "sdm:polyPoints"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "sdm:polyPoints"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "sdm:polyPoints"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "x"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "y"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "x"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "y"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "x"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "y"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "x"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "y"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "x"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "y"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "x"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "y"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "x"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "y"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "x"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "y"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "x"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "y"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "x"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "y"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "x"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "y"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "x"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "y"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: [ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: End Adjustment[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Finished CommandProcessor transaction on thread AWT-EventQueue-0 at batch level 1
    Started CommandProcessor transaction: Arrange Nodes (Part 2) on thread AWT-EventQueue-0 at batch level 2
    Invoking command: Begin Adjustment[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: [ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "sdm:polyPoints"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "sdm:polyPoints"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "sdm:polyPoints"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "sdm:polyPoints"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "sdm:polyPoints"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: [ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: End Adjustment[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Finished CommandProcessor transaction on thread AWT-EventQueue-0 at batch level 1
    Finished CommandProcessor transaction on thread AWT-EventQueue-0 at batch level 0
    oracle.adfinternal.view.faces.lifecycle.LifecycleImpl:Nov 01, 2013 12:01:49 PM oracle.adfinternal.view.faces.lifecycle.LifecycleImpl _initializeTrinidadFrameBustingAppMapValue
    WARNING: The framebusting context param 'oracle.adf.view.rich.security.FRAME_BUSTING' has been deprecated. Please change your web.xml to use 'org.apache.myfaces.trinidad.security.FRAME_BUSTING' instead. The legal values are 'always', 'never', and 'differentOrigin'. If you were setting the value of 'oracle.adf.view.rich.security.FRAME_BUSTING' to 'differentDomain', then please note that you should set 'org.apache.myfaces.trinidad.security.FRAME_BUSTING' to 'differentOrigin'.
    org.apache.myfaces.trinidadinternal.skin.SkinCSSDocumentHandler:Nov 01, 2013 12:01:53 PM org.apache.myfaces.trinidadinternal.skin.SkinCSSDocumentHandler _parseAgentProperties
    WARNING: Not a valid @agent CSS property rule: max-version: 1.9.2
    org.apache.myfaces.trinidadinternal.skin.SkinCSSDocumentHandler:Nov 01, 2013 12:01:53 PM org.apache.myfaces.trinidadinternal.skin.SkinCSSDocumentHandler _parseAgentProperties
    WARNING: Not a valid @agent CSS property rule: max-version: 532
    org.apache.myfaces.trinidadinternal.skin.SkinCSSDocumentHandler:Nov 01, 2013 12:01:53 PM org.apache.myfaces.trinidadinternal.skin.SkinCSSDocumentHandler _parseAgentProperties
    WARNING: Not a valid @agent CSS property rule: max-version: 1.9.2
    org.apache.myfaces.trinidadinternal.skin.SkinCSSDocumentHandler:Nov 01, 2013 12:01:53 PM org.apache.myfaces.trinidadinternal.skin.SkinCSSDocumentHandler _parseAgentProperties
    WARNING: Not a valid @agent CSS property rule: max-version: 532
    oracle.adf.share.ADFContext:Nov 01, 2013 12:01:54 PM oracle.adf.share.ADFContext getCurrent
    WARNING: Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    For more information please enable logging for oracle.adf.share.ADFContext at FINEST level.
    Performing action Save All[ from oracle.jdevimpl.audit.log.AuditLogPage ]
    Invoking command: [ from oracle.jdevimpl.audit.log.AuditLogPage ]
    Invoking command:
    Performing action Save All[ from oracle.tip.tools.ide.workflow.addin.WFXmlVisualEditor ]
    Invoking command: [ from oracle.tip.tools.ide.workflow.addin.WFXmlVisualEditor ]
    Invoking command: [ from oracle.ide.navigator.ProjectNavigatorWindow ]
    Invoking command: remove soa_shared
    Invoking command: [ from oracle.ide.navigator.ProjectNavigatorWindow ]
    Invoking command: remove soa_shared
    Invoking command: Changes in Start1
    Invoking command:
    Invoking command:
    Invoking command: Move Exception Notification
    Invoking command:
    Invoking command:
    Invoking command: Changes in NotificationTask
    Invoking command: Add Activity
    Invoking command:
    Invoking command:
    Invoking command:
    Invoking command:
    Invoking command:
    Invoking command:
    Nov 01, 2013 12:36:36 PM oracle.ideimpl.index.ProjectTracker$ProjectListener invokeListener
    SEVERE: Exception in FileChangeListener oracle.bpm.fusion.repository.fs.FusionFileSystem$1
    java.lang.ClassCastException: oracle.bpm.type.TypeHandle cannot be cast to java.lang.Comparable
      at java.util.TreeMap.compare(TreeMap.java:1188)
      at java.util.TreeMap.put(TreeMap.java:531)
      at java.util.TreeSet.add(TreeSet.java:255)
      at oracle.bpm.project.catalog.bundles.ComponentBundleTypeIndex.findByPropertyValue(ComponentBundleTypeIndex.java:96)
      at oracle.bpm.project.catalog.bundles.XmlSchemaReferenceManager.fixExceptions(XmlSchemaReferenceManager.java:225)
      at oracle.bpm.project.catalog.bundles.XmlSchemaReferenceManager.addObject(XmlSchemaReferenceManager.java:84)
      at oracle.bpm.project.catalog.bundles.ServiceReferenceManager.addSynthesizedServices(ServiceReferenceManager.java:586)
      at oracle.bpm.project.catalog.bundles.ServiceReferenceManager.refresh(ServiceReferenceManager.java:124)
      at oracle.bpm.project.catalog.bundles.ProjectCatalogComponentBundle.reloadResource(ProjectCatalogComponentBundle.java:985)
      at oracle.bpm.project.catalog.bundles.ProjectCatalogComponentBundle.access$1300(ProjectCatalogComponentBundle.java:84)
      at oracle.bpm.project.catalog.bundles.ProjectCatalogComponentBundle$BusinessCatalogResourceListener$1.call(ProjectCatalogComponentBundle.java:1242)
      at oracle.bpm.project.catalog.bundles.ProjectCatalogComponentBundle$BusinessCatalogResourceListener$1.call(ProjectCatalogComponentBundle.java:1238)
      at oracle.bpm.project.ProjectObjectImpl.run(ProjectObjectImpl.java:605)
      at oracle.bpm.project.catalog.bundles.ProjectCatalogComponentBundle$BusinessCatalogResourceListener.resourceUpdated(ProjectCatalogComponentBundle.java:1250)
      at oracle.bpm.project.catalog.recognizer.VFileSystemBundleContext$1.onFileEvent(VFileSystemBundleContext.java:164)
      at oracle.bpm.io.fs.VFileSystem$DispatchEventImmediate.dispatch(VFileSystem.java:284)
      at oracle.bpm.io.fs.VFileSystem.dispatchEvent(VFileSystem.java:195)
      at oracle.bpm.io.fs.VFileSystem.fireEvent(VFileSystem.java:116)
      at oracle.bpm.fusion.repository.fs.FusionFileSystem$1$2.run(FusionFileSystem.java:232)
      at oracle.bpm.fusion.repository.fs.FusionFileSystem$1.filesChanged(FusionFileSystem.java:239)
      at oracle.ideimpl.index.ProjectTracker$ProjectListener.invokeListener(ProjectTracker.java:253)
      at oracle.ideimpl.index.ProjectTracker$ProjectListener.invokeListeners(ProjectTracker.java:243)
      at oracle.ideimpl.index.ProjectTracker$ProjectListener.filesChanged(ProjectTracker.java:226)
      at oracle.ideimpl.index.file.ActiveRootManager$ActiveRootListener.invokeListeners(ActiveRootManager.java:232)
      at oracle.ideimpl.index.file.ActiveRootManager$ActiveRootListener.invokeListeners(ActiveRootManager.java:224)
      at oracle.ideimpl.index.file.ActiveRootManager.notifyRoots(ActiveRootManager.java:150)
      at oracle.ideimpl.index.NodeTracker$TextBufferTracker.bufferChanged(NodeTracker.java:179)
      at oracle.ideimpl.index.NodeTracker$TextBufferTracker.actionPerformed(NodeTracker.java:184)
      at javax.swing.Timer.fireActionPerformed(Timer.java:312)
      at javax.swing.Timer$DoPostEvent.run(Timer.java:244)
      at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:251)
      at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:733)
      at java.awt.EventQueue.access$200(EventQueue.java:103)
      at java.awt.EventQueue$3.run(EventQueue.java:694)
      at java.awt.EventQueue$3.run(EventQueue.java:692)
      at java.security.AccessController.doPrivileged(Native Method)
      at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
      at java.awt.EventQueue.dispatchEvent(EventQueue.java:703)
      at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)
      at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)
      at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
      at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
      at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
      at java.awt.EventDispatchThread.run(EventDispatchThread.java:91)
    java.lang.ClassCastException: oracle.bpm.type.TypeHandle cannot be cast to java.lang.Comparable
      j.util.TreeMap.compare(TreeMap.java:1188)
      j.util.TreeMap.put(TreeMap.java:531)
      j.util.TreeSet.add(TreeSet.java:255)
      o.bpm.project.catalog.bundles.ComponentBundleTypeIndex.findByPropertyValue(ComponentBundleTypeIndex.java:96)
      o.bpm.project.catalog.bundles.XmlSchemaReferenceManager.fixExceptions(XmlSchemaReferenceManager.java:225)
      o.bpm.project.catalog.bundles.XmlSchemaReferenceManager.addObject(XmlSchemaReferenceManager.java:84)
      o.bpm.project.catalog.bundles.ServiceReferenceManager.addSynthesizedServices(ServiceReferenceManager.java:586)
      o.bpm.project.catalog.bundles.ServiceReferenceManager.refresh(ServiceReferenceManager.java:124)
      o.bpm.project.catalog.bundles.ProjectCatalogComponentBundle.reloadResource(ProjectCatalogComponentBundle.java:985)
      o.bpm.project.catalog.bundles.ProjectCatalogComponentBundle.access$1300(ProjectCatalogComponentBundle.java:84)
      o.bpm.project.catalog.bundles.ProjectCatalogComponentBundle$BusinessCatalogResourceListener$1.call(ProjectCatalogComponentBundle.java:1242)
      o.bpm.project.catalog.bundles.ProjectCatalogComponentBundle$BusinessCatalogResourceListener$1.call(ProjectCatalogComponentBundle.java:1238)
      o.bpm.project.ProjectObjectImpl.run(ProjectObjectImpl.java:605)
      o.bpm.project.catalog.bundles.ProjectCatalogComponentBundle$BusinessCatalogResourceListener.resourceUpdated(ProjectCatalogComponentBundle.java:1250)
      o.bpm.project.catalog.recognizer.VFileSystemBundleContext$1.onFileEvent(VFileSystemBundleContext.java:164)
      o.bpm.io.fs.VFileSystem$DispatchEventImmediate.dispatch(VFileSystem.java:284)
      o.bpm.io.fs.VFileSystem.dispatchEvent(VFileSystem.java:195)
      o.bpm.io.fs.VFileSystem.fireEvent(VFileSystem.java:116)
      o.bpm.fusion.repository.fs.FusionFileSystem$1$2.run(FusionFileSystem.java:232)
      o.bpm.fusion.repository.fs.FusionFileSystem$1.filesChanged(FusionFileSystem.java:239)
      o.ii.index.ProjectTracker$ProjectListener.invokeListener(ProjectTracker.java:253)
      o.ii.index.ProjectTracker$ProjectListener.invokeListeners(ProjectTracker.java:243)
      o.ii.index.ProjectTracker$ProjectListener.filesChanged(ProjectTracker.java:226)
      o.ii.index.file.ActiveRootManager$ActiveRootListener.invokeListeners(ActiveRootManager.java:232)
      o.ii.index.file.ActiveRootManager$ActiveRootListener.invokeListeners(ActiveRootManager.java:224)
      o.ii.index.file.ActiveRootManager.notifyRoots(ActiveRootManager.java:150)
      o.ii.index.NodeTracker$TextBufferTracker.bufferChanged(NodeTracker.java:179)
      o.ii.index.NodeTracker$TextBufferTracker.actionPerformed(NodeTracker.java:184)
      jx.s.Timer.fireActionPerformed(Timer.java:312)
      jx.s.Timer$DoPostEvent.run(Timer.java:244)
      j.a.event.InvocationEvent.dispatch(InvocationEvent.java:251)
      j.a.EventQueue.dispatchEventImpl(EventQueue.java:733)
      j.a.EventQueue.access$200(EventQueue.java:103)
      j.a.EventQueue$3.run(EventQueue.java:694)
      j.a.EventQueue$3.run(EventQueue.java:692)
      j.security.AccessController.doPrivileged(Native Method)
      j.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
      j.a.EventQueue.dispatchEvent(EventQueue.java:703)
      j.a.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)
      j.a.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)
      j.a.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
      j.a.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
      j.a.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
      j.a.EventDispatchThread.run(EventDispatchThread.java:91)
    Message was edited by: user2610167

    I am frequently facing this problem while working with Jdeveloper. I get the  message " an unexpected error has occurred in Jdevloper . Jdevloper memory setting in my case is 1000MB.  Any Any solution for this issue?
    Here is the details of error
    oracle.integration.platform.blocks:Nov 01, 2013 11:37:17 AM oracle.integration.platform.blocks.FabricConfigManager <clinit>
    WARNING: JRF is unable to determine the current application server platform.
    oracle.integration.platform.blocks:Nov 01, 2013 11:37:17 AM oracle.integration.platform.blocks.WLSPlatformConfigurationProvider <clinit>
    WARNING: JRF is unable to determine the current application server platform.
    Invoking command: Changes in technical Exception See enterprise manager for details
    Invoking command: Add Activity
    Invoking command:
    Invoking command:
    Invoking command: Changes in technical Exception See enterprise manager for details
    Invoking command:
    Invoking command:
    Invoking command: Changes in technical Exception See enterprise manager for details
    Invoking command:
    Invoking command:
    Invoking command: Changes in Start2
    Invoking command:
    Invoking command:
    Invoking command: Remove
    Invoking command:
    Invoking command:
    Performing action Business Exception[ from oracle.bpm.fusion.studio.navigator.ProjectNavigatorWindow ]
    Performing action Export[ from oracle.bpm.fusion.studio.navigator.ProjectNavigatorWindow ]
    Performing action Export[ from oracle.bpm.fusion.studio.navigator.ProjectNavigatorWindow ]
    Performing action Open Application...[ from oracle.bpm.fusion.studio.navigator.ProjectNavigatorWindow ]
    Performing action Open...[ from oracle.bpm.fusion.studio.navigator.ProjectNavigatorWindow ]
    Invoking command: delete_namespace_from_adfconfig
    Invoking command: add_namespace_to_adfconfig
    Invoking command:
    Invoking command:
    Invoking command: Changes in Exception Notification
    Invoking command:
    Invoking command:
    Invoking command:
    Invoking command:
    Invoking command: Changes in catchallSystemfault
    Invoking command: Add Activity
    Invoking command:
    Invoking command:
    Invoking command: Move catchallSystemfault
    Invoking command: Changes in catchallSystemfault
    Invoking command:
    Invoking command:
    Performing action Business Object[ from oracle.bpm.fusion.studio.navigator.ProjectNavigatorWindow ]
    Invoking command: Remove
    Invoking command:
    Invoking command:
    Invoking command: Changes in ServiceTask
    Invoking command:
    Invoking command:
    Invoking command: Move End2
    Invoking command: Changes in Exception Notification
    Invoking command:
    Invoking command:
    Performing action Save All[ from oracle.tip.tools.ide.workflow.addin.WFXmlVisualEditor ]
    Invoking command: [ from oracle.tip.tools.ide.workflow.addin.WFXmlVisualEditor ]
    Invoking command:
    Invoking command: Changes in Exception Notification
    Invoking command:
    Invoking command:
    Performing action Save All[ from oracle.bpm.fusion.studio.editor.ProcessEditor ]
    Invoking command: [ from oracle.bpm.fusion.studio.editor.ProcessEditor ]
    Invoking command:
    Invoking command: createElementTaskDataControlConfigs
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: create root element
    Invoking command:
    Invoking command: savePathUrlToMetadatRegistry
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command:
    Invoking command: createElementTaskJavaBean
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: initbean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command: replacebean
    Invoking command: addDataControl
    Invoking command:
    Invoking command: Initialize Unbounded Task Flow
    Invoking command: Modify XML[ from oracle.jdevimpl.audit.log.AuditLogPage ]
    Invoking command: Initial Reformat
    Invoking command: XML Edit
    Invoking command: XML Edit
    Invoking command: Adding default render kit id
    Invoking command: Update skin version
    Invoking command: XML Edit
    Invoking command: XML Edit
    Invoking command: XML Edit
    Invoking command:
    Invoking command: Initialize Bounded Task Flow
    Invoking command: ADFm create locale and bundle
    Invoking command: Creating Task Flow based on Human Task
    Invoking command: Creating Task Flow based on Human Task
    Invoking command: Modify XML[ from oracle.jdevimpl.audit.log.AuditLogPage ]
    Invoking command: Initial Reformat
    Invoking command: XML Edit
    Invoking command: Adding Converters to Faces - ADFm Phase Listener
    Invoking command: XML Edit
    Invoking command: Initial Reformat
    Invoking command: Configure ADF Faces Page
    Invoking command:
    Invoking command: createElementTaskApplication
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: savePathUrlToMetadatRegistry
    Invoking command:
    Invoking command: createElementTaskpageDefinition
    Invoking command: setId
    Invoking command: setAttribute
    Invoking command: XML Edit
    Invoking command: AutoGenerateJSP
    Started CommandProcessor transaction: Arrange Nodes on thread AWT-EventQueue-0 at batch level 1
    Started CommandProcessor transaction: Arrange Nodes (Part 1) on thread AWT-EventQueue-0 at batch level 2
    Invoking command: Begin Adjustment[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: [ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "sdm:polyPoints"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "sdm:polyPoints"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "sdm:polyPoints"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "sdm:polyPoints"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "sdm:polyPoints"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "x"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "y"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "x"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "y"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "x"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "y"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "x"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "y"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "x"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "y"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "x"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "y"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "x"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "y"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "x"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "y"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "x"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "y"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "x"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "y"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "x"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "y"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "x"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "y"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: [ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: End Adjustment[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Finished CommandProcessor transaction on thread AWT-EventQueue-0 at batch level 1
    Started CommandProcessor transaction: Arrange Nodes (Part 2) on thread AWT-EventQueue-0 at batch level 2
    Invoking command: Begin Adjustment[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: [ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "sdm:polyPoints"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "sdm:polyPoints"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "sdm:polyPoints"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "sdm:polyPoints"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: Set Property "sdm:polyPoints"[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: [ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Invoking command: End Adjustment[ from oracle.adfdt.controller.adfc.diagram.editor.AdfcDiagramEditor ]
    Finished CommandProcessor transaction on thread AWT-EventQueue-0 at batch level 1
    Finished CommandProcessor transaction on thread AWT-EventQueue-0 at batch level 0
    oracle.adfinternal.view.faces.lifecycle.LifecycleImpl:Nov 01, 2013 12:01:49 PM oracle.adfinternal.view.faces.lifecycle.LifecycleImpl _initializeTrinidadFrameBustingAppMapValue
    WARNING: The framebusting context param 'oracle.adf.view.rich.security.FRAME_BUSTING' has been deprecated. Please change your web.xml to use 'org.apache.myfaces.trinidad.security.FRAME_BUSTING' instead. The legal values are 'always', 'never', and 'differentOrigin'. If you were setting the value of 'oracle.adf.view.rich.security.FRAME_BUSTING' to 'differentDomain', then please note that you should set 'org.apache.myfaces.trinidad.security.FRAME_BUSTING' to 'differentOrigin'.
    org.apache.myfaces.trinidadinternal.skin.SkinCSSDocumentHandler:Nov 01, 2013 12:01:53 PM org.apache.myfaces.trinidadinternal.skin.SkinCSSDocumentHandler _parseAgentProperties
    WARNING: Not a valid @agent CSS property rule: max-version: 1.9.2
    org.apache.myfaces.trinidadinternal.skin.SkinCSSDocumentHandler:Nov 01, 2013 12:01:53 PM org.apache.myfaces.trinidadinternal.skin.SkinCSSDocumentHandler _parseAgentProperties
    WARNING: Not a valid @agent CSS property rule: max-version: 532
    org.apache.myfaces.trinidadinternal.skin.SkinCSSDocumentHandler:Nov 01, 2013 12:01:53 PM org.apache.myfaces.trinidadinternal.skin.SkinCSSDocumentHandler _parseAgentProperties
    WARNING: Not a valid @agent CSS property rule: max-version: 1.9.2
    org.apache.myfaces.trinidadinternal.skin.SkinCSSDocumentHandler:Nov 01, 2013 12:01:53 PM org.apache.myfaces.trinidadinternal.skin.SkinCSSDocumentHandler _parseAgentProperties
    WARNING: Not a valid @agent CSS property rule: max-version: 532
    oracle.adf.share.ADFContext:Nov 01, 2013 12:01:54 PM oracle.adf.share.ADFContext getCurrent
    WARNING: Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    For more information please enable logging for oracle.adf.share.ADFContext at FINEST level.
    Performing action Save All[ from oracle.jdevimpl.audit.log.AuditLogPage ]
    Invoking command: [ from oracle.jdevimpl.audit.log.AuditLogPage ]
    Invoking command:
    Performing action Save All[ from oracle.tip.tools.ide.workflow.addin.WFXmlVisualEditor ]
    Invoking command: [ from oracle.tip.tools.ide.workflow.addin.WFXmlVisualEditor ]
    Invoking command: [ from oracle.ide.navigator.ProjectNavigatorWindow ]
    Invoking command: remove soa_shared
    Invoking command: [ from oracle.ide.navigator.ProjectNavigatorWindow ]
    Invoking command: remove soa_shared
    Invoking command: Changes in Start1
    Invoking command:
    Invoking command:
    Invoking command: Move Exception Notification
    Invoking command:
    Invoking command:
    Invoking command: Changes in NotificationTask
    Invoking command: Add Activity
    Invoking command:
    Invoking command:
    Invoking command:
    Invoking command:
    Invoking command:
    Invoking command:
    Nov 01, 2013 12:36:36 PM oracle.ideimpl.index.ProjectTracker$ProjectListener invokeListener
    SEVERE: Exception in FileChangeListener oracle.bpm.fusion.repository.fs.FusionFileSystem$1
    java.lang.ClassCastException: oracle.bpm.type.TypeHandle cannot be cast to java.lang.Comparable
      at java.util.TreeMap.compare(TreeMap.java:1188)
      at java.util.TreeMap.put(TreeMap.java:531)
      at java.util.TreeSet.add(TreeSet.java:255)
      at oracle.bpm.project.catalog.bundles.ComponentBundleTypeIndex.findByPropertyValue(ComponentBundleTypeIndex.java:96)
      at oracle.bpm.project.catalog.bundles.XmlSchemaReferenceManager.fixExceptions(XmlSchemaReferenceManager.java:225)
      at oracle.bpm.project.catalog.bundles.XmlSchemaReferenceManager.addObject(XmlSchemaReferenceManager.java:84)
      at oracle.bpm.project.catalog.bundles.ServiceReferenceManager.addSynthesizedServices(ServiceReferenceManager.java:586)
      at oracle.bpm.project.catalog.bundles.ServiceReferenceManager.refresh(ServiceReferenceManager.java:124)
      at oracle.bpm.project.catalog.bundles.ProjectCatalogComponentBundle.reloadResource(ProjectCatalogComponentBundle.java:985)
      at oracle.bpm.project.catalog.bundles.ProjectCatalogComponentBundle.access$1300(ProjectCatalogComponentBundle.java:84)
      at oracle.bpm.project.catalog.bundles.ProjectCatalogComponentBundle$BusinessCatalogResourceListener$1.call(ProjectCatalogComponentBundle.java:1242)
      at oracle.bpm.project.catalog.bundles.ProjectCatalogComponentBundle$BusinessCatalogResourceListener$1.call(ProjectCatalogComponentBundle.java:1238)
      at oracle.bpm.project.ProjectObjectImpl.run(ProjectObjectImpl.java:605)
      at oracle.bpm.project.catalog.bundles.ProjectCatalogComponentBundle$BusinessCatalogResourceListener.resourceUpdated(ProjectCatalogComponentBundle.java:1250)
      at oracle.bpm.project.catalog.recognizer.VFileSystemBundleContext$1.onFileEvent(VFileSystemBundleContext.java:164)
      at oracle.bpm.io.fs.VFileSystem$DispatchEventImmediate.dispatch(VFileSystem.java:284)
      at oracle.bpm.io.fs.VFileSystem.dispatchEvent(VFileSystem.java:195)
      at oracle.bpm.io.fs.VFileSystem.fireEvent(VFileSystem.java:116)
      at oracle.bpm.fusion.repository.fs.FusionFileSystem$1$2.run(FusionFileSystem.java:232)
      at oracle.bpm.fusion.repository.fs.FusionFileSystem$1.filesChanged(FusionFileSystem.java:239)
      at oracle.ideimpl.index.ProjectTracker$ProjectListener.invokeListener(ProjectTracker.java:253)
      at oracle.ideimpl.index.ProjectTracker$ProjectListener.invokeListeners(ProjectTracker.java:243)
      at oracle.ideimpl.index.ProjectTracker$ProjectListener.filesChanged(ProjectTracker.java:226)
      at oracle.ideimpl.index.file.ActiveRootManager$ActiveRootListener.invokeListeners(ActiveRootManager.java:232)
      at oracle.ideimpl.index.file.ActiveRootManager$ActiveRootListener.invokeListeners(ActiveRootManager.java:224)
      at oracle.ideimpl.index.file.ActiveRootManager.notifyRoots(ActiveRootManager.java:150)
      at oracle.ideimpl.index.NodeTracker$TextBufferTracker.bufferChanged(NodeTracker.java:179)
      at oracle.ideimpl.index.NodeTracker$TextBufferTracker.actionPerformed(NodeTracker.java:184)
      at javax.swing.Timer.fireActionPerformed(Timer.java:312)
      at javax.swing.Timer$DoPostEvent.run(Timer.java:244)
      at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:251)
      at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:733)
      at java.awt.EventQueue.access$200(EventQueue.java:103)
      at java.awt.EventQueue$3.run(EventQueue.java:694)
      at java.awt.EventQueue$3.run(EventQueue.java:692)
      at java.security.AccessController.doPrivileged(Native Method)
      at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
      at java.awt.EventQueue.dispatchEvent(EventQueue.java:703)
      at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)
      at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)
      at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
      at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
      at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
      at java.awt.EventDispatchThread.run(EventDispatchThread.java:91)
    java.lang.ClassCastException: oracle.bpm.type.TypeHandle cannot be cast to java.lang.Comparable
      j.util.TreeMap.compare(TreeMap.java:1188)
      j.util.TreeMap.put(TreeMap.java:531)
      j.util.TreeSet.add(TreeSet.java:255)
      o.bpm.project.catalog.bundles.ComponentBundleTypeIndex.findByPropertyValue(ComponentBundleTypeIndex.java:96)
      o.bpm.project.catalog.bundles.XmlSchemaReferenceManager.fixExceptions(XmlSchemaReferenceManager.java:225)
      o.bpm.project.catalog.bundles.XmlSchemaReferenceManager.addObject(XmlSchemaReferenceManager.java:84)
      o.bpm.project.catalog.bundles.ServiceReferenceManager.addSynthesizedServices(ServiceReferenceManager.java:586)
      o.bpm.project.catalog.bundles.ServiceReferenceManager.refresh(ServiceReferenceManager.java:124)
      o.bpm.project.catalog.bundles.ProjectCatalogComponentBundle.reloadResource(ProjectCatalogComponentBundle.java:985)
      o.bpm.project.catalog.bundles.ProjectCatalogComponentBundle.access$1300(ProjectCatalogComponentBundle.java:84)
      o.bpm.project.catalog.bundles.ProjectCatalogComponentBundle$BusinessCatalogResourceListener$1.call(ProjectCatalogComponentBundle.java:1242)
      o.bpm.project.catalog.bundles.ProjectCatalogComponentBundle$BusinessCatalogResourceListener$1.call(ProjectCatalogComponentBundle.java:1238)
      o.bpm.project.ProjectObjectImpl.run(ProjectObjectImpl.java:605)
      o.bpm.project.catalog.bundles.ProjectCatalogComponentBundle$BusinessCatalogResourceListener.resourceUpdated(ProjectCatalogComponentBundle.java:1250)
      o.bpm.project.catalog.recognizer.VFileSystemBundleContext$1.onFileEvent(VFileSystemBundleContext.java:164)
      o.bpm.io.fs.VFileSystem$DispatchEventImmediate.dispatch(VFileSystem.java:284)
      o.bpm.io.fs.VFileSystem.dispatchEvent(VFileSystem.java:195)
      o.bpm.io.fs.VFileSystem.fireEvent(VFileSystem.java:116)
      o.bpm.fusion.repository.fs.FusionFileSystem$1$2.run(FusionFileSystem.java:232)
      o.bpm.fusion.repository.fs.FusionFileSystem$1.filesChanged(FusionFileSystem.java:239)
      o.ii.index.ProjectTracker$ProjectListener.invokeListener(ProjectTracker.java:253)
      o.ii.index.ProjectTracker$ProjectListener.invokeListeners(ProjectTracker.java:243)
      o.ii.index.ProjectTracker$ProjectListener.filesChanged(ProjectTracker.java:226)
      o.ii.index.file.ActiveRootManager$ActiveRootListener.invokeListeners(ActiveRootManager.java:232)
      o.ii.index.file.ActiveRootManager$ActiveRootListener.invokeListeners(ActiveRootManager.java:224)
      o.ii.index.file.ActiveRootManager.notifyRoots(ActiveRootManager.java:150)
      o.ii.index.NodeTracker$TextBufferTracker.bufferChanged(NodeTracker.java:179)
      o.ii.index.NodeTracker$TextBufferTracker.actionPerformed(NodeTracker.java:184)
      jx.s.Timer.fireActionPerformed(Timer.java:312)
      jx.s.Timer$DoPostEvent.run(Timer.java:244)
      j.a.event.InvocationEvent.dispatch(InvocationEvent.java:251)
      j.a.EventQueue.dispatchEventImpl(EventQueue.java:733)
      j.a.EventQueue.access$200(EventQueue.java:103)
      j.a.EventQueue$3.run(EventQueue.java:694)
      j.a.EventQueue$3.run(EventQueue.java:692)
      j.security.AccessController.doPrivileged(Native Method)
      j.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
      j.a.EventQueue.dispatchEvent(EventQueue.java:703)
      j.a.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)
      j.a.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)
      j.a.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
      j.a.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
      j.a.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
      j.a.EventDispatchThread.run(EventDispatchThread.java:91)
    Message was edited by: user2610167

  • Tells us you're experiences with Jdeveloper 11.1.1.4

    Hello, im a ubuntu user, and this morning i've installed the new jdeveloper 11.1.1.4. My first concern was to not lost all my svn and db connections, and wls jdbc datasources, after a little research i've found how to the trick. Then the installation was smooth and right now im playing with it .
    Tell us you're personal experience. !
    Daniel

    Hi Timo,
    We're having similar issues with JDeveloper here. The debugger in JDevloper is the biggest fail ever!
    I have win7-64, 8GB RAM, etc. I'm using 11.1.2.3.0 and have used earlier versions of JDeveloper too and the debugger always freezes.
    We've tweaked our vm settings for JDev and the integrated Weblogic server to no avail. I'm waiting on another 8GB RAM to be delivered to see if that might fix this sorry situation.
    Since I can only rant here and can't give you exact data, let me share some observations:
    1.
    The debugger will hang when I try and reach a null pointer exception occurring. I'll put a breakpoint on the line of code and the debugger will stop there. That's when JDeveloper becomes totally unresponsive. Nothing will will work - no close button, no gui buttons on jdev - nothing! The only way to get it responsive is to kill the weblogic java process that it spawns.
    Examining to processes that are running with the default windows sysmon tool tells me that there is a network I/O process hanging. When I end that process, things are responsive but my debugger session has been killed.
    2.
    When I've fixed the error (using sysouts!!), I can happily debug to the the fixed line and examine data variables like a normal IDE would do it. It's a bit like the fire truck arriving after the house burned down.

  • Trying to debug Worklist app with JDeveloper

    We managed to get the worklistapp compiling under JDeveloper. Now, I'd like to debug it.
    In order to debug (by running in the OC4J container within JDeveloper), it looks like I have to run the worklistapp as a remote client (specifying REMOTE_CLIENT or SOAP_CLIENT in the BaseServlet's init function). I used REMOTE_CLIENT. I also updated wf_client_config.xml and included the ORACLE_HOME/bpel/system/services/config directory in the classpath.
    When I try to run the worklist app from JDeveloper, I get a null ptr exception (the line 'wfSvcClient.getAuthorizationService(idCtx);' is returning a null value for the authorization service):
    Source breakpoint occurred at line 660 of TaskList.java.
    07/01/30 16:57:37 java.lang.NullPointerException
    07/01/30 16:57:37      at worklistapp.servlets.TaskList.checkTabsToDisplay(TaskList.java:669)
    07/01/30 16:57:37      at worklistapp.servlets.TaskList.handleRequest(TaskList.java:122)
    07/01/30 16:57:37      at worklistapp.servlets.BaseServlet.doGet(BaseServlet.java:144)
    07/01/30 16:57:37      at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
    07/01/30 16:57:37      at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    07/01/30 16:57:37      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:711)
    07/01/30 16:57:37      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
    07/01/30 16:57:37      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
    07/01/30 16:57:37      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
    07/01/30 16:57:37      at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
    07/01/30 16:57:37      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
    07/01/30 16:57:37      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
    07/01/30 16:57:37      at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    07/01/30 16:57:37      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    07/01/30 16:57:37      at java.lang.Thread.run(Thread.java:595)
    I also tried to use the soap client (SOAP_CLIENT in BaseServlet's init()), and I get this exception even before logging into the worklistapp:
    <2007-01-30 17:05:18,001> <ERROR> <oracle.bpel.services.workflow> <::>
    java.lang.NullPointerException
         at oracle.bpel.services.workflow.verification.impl.VerificationService.getWorkflowContextJAXBObject(VerificationService.java:1952)
         at oracle.bpel.services.workflow.verification.impl.VerificationService.getWorkflowContextElement(VerificationService.java:1972)
         at oracle.bpel.services.workflow.user.client.AbstractDOMUserMetadataServiceClient.createBaseType(AbstractDOMUserMetadataServiceClient.java:675)
         at oracle.bpel.services.workflow.user.client.AbstractDOMUserMetadataServiceClient.getPublicPreferences(AbstractDOMUserMetadataServiceClient.java:620)
         at worklistapp.servlets.BaseServlet.initApplicationPreferences(BaseServlet.java:555)
         at worklistapp.servlets.BaseServlet.validateSession(BaseServlet.java:185)
         at worklistapp.servlets.BaseServlet.doGet(BaseServlet.java:142)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:711)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
         at java.lang.Thread.run(Thread.java:595)
    <::> ORABPEL-30721
    <::>
    <::> Error in invoking user metadata service operation.
    <::> An client side error occured in invoking the user metadata service operation getPublicPreferences.
    <::> Please check the exception error stack to identify the error. Contact oracle support if error is not fixable.
    <::>
    I did start up the user metadata services and runtime config services(I can see all the soap endpoints for the workflow services from a browser). But the worklist app doesn't seem to connect to the remote server. I did update my wf_client_config.xml to point to the remote server on which BPEL is located. And the wf_client_config.xml file is in the classpath.
    If I deploy the worklist app on the server with bpel (specifying the parent as 'orabpel', it all works fine). I just can't get it working as a remote client.
    So, any suggestions? I've been looking at threads on this forum to get to this point, but now I'm stuck.
    Thanks,
    Sachin

    I thought I'd ping this thread to see if anyone has been able to debug the Worklist application with JDeveloper. We are trying to customize the worklist application, and being able to use JDeveloper to debug would greatly help out.
    However, I have still been unable to get the worklist application to be able to connect to the workflow services remotely via the SOAP_CLIENT:
    wfSvcClient = WorkflowServiceClientFactory.getWorkflowServiceClient(
    WorkflowServiceClientFactory.SOAP_CLIENT);
    I've played around with the classpath to make sure I have all the jars (based on other similar threads in this forum), but have not had any luck yet.
    From a web browser, I can specify the SOAP endpoint to the Workflow services, and am able to call the service in the browser.
    I updated my wf_client_config.xml file to point to the endpoints. e.g:
    <taskQueryService>
    <soapEndPoint>http://myserver:8888/integration/services/TaskQueryService/TaskQueryService</soapEndPoint>
    </taskQueryService>
    Thanks for any help,
    Sachin
    The debug output:
    [Starting OC4J using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    C:\jdev\jdev\system\oracle.j2ee.10.1.3.40.66\embedded-oc4j\config>
    C:\jdev\jdk\bin\javaw.exe -client -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=1690 -classpath C:\jdev\j2ee\home\oc4j.jar;C:\jdev\jdev\lib\jdev-oc4j-embedded.jar -Xverify:none -XX:MaxPermSize=256m -DcheckForUpdates=adminClientOnly -Doracle.application.environment=development -Doracle.j2ee.dont.use.memory.archive=true -Doracle.j2ee.http.socket.timeout=500 -Doc4j.jms.usePersistenceLockFiles=false oracle.oc4j.loader.boot.BootStrap -config C:\jdev\jdev\system\oracle.j2ee.10.1.3.40.66\embedded-oc4j\config\server.xml
    [waiting for the server to complete its initialization...]
    Listening for transport dt_socket at address: 1690
    Debugger connected to local process.
    Jun 1, 2007 5:22:29 PM com.evermind.server.jms.JMSMessages log
    INFO: JMSServer[]: OC4J JMS server recovering transactions (commit 0) (rollback 0) (prepared 0).
    Jun 1, 2007 5:22:29 PM com.evermind.server.jms.JMSMessages log
    INFO: JMSServer[]: OC4J JMS server recovering local transactions Queue[jms/Oc4jJmsExceptionQueue].
    Ready message received from Oc4jNotifier.
    Embedded OC4J startup time: 21594 ms.
    Target URL -- http://192.168.89.52:8988/BPEL%20Samples-WorkListApplication-context-root/login.jsp
    07/06/01 17:22:40 Oracle Containers for J2EE 10g (10.1.3.1.1) initialized
    WARNING: Code-source C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\j2ee\home\jazncore.jar (from <classpath> in C:\work\ProjectLaguna\dev\WorkItemList\WorkListApplcation\public_html) has the same filename but is not identical to /C:/jdev/j2ee/home/jazncore.jar (from <code-source> in META-INF/boot.xml in C:\jdev\j2ee\home\oc4j.jar). If it contains different versions of the same classes, it will be masked as the latter is already visible in the search path of loader current-workspace-app.web.BPEL Samples-WorkListApplication-webapp:0.0.0.
    WARNING: Code-source C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\diagnostics\lib\ojdl.jar (from manifest of /C:/work/ProjectLaguna/ThirdParty/Oracle/SOA/10.1.3.1/j2ee/home/jazncore.jar) has the same filename but is not identical to /C:/jdev/diagnostics/lib/ojdl.jar (from <code-source> (ignore manifest Class-Path) in META-INF/boot.xml in C:\jdev\j2ee\home\oc4j.jar). If it contains different versions of the same classes, it will be masked as the latter is already visible in the search path of loader current-workspace-app.web.BPEL Samples-WorkListApplication-webapp:0.0.0.
    WARNING: Code-source C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\lib\dms.jar (from manifest of /C:/work/ProjectLaguna/ThirdParty/Oracle/SOA/10.1.3.1/j2ee/home/jazncore.jar) has the same filename but is not identical to /C:/jdev/lib/dms.jar (from <code-source> (ignore manifest Class-Path) in META-INF/boot.xml in C:\jdev\j2ee\home\oc4j.jar). If it contains different versions of the same classes, it will be masked as the latter is already visible in the search path of loader current-workspace-app.web.BPEL Samples-WorkListApplication-webapp:0.0.0.
    WARNING: Code-source C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\webservices\lib\orasaaj.jar (from <classpath> in C:\work\ProjectLaguna\dev\WorkItemList\WorkListApplcation\public_html) has the same filename but is not identical to /C:/jdev/webservices/lib/orasaaj.jar (from <code-source> (ignore manifest Class-Path) in META-INF/boot.xml in C:\jdev\j2ee\home\oc4j.jar). If it contains different versions of the same classes, it will be masked as the latter is already visible in the search path of loader current-workspace-app.web.BPEL Samples-WorkListApplication-webapp:0.0.0.
    WARNING: Code-source C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\j2ee\home\lib\pcl.jar (from manifest of /C:/work/ProjectLaguna/ThirdParty/Oracle/SOA/10.1.3.1/j2ee/home/oc4j.jar) has the same filename but is not identical to /C:/jdev/j2ee/home/lib/pcl.jar (from system property java.class.path). If it contains different versions of the same classes, it will be masked as the latter is already visible in the search path of loader current-workspace-app.web.BPEL Samples-WorkListApplication-webapp:0.0.0.
    07/06/01 17:22:42 Classpath: C:\jdev\jdk\jre\lib\rt.jar;C:\jdev\jdk\jre\lib\jsse.jar;C:\jdev\jdk\jre\lib\jce.jar;C:\jdev\jdk\jre\lib\charsets.jar;C:\jdev\jdk\jre\lib\ext\dnsns.jar;C:\jdev\jdk\jre\lib\ext\localedata.jar;C:\jdev\jdk\jre\lib\ext\sunjce_provider.jar;C:\jdev\jdk\jre\lib\ext\sunpkcs11.jar;C:\jdev\j2ee\home\oc4j-api.jar;C:\jdev\j2ee\home\lib\oc4j-unsupported-api.jar;C:\jdev\j2ee\home\lib\activation.jar;C:\jdev\j2ee\home\lib\mail.jar;C:\jdev\j2ee\home\lib\persistence.jar;C:\jdev\j2ee\home\lib\ejb30.jar;C:\jdev\j2ee\home\lib\ejb.jar;C:\jdev\j2ee\home\lib\javax77.jar;C:\jdev\j2ee\home\lib\javax88.jar;C:\jdev\j2ee\home\lib\servlet.jar;C:\jdev\j2ee\home\lib\jms.jar;C:\jdev\j2ee\home\lib\jta.jar;C:\jdev\j2ee\home\lib\jacc-api.jar;C:\jdev\j2ee\home\lib\connector.jar;C:\jdev\j2ee\home\lib\jmx_remote_api.jar;C:\jdev\j2ee\home\lib\jax-qname-namespace.jar;C:\jdev\webservices\lib\jaxr-api.jar;C:\jdev\webservices\lib\jaxrpc-api.jar;C:\jdev\webservices\lib\saaj-api.jar;C:\jdev\webservices\lib\jws-api.jar;C:\jdev\j2ee\home\lib\oc4j-internal.jar;C:\jdev\j2ee\home\lib\oems-jms-oc4j.jar;C:\jdev\j2ee\home\lib\oems-jms-client.jar;C:\jdev\j2ee\home\lib\oems-jms-server.jar;C:\jdev\j2ee\home\lib\oc4j-schemas.jar;C:\jdev\j2ee\home\lib\ojsp.jar;C:\jdev\j2ee\home\lib\oc4j_orb.jar;C:\jdev\j2ee\home\lib\iiop_support.jar;C:\jdev\j2ee\home\lib\orbbase.jar;C:\jdev\j2ee\home\iiop_gen_bin.jar;C:\jdev\j2ee\home\lib\jmxcluster.jar;C:\jdev\j2ee\home\jaccprovider.jar;C:\jdev\javavm\lib\jasper.zip;C:\jdev\j2ee\home\lib\adminclient.jar;C:\jdev\opmn\lib\optic.jar;C:\jdev\j2ee\home\jacc-spi.jar;C:\jdev\j2ee\home\jazncore.jar;C:\jdev\j2ee\home\jazn.jar;C:\jdev\jlib\ospnego.jar;C:\jdev\jlib\ldapjclnt10.jar;C:\jdev\webservices\lib\wsserver.jar;C:\jdev\webservices\lib\wsif.jar;C:\jdev\webservices\lib\orawsmetadata.jar;C:\jdev\webservices\lib\orajaxr.jar;C:\jdev\jlib\jssl-1_1.jar;C:\jdev\jlib\ojmisc.jar;C:\jdev\toplink\jlib\toplink-oc4j.jar;C:\jdev\diagnostics\lib\ojdl2.jar;C:\jdev\xqs\lib\xqs-api.jar;C:\jdev\xqs\lib\xds.jar;C:\jdev\jdev\lib\jdev-oc4j-embedded.jar;C:\jdev\j2ee\home\lib\pcl.jar;C:\jdev\j2ee\home\lib\ext;C:\jdev\j2ee\home\lib\ext\adfperfhandler.jar;C:\jdev\lib\dmsapp.jar;C:\jdev\jdev\system\oracle.j2ee.10.1.3.40.66\embedded-oc4j\applications\admin_ejb.jar;C:\jdev\j2ee\home\lib\scheduler.jar;C:\jdev\jdev\lib\jdev-rt.jar;C:\jdev\jdev\lib\ojc.jar;C:\jdev\jdev\system\oracle.j2ee.10.1.3.40.66\embedded-oc4j\connectors\datasources\datasources\datasources.jar;C:\jdev\BC4J\lib;C:\jdev\BC4J\lib\adfbinding.jar;C:\jdev\BC4J\lib\adfcm.jar;C:\jdev\BC4J\lib\adfm.jar;C:\jdev\BC4J\lib\adfmweb.jar;C:\jdev\BC4J\lib\adfs-jazn.jar;C:\jdev\BC4J\lib\adfs.jar;C:\jdev\BC4J\lib\adfshare.jar;C:\jdev\BC4J\lib\bc4jct.jar;C:\jdev\BC4J\lib\bc4jctejb.jar;C:\jdev\BC4J\lib\bc4jdomorcl.jar;C:\jdev\BC4J\lib\bc4jimdomains.jar;C:\jdev\BC4J\lib\bc4jmt.jar;C:\jdev\BC4J\lib\bc4jmtejb.jar;C:\jdev\BC4J\lib\bc4jsyscat.jar;C:\jdev\BC4J\lib\collections.jar;C:\jdev\jlib\commons-cli-1.0.jar;C:\jdev\mds\lib\concurrent.jar;C:\jdev\mds\lib\mdsrt.jar;C:\jdev\jlib\share.jar;C:\jdev\jlib\regexp.jar;C:\jdev\jlib\xmlef.jar;C:\jdev\BC4J\jlib\adfmtl.jar;C:\jdev\BC4J\jlib\adfui.jar;C:\jdev\BC4J\jlib\adf-connections.jar;C:\jdev\BC4J\jlib\dc-adapters.jar;C:\jdev\ord\jlib\ordim.jar;C:\jdev\ord\jlib\ordhttp.jar;C:\jdev\jlib\ojmisc.jar;C:\jdev\jlib\jdev-cm.jar;C:\jdev\lib\xsqlserializers.jar;C:\jdev\diagnostics\lib\ojdl.jar;C:\jdev\lib\dms.jar;C:\jdev\jdbc\lib\ojdbc14dms.jar;C:\jdev\opmn\lib\ons.jar;C:\jdev\jdbc\lib\ocrs12.jar;C:\jdev\rdbms\jlib\aqapi.jar;C:\jdev\j2ee\home\lib\ojms-provider.jar;C:\jdev\jdbc\lib\orai18n.jar;C:\jdev\lib\xmlparserv2.jar;C:\jdev\lib\xml.jar;C:\jdev\lib\xmlmesg.jar;C:\jdev\lib\xsu12.jar;C:\jdev\lib\xquery.jar;C:\jdev\jlib\osdt_core.jar;C:\jdev\jlib\osdt_cert.jar;C:\jdev\jlib\osdt_xmlsec.jar;C:\jdev\jlib\osdt_wss.jar;C:\jdev\jlib\osdt_saml.jar;C:\jdev\jlib\ojpse.jar;C:\jdev\jlib\oraclepki.jar;C:\jdev\toplink\jlib\toplink.jar;C:\jdev\toplink\jlib\antlr.jar;C:\jdev\toplink\jlib\toplink-essentials.jar;C:\jdev\webservices\lib\wsclient.jar;C:\jdev\webservices\lib\orasaaj.jar;C:\jdev\webservices\lib\xsdlib.jar;C:\jdev\webservices\lib\mdds.jar;C:\jdev\webservices\lib\relaxngDatatype.jar;C:\jdev\javacache\lib\cache.jar;C:\jdev\lib\xschema.jar;C:\jdev\webservices\lib\soap.jar;C:\jdev\sqlj\lib\runtime12.jar;C:\jdev\sqlj\lib\translator.jar;C:\jdev\webservices\lib\orawsdl.jar;C:\jdev\j2ee\home\applib;C:\jdev\j2ee\home\jsp\lib\taglib;C:\jdev\j2ee\home\jsp\lib\taglib\ojsputil.jar;C:\jdev\lib\dsv2.jar;C:\jdev\j2ee\home\lib\http_client.jar;C:\jdev\j2ee\home\lib\jgroups-core.jar;C:\work\ProjectLaguna\dev\WorkItemList\WorkListApplcation\public_html;C:\work\ProjectLaguna\dev\WorkItemList\WorkListApplcation\classes;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\bpel\lib\bpm-infra.jar;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\bpel\lib\orabpel-common.jar;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\bpel\lib\orabpel-thirdparty.jar;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\bpel\lib\orabpel.jar;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\j2ee\home\jazncore.jar;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\diagnostics\lib\ojdl.jar;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\lib\dms.jar;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\j2ee\home\oc4jclient.jar;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\bpel\lib\bicmn.jar;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\bpel\lib\bipres.jar;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\bpel\lib\uix2.jar;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\webservices\lib\orasaaj.jar;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\j2ee\home\oc4j.jar;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\j2ee\home\lib\pcl.jar;C:\product\10.1.3.1\OracleAS_1\bpel\system\services\config;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\bpel\system\services\lib\bpm-services.jar;C:\product\10.1.3.1\OracleAS_1\bpel\system\services\schema;C:\work\ProjectLaguna\ThirdParty\Oracle\SOA\10.1.3.1\webservices\client_lib\wsclient_extended.jar
    07/06/01 17:22:48 log4j:WARN No appenders could be found for logger (collaxa.cube.services).
    07/06/01 17:22:48 log4j:WARN Please initialize the log4j system properly.
    <2007-06-01 17:22:48,504> <ERROR> <oracle.bpel.services.workflow> <::>
    java.lang.NullPointerException
         at oracle.bpel.services.workflow.verification.impl.VerificationService.getWorkflowContextJAXBObject(VerificationService.java:1952)
         at oracle.bpel.services.workflow.verification.impl.VerificationService.getWorkflowContextElement(VerificationService.java:1972)
         at oracle.bpel.services.workflow.user.client.AbstractDOMUserMetadataServiceClient.createBaseType(AbstractDOMUserMetadataServiceClient.java:675)
         at oracle.bpel.services.workflow.user.client.AbstractDOMUserMetadataServiceClient.getPublicPreferences(AbstractDOMUserMetadataServiceClient.java:620)
         at worklistapp.servlets.BaseServlet.initApplicationPreferences(BaseServlet.java:556)
         at worklistapp.servlets.BaseServlet.validateSession(BaseServlet.java:183)
         at worklistapp.servlets.BaseServlet.doGet(BaseServlet.java:140)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:712)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:369)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:865)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:447)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:215)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
         at java.lang.Thread.run(Thread.java:595)
    <::> ORABPEL-30721
    <::>
    <::> Error in invoking user metadata service operation.
    <::> An client side error occured in invoking the user metadata service operation getPublicPreferences.
    <::> Please check the exception error stack to identify the error. Contact oracle support if error is not fixable.
    <::>
    <::>      at oracle.bpel.services.workflow.user.client.AbstractDOMUserMetadataServiceClient.getPublicPreferences(AbstractDOMUserMetadataServiceClient.java:630)
    <::>      at worklistapp.servlets.BaseServlet.initApplicationPreferences(BaseServlet.java:556)
    <::>      at worklistapp.servlets.BaseServlet.validateSession(BaseServlet.java:183)
    <::>      at worklistapp.servlets.BaseServlet.doGet(BaseServlet.java:140)
    <::>      at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
    <::>      at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    <::>      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:712)
    <::>      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:369)
    <::>      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:865)
    <::>      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:447)
    <::>      at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:215)
    <::>      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
    <::>      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
    <::>      at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    <::>      at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
    <::>      at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
    <::>      at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
    <::>      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
    <::>      at java.lang.Thread.run(Thread.java:595)
    <::> Caused by: java.lang.NullPointerException
    <::>      at oracle.bpel.services.workflow.verification.impl.VerificationService.getWorkflowContextJAXBObject(VerificationService.java:1952)
    <::>      at oracle.bpel.services.workflow.verification.impl.VerificationService.getWorkflowContextElement(VerificationService.java:1972)
    <::>      at oracle.bpel.services.workflow.user.client.AbstractDOMUserMetadataServiceClient.createBaseType(AbstractDOMUserMetadataServiceClient.java:675)
    <::>      at oracle.bpel.services.workflow.user.client.AbstractDOMUserMetadataServiceClient.getPublicPreferences(AbstractDOMUserMetadataServiceClient.java:620)
    <::>      ... 18 more
    <2007-06-01 17:22:48,536> <ERROR> <oracle.bpel.services.workflow> <::>
    java.lang.NullPointerException
         at oracle.bpel.services.workflow.verification.impl.VerificationService.getWorkflowContextJAXBObject(VerificationService.java:1952)
         at oracle.bpel.services.workflow.verification.impl.VerificationService.getWorkflowContextElement(VerificationService.java:1972)
         at oracle.bpel.services.workflow.user.client.AbstractDOMUserMetadataServiceClient.createBaseType(AbstractDOMUserMetadataServiceClient.java:675)
         at oracle.bpel.services.workflow.user.client.AbstractDOMUserMetadataServiceClient.getPublicPreferences(AbstractDOMUserMetadataServiceClient.java:620)
         at worklistapp.servlets.BaseServlet.initApplicationPreferences(BaseServlet.java:556)
         at worklistapp.servlets.BaseServlet.validateSession(BaseServlet.java:183)
         at worklistapp.servlets.BaseServlet.doGet(BaseServlet.java:140)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:712)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:369)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:865)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:447)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:215)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
         at java.lang.Thread.run(Thread.java:595)

Maybe you are looking for