Configuraing the Durable process in Oracle BPEL

Hi,
We are working on Oracle BPEL process manager version 10.1.2, in development mode with Oracle lite for the dehydration data source.
Requirement:
We need to create the long-living and durable process which invokes the Web Services deployed in the JBOSS and Weblogic application servers. The operation in these web services are Request-Response messages and takes about 5 minutes to give the response back. During the execution of process instance if Oracle BPEL server gets re-started We need the BPEL Server to resume the instance execution from the place where it had stopped when it went down.
Implementation:
We have created the Asynchronous business process to orchestrate the invocation of web services said above. And added the WAIT activity for 2 seconds to ensure the dehydrations points. Since the Web Services are invoked synchronously we had used the WAIT activity to set the dehydration points. When the server is alive during the complete execution dehydration happens perfectly and receive the final result after 10+ mins.
Issue:
When the BPEL server goes down during the process execution then it is not resuming the process instance from the place where it stopped.
Please suggest me what kind of configurations that i need to make to the process or domain so that when Oracle BPEL server re-started, it could resume the execution of active process instance.
Thanks in Advance.
Sujatha

Perhaps this presentation:
http://www.oracle.com/technology/products/ias/bpel/pdf/bpel-admin-webinar.pdf
or
http://download-uk.oracle.com/docs/cd/B31017_01/core.1013/b28941/soa.htm#BGBJIFHH

Similar Messages

  • Automatic refresh the alarm table in oracle bpel 10.1.3.5 on Linux

    Automatic refresh the alarm table in oracle bpel 10.1.3.5 on Linux
    I have bpel process with wait activity ..those are getting hang during thre processing. when I
    refresh the alaram table..they are processing normally.
    Is there a way to refresh the alarm table automatically for every few minutes.?
    I have checked the Best Practices Guide
    Tuning
    com.oracle.bpel.expirationAgent.threadCount = 50
    and com.oracle.bpel.threadPool.threadCount = 5
    Does not help. What I am after is some way for an automatic refresh to be done say every 1hr or so.
    Can this be done?? If YES, how??

    Hi,
    I had a similar requirement a while back, since due to poor system config we also Wait timers not expiring on time. I couldn't find a method within BPEL console to do this automatically.
    I'm not a Java developer, but at the time I did use google to and put together the following. I can't tell if it is working since there is nothing written in the BPEL logs to indicate the refresh. My plan was to develop a script to detect waits not expiring, and then to run the java (below).
    I used the the following blog as the basis : http://oraclebpelindepth.blogspot.com/2008/09/undeploy-bpel-with-java.html
    import java.util.Properties;
    import com.oracle.bpel.client.IBPELDomainHandle;
    import com.oracle.bpel.client.Locator;
    import com.oracle.bpel.client.ServerException;
    import com.oracle.bpel.client.BPELDomainStatus;
    import com.oracle.bpel.client.Server;
    import com.oracle.bpel.client.auth.ServerAuth;
    import com.oracle.bpel.client.auth.ServerAuthFactory;
    public class DoRefreshAlarmTable {
         public static void main(String[] args) throws ServerException {
              //Properties with BPEL server connection information
              Properties props = new Properties();
              props.put("orabpel.platform", "ias_10g");
              props.put("java.naming.factory.initial", "com.evermind.server.rmi.RMIInitialContextFactory");
              props.put("java.naming.provider.url", "opmn:ormi://omv2rrm2:6003:oc4j_soa/orabpel");
              props.put("java.naming.security.principal", "oc4jadmin");
              props.put("java.naming.security.credentials", "pass4bpel");
              props.put("dedicated.connection","true");
              //Get a locator in default domain
              Locator locator = new Locator("default","welcome1",props);
              //Get a handle to the domain
              IBPELDomainHandle iBPELDomainHandle = locator.lookupDomain();
              //Refresh the alarm table
              iBPELDomainHandle.refreshAlarmTable();
    Edited by: Anit Patel on Jan 20, 2012 10:46 AM

  • BPEL Process Manager Oracle BPEL Domain Initialization Failed

    I was able to login into BPEL Process Manager without any error. Then I changed one entry in the oc4j-ra.xml file and restarted the BPEL server and started getting the error message.
    Oracle BPEL Domain Initialization Failed
    The Oracle BPEL Domain default did not initialize successfully. The following error was detected during startup. Please contact the Oracle Support
    Team if you are not able to resolve this problem.
    Reported Error:
    Cannot lookup jdbc datasource.
    The process domain was unable to lookup the TX datasource "eis/DB/DBConnection1".
    Please check that the machine hosting the datasource is physically connected to the network. Additionally check that the
    connection pool properties as defined in the application server startup
    properties are valid.
    I put back the original oc4j-ra.xml back in appropriate dir , restarted the BPEL server and database server still getting the same errro message listed above, It's urgent can anybody post the possible solution/suggestion experience.
    Thanks

    I opened the file under
    ./application-deployments/default/DbAdapter/oc4j-ra.xml and it has the following entry
    <connector-factory location="eis/DB/DBConnection1" connector-name="Database Adapter">
    <config-property name="xADataSourceName" value="jdbc/DBConnection1DataSource"/>
    <config-property name="dataSourceName" value="loc/DBConnection1DataSource"/>
    <config-property name="platformClassName" value="oracle.toplink.platform.database.Oracle9Platform"/>
    <config-property name="usesNativeSequencing" value="true"/>
    <config-property name="sequencePreallocationSize" value="50"/>
    <config-property name="defaultNChar" value="false"/>
    <config-property name="usesBatchWriting" value="true"/>
    <connection-pooling use="none">
    </connection-pooling>
    <security-config use="none">
    </security-config>
    </connector-factory>
    I opened that file (
    ./connectors/DbAdapter/DbAdapter/META-INF/oc4j-ra.xml) and it has no entry for
    <connector-factory location="eis/DB/DBConnection1" connector-name="Database Adapter">
    <config-property name="xADataSourceName" value="jdbc/DBConnection1DataSource"/>
    <config-property name="dataSourceName" value="loc/DBConnection1DataSource"/>
    <config-property name="platformClassName" value="oracle.toplink.platform.database.Oracle9Platform"/>
    <config-property name="usesNativeSequencing" value="true"/>
    <config-property name="sequencePreallocationSize" value="50"/>
    <config-property name="defaultNChar" value="false"/>
    <config-property name="usesBatchWriting" value="true"/>
    <connection-pooling use="none">
    </connection-pooling>
    <security-config use="none">
    </security-config>
    </connector-factory>
    So I entered this and restarted the BPEL PM but still no luck,
    Is anything else I will be looking in that file let me know

  • Error during calling BPEL Process Using Oracle BPEL Process Manager Client

    hi,
    I have the following error during Calling BPel process and I can not detect the reason :
    Exception in thread "main" java.lang.NoClassDefFoundError: javax/ejb/EJBException
         at com.oracle.bpel.client.util.ExceptionUtils.handleServerException(ExceptionUtils.java:76)
         at com.oracle.bpel.client.delivery.DeliveryService.getDeliveryBean(DeliveryService.java:254)
         at com.oracle.bpel.client.delivery.DeliveryService.request(DeliveryService.java:83)
         at com.oracle.bpel.client.delivery.DeliveryService.request(DeliveryService.java:53)
         at portlet.BPELProcess.startProcess(BPELProcess.java:68)
         at portlet.BPELProcess.main(BPELProcess.java:89)
    My Code :
    locator = new Locator("default", "welcome1");
    deliveryService = (IDeliveryService)locator.lookupService(IDeliveryService.SERVICE_NAME);
    String SchemaInputXML = "<soap:Envelope xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">\n" +
    " <soap:Header/>\n" +
    " <soap:Body xmlns:ns1=\"http://www.globalcompany.com/ns/sales\">\n" +
    " <ns1:User>\n" +
    " <ns1:FirstName>787878</ns1:FirstName>\n" +
    " <ns1:LastName>ujfyytytry</ns1:LastName>\n" +
    " </ns1:User>\n" +
    " </soap:Body>\n" +
    "</soap:Envelope>\n";
    NormalizedMessage nm = new NormalizedMessage();
    nm.addPart("payload", SchemaInputXML);
    deliveryService.request("userBPEL", "initiate", nm); --> here exception appear
    userBPEL is my Process Name
    initiate is BPel method

    Message was edited by:
    Marc Kelderman

  • Performance measure for BPEL process using Oracle BPEL Process Analytics

    Hi All,
    For measuring perfomance of a bpel process, can we use Process Analytics? Is this to be purchased separately? Is any other tool available which can be used measuring performance of a bpel process. & produces graphical reports etc? (product / open source)
    Your help is highly appreciated.
    Thanks in advance.
    Regards

    yeah you are 100% correct ..
    I have attached some stuff for CDH integration, where we used plsql to send out info on a created record to a queue.
    CREATE OR REPLACE
    TYPE XXBPEL_MESSAGE_TYPE AS OBJECT (
    MSG_ID VARCHAR2(128),
    INREPLYTO_MSG_ID VARCHAR2(128),
    FROM_PARTY VARCHAR2(512),
    TO_PARTY VARCHAR2(512),
    ACTION_NAME VARCHAR2(512),
    MSG_TYPE INT,
    PAYLOAD CLOB,
    ATTACHMENT BLOB
    EXECUTE DBMS_AQADM.create_queue_table (queue_table => 'XXBPEL_QTAB',queue_payload_type => 'XXBPEL_MESSAGE_TYPE',multiple_consumers => TRUE);
    EXECUTE DBMS_AQADM.create_queue (queue_name => 'XXBPEL_OUT_QUEUE',queue_table => 'XXBPEL_QTAB');
    EXECUTE DBMS_AQADM.start_queue(queue_name => 'XXBPEL_OUT_QUEUE',dequeue => TRUE,enqueue => TRUE);
    On BPEL side creata a process that listens to this queue (with and AQ partnerlink) as shown in $BPEL_HOME/integration\orabpel\samples\tutorials\124.AQAdapter\MulticonsumerInbound
    thx clemens

  • How to install Oracle BPEL Process Manager for OracleAS Middle Tier

    hi,
    i need to install BPEL process manager, so i download the following file from otn
    1.soa_windows_x86_101310_disk1
    2.soa_windows_x86_bpel_101310
    here i read the document named b28980.pdf from bpel\doc\pc.1012 to install BPEL PM
    so i start to complete the pre-installation task
    1.installed Oracle database 10g
    2.Run the Integration Repository Creation Assistant on the Database
    3.Install Oracle Application Server 10g Release3 (10.1.3.1.0) and select either the J2EE Server installation type or the J2EE and Web Server installation type. selected J2EE and Web Server installation type
    and installed according to the Oracle application server installation guide.
    installed OracleAS in the path : D:\product\10.1.3.1\OracleAS_1
    4.Install the current release of Oracle BPEL Process Manager for OracleAS Middle Tier
    here they mention to select the J2EE and Web Server installation type because that type is selected in Oracle AS installed in Oracle Application Server
    so i start to install the BPEL PM by selecting the setup.exe-->and shows the location source and destination
    default destination is : D:\product\10.1.3.1\OraBPEL_1 selected next on the screen
    the next screen is select installation type here there are two types named
    1.BPEL process Manager for Developer (371MB)
    2.BPEL process manager for Oracle AS Middle tier (107MB)
    i selected 2.BPEL process manager for Oracle AS Middle tier (107MB) and click next
    pop up window opens with title dependencies
    error:
    BPEL Process manager for oracle AS Middle tier will run on top of a supported Oracle Application Server 10.1.3.1.0 J2EE server and Web Server Or J2EE server instance. this location does not contain this instance. Please select new Oracle home that contains a supported instance.
    so i changed the destination path to : D:\product\10.1.3.1\OracleAS_1\BIN then also i got the same error.
    please any one mention the path for J2EE and Web Server instance for installing the BPEL PM for Oracle AS Middle Tier.
    Thanks in Advance
    Aswath Thaniga

    If you choose the developer version you will be fine.
    If you have installed J2EE and Web Server installation into D:\product\10.1.3.1\OracleAS_1 then this is the location you install your BPEL PM into, not D:\product\10.1.3.1\OraBPEL_1 or D:\product\10.1.3.1\OracleAS_1\BIN.
    D:\product\10.1.3.1\OracleAS_1 is what we call the ORACLE_HOME, generally we create a new home for each install, but in this case there is a dependency on 10.1.3.1 OC4J container. So it needs to be installed into 10.1.3.1 oracle home.
    The bin directory is just the executables for that home, its not the actual. home.
    cheers
    James

  • Dowload Oracle BPEL Process Manager

    Greetings,
    where can i download the free trial of Oracle BPEL Process Manager?
    Cheers!!

    http://www.oracle.com/technology/software/htdocs/devlic.html?http://www.oracle.com/technology/software/products/ias/bpel/index.html
    Cheers, OTN
    Message was edited by:
    jkestely

  • Installation of "Oracle BPEL Process Manager" (newbie)

    Hello,
    I need to evaluate the "Oracle BPEL Process Manager" for a seminar at my university.
    I am completely new to the BPEL topic and I need some help installing the "BPEL Process Manage".
    1) I downloaded the file "Oracle BPEL Process Manager (10.1.3.1.0)" for x86 Windows. 340 MB ; filename: "soa_windows_x86_bpel_101310.zip"
    2) In the Install Guide of that package it says there are two installation scenarios:
    ■ Scenario 1: Oracle BPEL Process Manager with Oracle SOA Suite
    ■ Scenario 2: Oracle BPEL Process Manager for OracleAS Middle Tier
    I think the best and easiest (and smallest?) for me is the first one "with Oracle SOA Suite". But the Guide I have is only for the second Scenario.
    It says the first one would be explained in the guide "Oracle Application Server 10g Release 3 (10.1.3.1.0) Installation Guide", but there's nothing said about BPEL ! ??
    Do I have to download the complete "Oracle SOA Suite 10g (10.1.3.x)" ?!
    Or can I just try to execute the setup of my "Oracle BPEL Process Manager (10.1.3.1.0)" without a guide?
    I'm really confused here and help would be much appreciated.
    regards

    545515 wrote:
    Anirudh Pucha wrote:
    This is the simplest for you for small demos/testcases : http://download.oracle.com/docs/cd/B31017_01/win.1013/install/basic_install.htm#BABCHEJI
    that segment will lead for installatoin of the SOA with the datbase Lite. Can Lite database work for the tutorals or cause problems for the SOA 10.1.3.4 upgrade etc?? I guess there may be scripts built not for the lite db in the examples and the upgrade.Question, what would be the Lite database name? I have loaded SOA 10.1.3.1 with Olite. Now try to upgrade it to SOA 10.1.3.4.
    the part of the upgrade is to run the upgrade scritps. Since the db is lite, we have to use msql via jdbc connection. But I have no idea what's the db name created under 10.1.3.1. Checked ORACLE_HOME/install/readme, there seem no such info. it could be the instance name in the readme. But had it tried, no work.

  • Oracle BPM Suite : Oracle BPM vs Oracle BPEL PM

    Hi All,
    I am new in Oracle BPM and how some experience learning how to use Oracle BPM. Now when reading about the components products inside "Oracle BPM Suite" in detail , I am some what confuse about :
    1) In What situation that we should use "Oracle BPM" rather than "Oracle BPEL PM" ?
    2) In What situation that we should use "Oracle BPEL PM" rather than "Oracle BPM" ?
    I am confuse about these issue since both of the products come together when we order "Oracle BPM Suite" and both of the products can be used for "HUman Workflow Applications" as well
    Could you please help clarify these issues ? Thank you very much in advance.
    Best Regards
    Pearapon S.

    Hi Pearapon,
    You’ve raised a good point.
    Every once in a while, I see an article written by a BPM pundit that attempts to make the case that the BPMN approach (Oracle BPM uses this) is superior to the BPEL approach or vice versa. Here's one example on InfoQ - http://www.infoq.com/articles/bpelbpm. Its title "Why BPEL is not the holy grail for BPM" is very misleading. This is a typical example of an author sitting in either the BPMN or BPEL camp criticizing the other camp's standard. In this article, the author attempts to indict all BPMN to BPEL conversion attempts based on the author's poorly drawn process.
    Although I know that controversy boosts readership of these types of articles, in my opinion it’s not a “vs.”. Both the BPMN and BPEL standards have strengths when used with certain use cases.
    Here’s one scenario where Oracle BPM and Oracle BPEL PM are synergistic. My background is with Oracle BPM, but I’ve used Oracle BPEL PM on a project for the orchestration of composite services. I used Oracle BPM to model the business processes understood by executives, managers, subject matter experts, business analysts and developers. Using the same simple role based activity flow process diagram, everyone understands what the business problem is and how the process will work solve the problem. The Oracle BPM Automatic activities in the process hit Oracle BPEL processes. Here we used the BPEL processes to hit and orchestrate the underlying IT components . We exposed the BPEL processes using the customer’s service bus and we invoked it from the Oracle BPM process’s Automatic activity (Oracle BPM -> OSB -> Oracle BPEL). Alternatively, If the customer had not had a service bus, I could have invoked the BPEL process directly from the Oracle BPM process via a cataloged web service in Oracle BPM.
    Hope this helps,
    Dan

  • Can Oracle BPEL handle Doc/Lit SOAP with Attachments?

    I have successfully followed the instructions for using Oracle BPEL 10.1.3.4 to handle SOAP With Attachments with an RPC-style WSDL, detailed here:
    http://download-west.oracle.com/docs/cd/B31017_01/integrate.1013/b28981/manipdoc.htm#sthref955
    I have a simple Echo service that receives and attachment and responds with the same attachment.
    I actually would like to accomplish the same thing using a Doc/Literal Wrapped WSDL. My initial testing shows that BPEL can indeed receive the attachment ( I can see it in the dehydration store), but it is not added to the response.
    Is this possible using Doc/Lit with SwA in BPEL 10.1.3.4?

    As I've investigated the issue some more, I've found that the real issue is receiving an attachment on the SOAP response from the BPEL process. Using a Doc/Lit-Wrapped WSDL, I can receive a request with an attachment, and add it to outgoing requests successfully. But when I do a straight copy from the request message to the response message (Echo Service), the response contains the correct "href" attribute but there is no attachment, and moreover, no MIME multipart message is returned.
    NOTE: I was successful in using an RPC/Literal WSDL to accomplish the successful echo of the attachment.
    Also, when looking in the OPMN logs, I see the following line for the RPC-based BPEL process, but not for the Doc/Lit:
    <2009-11-23 13:43:35,684> <DEBUG> <attachment.collaxa.cube.engine> <CXBinaryDataHandler::createDataSource> for binary location=uuid:aaa091d17e1b5545:67c00c53:1252285bf07:-7fc2
    <2009-11-23 13:43:35,716> <DEBUG> <attachment.collaxa.cube.engine.data> <ConnectionFactory::getConnection> GOT CONNECTION 1 Autocommit = false
    <2009-11-23 13:43:35,716> <DEBUG> <attachment.collaxa.cube.engine> <CXBinaryDataHandler::createDataSource> for binary location=uuid:aaa091d17e1b5545:67c00c53:1252285bf07:-7fc1
    and the "binary location" value corresponds with the "href" attribute seen in the BPEL audit logs.

  • Implementing a business process with Oracle software

    Hello Oracle community,
    I'm new to Oracle software and would like to know which tools from Oracle I need when I want to implement a WSDL based business process. All ressources I would like to access within the scope of the process are described with WSDL and I would like to model the whole process with Oracle software.
    I guess that I'll need at least the JDeveloper Suite so the post is hopefully not completely off-topic in this forum.
    In particular the questions are:
    - Which Oracle Tool can model a business process (and can handle WSDL)
    - Which Oracle Tool can implement the technical aspect of a business process (might be the same tool)
    - Which Oracle Tool (Oracle 9iAS I guess) will I need to deploy & run the finished business process
    - And the last question: does Oracle support BPEL?
    I need this informationen for my studies at my university. I hope that someone can point me in the right direction.

    Unfortunately the recently announced BPEL (Business Process Execution Language) Designer is available as an IBM Eclipse Plugin, so yes you need to be running the Eclipse IDE to be able to use the BPEL on top of Oracle Application Server (OC4J).
    A Jdeveloper plugin for BPEL I guess would be available sometime next year ?

  • Oracle BPEL PM V/S Oracle BPM

    Hi,
    Can any one please help me out to understand the difference between the Oracle Bpel Process Manager and Oracle BPM.
    I know wht she product does,but i want to understand in context of this both, i mean how this both can be used with each other.
    Thanks in advance :)

    In short BPM is used for business process orchastration. Human centric. It provides many out of the box functions like collabration, BPA sutdio which allows BA to develop processes.
    Oracle BPEL is more for automated system integration. I is common that you would use both in a process, BPEL would do some complex system integration where BPM would be used to orchastrate the business process.
    cheers
    James

  • Import oracle.bpel.worklistapp.dc.ale.beans.view.* not found

    Hello experts,
    JDeveloper cannot find the classes below:
    import oracle.bpel.worklistapp.dc.ale.beans.view.ApprovalListEditorComp;
    import oracle.bpel.worklistapp.dc.ale.util.ApprovalListUtil;
    Any hints about locating these classes?
    Thanks in advance!
    About
    Oracle JDeveloper 11g Release 1 11.1.1.4.0
    Studio Edition Version 11.1.1.4.0
    Build JDEVADF_11.1.1.4.0_GENERIC_101227.1736.5923
    Copyright © 1997, 2011 Oracle and/or its affiliates. All rights reserved.
    IDE Version: 11.1.1.4.37.59.23
    Product ID: oracle.jdeveloper
    Product Version: 11.1.1.4.37.59.23
    Version
    Component     Version
    =========     =======
    ADF Business Components     11.1.1.59.23
    BPMN Editor     11.1.1.4.0.5682
    Java(TM) Platform     1.6.0_24
    Oracle IDE     11.1.1.4.37.59.23
    SOA Composite Editor     11.1.1.4.0.56.82
    Versioning Support     11.1.1.4.37.59.23
    Extensions
    Name     Identifier     Version     Status
    ====     ==========     =======     ======
    ADF Business Components     oracle.BC4J     11.1.1.4.37.59.23     Loaded
    ADF Business Components Dependency     oracle.bc4j.dependency     11.1.1.4.37.59.23     Loaded
    ADF Business Components Deployment     oracle.bc4jdt.deploy     11.1.1.4.37.59.23     Loaded
    ADF Business Components Modeler     oracle.adfbcdt.modeler     11.1.1.4.37.59.23     Loaded
    ADF Business Components Syscat     oracle.bc4j.syscat     0     Loaded
    ADF Business Components Tester     oracle.bc4j.tester     11.1.1.4.37.59.23     Loaded
    ADF Common Audit     oracle.adf.common.audit     0     Loaded
    ADF Context Debugger     oracle.adf.share.debug     11.1.1.4.37.59.23     Loaded
    ADF Controller Configuration Design Time     oracle.adf.controller.config.dt     11.1.1.4.37.59.23     Loaded
    ADF Data Visualizations Design Time Tests     oracle.dvt.dt     11.1.1.4.37.59.23     Loaded
    ADF Debugger     oracle.adf.debug     11.1.1.4.37.59.23     Loaded
    ADF Debugger Diagram Support     oracle.adf.debug.diagram     11.1.1.4.37.59.23     Loaded
    ADF Desktop Integration Design Time     oracle.adfdt.desktopintegration     11.1.1.4.37.59.23     Loaded
    ADF Faces Cache     oracle.webcache     11.1.1.4.37.59.23     Loaded
    ADF Faces Data Visualization Tools Help     oracle.dvt-faces-doc     11.1.1.0.0     Loaded
    ADF Faces Databinding Design Time     oracle.adf-faces-databinding-dt     11.1.1.4.37.59.23     Loaded
    ADF Faces Design Time     oracle.adf-faces-dt     11.1.1.4.37.59.23     Loaded
    ADF Faces Design Time Migration     oracle.adffacesdt.migration     11.1.1.4.37.59.23     Loaded
    ADF Faces Runtime Help     oracle.adf-faces-rt-doc     11.1.1.0.0     Loaded
    ADF Faces Skin Design Time     oracle.adf-faces-skin-dt     11.1.1.4.37.59.23     Loaded
    ADF JMX Data Control Designtime     oracle.adf.jmxdc     11.1.1.4.37.59.23     Loaded
    ADF Java Server Faces Diagram     oracle.adf.jsf.diagram     11.1.1.4.37.59.23     Loaded
    ADF Library Design Time     oracle.jdeveloper.adflibrary     11.1.1.4.37.59.23     Loaded
    ADF Lifecycle Design Time     oracle.adf.lifecycle.dt     11.1.1.4.37.59.23     Loaded
    ADF Management Pages     oracle.adf.management     11.1.1.4.37.59.23     Loaded
    ADF Menu Model Design-Time     oracle.adfmenudt     11.1.1.4.37.59.23     Loaded
    ADF Page Flow Design Time     oracle.adf.pageflow.dt     11.1.1.4.37.59.23     Loaded
    ADF Page Flow Design Time Extras     oracle.adf.pageflow.dt.extras     11.1.1.4.37.59.23     Loaded
    ADF Page Template DT     oracle.adf-faces-templating-dt     11.1.1.4.37.59.23     Loaded
    ADF Region Design Time     oracle.adf-faces-region-dt     11.1.1.4.37.59.23     Loaded
    ADF Struts Page Flow Modeler     oracle.struts.adf     11.1.1.4.37.59.23     Loaded
    ADF Struts and Model One Databinding     oracle.adf.struts.and.model.one.databinding.dt     11.1.1.4.37.59.23     Loaded
    ADF Swing     oracle.adfdt.swingcore     11.1.1.4.37.59.23     Loaded
    ADF View Debugging Design Time     adf.view.debugging.dt     11.1.1.4.37.59.23     Loaded
    ADFv Common Databinding     oracle.adf-view-databinding-dt     11.1.1.4.37.59.23     Loaded
    Ant     oracle.ant     11.1.1.4.37.59.23     Loaded
    Application Server Manager     oracle.jdeveloper.asnav     11.1.1.4.37.59.23     Loaded
    Application State - Application Navigator     oracle.ideimpl.appstate.appnav     11.1.1.4.37.59.23     Loaded
    Application State - Editors     oracle.ide.appstate.editors     11.1.1.4.37.59.23     Loaded
    Application State Manager     oracle.ide.appstate     11.1.1.4.37.59.23     Loaded
    Archive Compare     oracle.jdeveloper.archive-compare     11.1.1.4.37.59.23     Loaded
    BAM     oracle.bam     11.1.1     Loaded
    BI Beans Graph     oracle.bibeans     11.1.1.4.37.59.23     Loaded
    BM metamodel framework     oracle.bm.meta     11.1.1.4.37.59.23     Loaded
    Bug Reporter     oracle.jdeveloper.bugfiler     11.1.1.4.37.59.23     Loaded
    Business Modelers     oracle.bm     11.1.1.4.37.59.23     Loaded
    Check For Updates     oracle.ide.webupdate     11.1.1.4.37.59.23     Loaded
    Code Editor     oracle.ide.ceditor     11.1.1.4.37.59.23     Loaded
    Command Line Formatting Support     oracle.jdeveloper.ojformat     11.1.1.4.37.59.23     Loaded
    Command Line Make/Rebuild Support     oracle.jdevimpl.oj-compiler     11.1.1.4.37.59.23     Loaded
    Common Controller Design-Time     oracle.controller.dt     11.1.1.4.37.59.23     Loaded
    Common Page Flow Design-Time     oracle.pageflow.dt     11.1.1.4.37.59.23     Loaded
    Component Palette     oracle.ide.palette1     11.1.1.4.37.59.23     Loaded
    Controller to ADF Bindings Bridge     oracle.controller.bindings.dt     11.1.1.4.37.59.23     Loaded
    Database Connection Support     oracle.jdeveloper.db.connection     11.1.1.4.37.59.23     Loaded
    Database Features (JDeveloper)     oracle.jdeveloper.db     11.1.1.4.37.59.23     Loaded
    Database Features (SQLDeveloper in JDeveloper)     oracle.jdeveloper.db.navigator     11.1.1.4.37.59.23     Loaded
    Database Modeler     oracle.dbmodeler     11.1.1.4.37.59.23     Loaded
    Database Modeler Migration     oracle.dbmodeler.migrate     11.1.1.4.37.59.23     Loaded
    Database Object Dependency API Support     oracle.jdeveloper.db.dependency     11.1.1.4.37.59.23     Loaded
    Database Object Explorers     oracle.ide.db.explorer     11.1.1.4.37.59.23     Loaded
    Database Object Transfer Framework     oracle.jdeveloper.db.transfer     11.1.1.4.37.59.23     Loaded
    Database UI     oracle.ide.db     11.1.1.4.37.59.23     Loaded
    Design Time Resource Bundle Variable Resolver     oracle.jdeveloper.resourcebundle.resolver.dt     11.1.1.4.37.59.23     Loaded
    Diagram Framework     oracle.diagram     11.1.1.4.37.59.23     Loaded
    Diagram Framework Toplink extensions     oracle.diagram.toplink     11.1.1.4.37.59.23     Loaded
    Diagram Javadoc Extension     oracle.diagram.javadoc     11.1.1.4.37.59.23     Loaded
    Diagram Thumbnail     oracle.diagram.thumbnail     11.1.1.4.37.59.23     Loaded
    Diagram to XMLEF Bridge     oracle.diagram.xmlef     11.1.1.4.37.59.23     Loaded
    Diff/Merge     oracle.ide.diffmerge     11.1.1.4.37.59.23     Loaded
    EJB     oracle.ejb     11.1.1.4.37.59.23     Loaded
    EJB Modeler     oracle.ejbmodeler     11.1.1.4.37.59.23     Loaded
    Editor Tint     oracle.ide.ceditor-tint     11.1.1.4.37.59.23     Loaded
    Editor Tint (Java)     oracle.jdeveloper.ceditor-tint-java     11.1.1.4.37.59.23     Loaded
    Extended IDE Platform     oracle.javacore     11.1.1.4.37.59.23     Loaded
    Extension Designtime Core     oracle.jdeveloper.extensiondt.core     11.1.1.4.37.59.23     Loaded
    Extension Designtime UI     oracle.jdeveloper.extensiondt.ui     11.1.1.4.37.59.23     Loaded
    External Tools     oracle.ide.externaltools     11.1.1.4.37.59.23     Loaded
    Feedback     oracle.ide.feedback     11.1.1.4.37.59.23     Loaded
    File Support     oracle.ide.files     11.1.1.4.37.59.23     Loaded
    Fusion Application Overview Definition     oracle.ide.appoverview.fusion.definition     11.1.1.4.37.59.23     Loaded
    Fusion Web Application (ADF) Template     oracle.adf.webapp.template     11.1.1.4.37.59.23     Loaded
    Go to File     oracle.ide.gotofile     11.1.1.4.37.59.23     Loaded
    Go to Java Type     oracle.jdeveloper.gotojava     11.1.1.4.37.59.23     Loaded
    HTML     oracle.html     11.1.1.4.37.59.23     Loaded
    Help System     oracle.ide.help     11.1.1.4.37.59.23     Loaded
    History Support     oracle.jdeveloper.history     11.1.1.4.37.59.23     Loaded
    IDE Reports Extension     oracle.ide.report     11.1.1.4.37.59.23     Loaded
    Import/Export Support     oracle.ide.importexport     11.1.1.4.37.59.23     Loaded
    Index Migrator support     oracle.ideimpl.indexing-migrator     11.1.1.4.37.59.23     Loaded
    J2EE     oracle.j2ee     11.1.1.4.37.59.23     Loaded
    J2EE     oracle.j2ee.webapp.ve     11.1.1.4.37.59.23     Loaded
    J2EE     oracle.j2ee.webapp.ve.facelets     11.1.1.4.37.59.23     Loaded
    J2EE CSS     oracle.css     11.1.1.4.37.59.23     Loaded
    J2EE Faces Config     oracle.j2ee.facesconfig     11.1.1.4.37.59.23     Loaded
    J2EE Web App     oracle.j2ee.webapp     11.1.1.4.37.59.23     Loaded
    J2EE-ADRS     oracle.j2ee.adrs     11.1.1.4.37.59.23     Loaded
    J2ee extension help     oracle.j2ee.help     11.1.1.0.0     Loaded
    JDeveloper     oracle.jdeveloper     11.1.1.4.37.59.23     Loaded
    JDeveloper Runner     oracle.jdeveloper.runner     11.1.1.4.37.59.23     Loaded
    JGoodies Forms     oracle.jdeveloper.jgoodies     11.1.1.4.37.59.23     Loaded
    JPublisher     oracle.jdeveloper.db.jpub     11.1.1.4.37.59.23     Loaded
    JSON Language support     oracle.jdeveloper.json     11.1.1.4.37.59.23     Loaded
    JUnit Integration     oracle.jdeveloper.junit     11.1.1.4.37.59.23     Loaded
    JViews Registration Addin     oracle.diagram.registration     11.1.1.4.37.59.23     Loaded
    Java Annotation Inspector     oracle.jdeveloper.annotation.inspector     11.1.1.4.37.59.23     Loaded
    Java Breadcrumbs     oracle.jdeveloper.ceditor-breadcrumbs-java     11.1.1.4.37.59.23     Loaded
    Java Class Modeler     oracle.javamodeler     11.1.1.4.37.59.23     Loaded
    Java Modeler Toplink extensions     oracle.javamodeler.toplink     11.1.1.4.37.59.23     Loaded
    Java Server Faces Page Flow Modeler     oracle.jsfmod     11.1.1.4.37.59.23     Loaded
    Java Structure Compare     oracle.jdeveloper.java-compare     11.1.1.4.37.59.23     Loaded
    Java Type Search     oracle.jdeveloper.searchbar.java     11.1.1.4.37.59.23     Loaded
    Java extension help     oracle.java.help     11.1.1.0.0     Loaded
    JavaBeans, Swing, and AWT     oracle.swingawt     11.1.1.4.37.59.23     Loaded
    JavaScript Language Support     oracle.ide.javascript     11.1.1.4.37.59.23     Loaded
    Jdeveloper UI Editor     oracle.jdeveloper.uieditor     11.1.1.4.37.59.23     Loaded
    Jdeveloper XML Extension     oracle.jdeveloper.xml     11.1.1.4.37.59.23     Loaded
    Legacy Controller Design-Time     oracle.controller.bm.dt     11.1.1.4.37.59.23     Loaded
    Legacy Preferences integration for BM     oracle.modeler.bm.prefs     11.1.1.4.37.59.23     Loaded
    Log Window     oracle.ide.log     11.1.1.4.37.59.23     Loaded
    MDS Extension     oracle.mds     11.1.1.4.37.59.23     Loaded
    MOF Ide Integration     oracle.mof.ide     11.1.1.4.37.59.23     Loaded
    MOF Modeler Integration     oracle.modeler.mof     11.1.1.4.37.59.23     Loaded
    Mac OS X Adapter     oracle.ideimpl.apple     11.1.1.4.37.59.23     Loaded
    Modeler Framework     oracle.modeler     11.1.1.4.37.59.23     Loaded
    Modeler Framework Common Layer     oracle.modeler.common     11.1.1.4.37.59.23     Loaded
    Modelling migration from BM     oracle.modeler.bm.migrate     11.1.1.4.37.59.23     Loaded
    Navigator     oracle.ide.navigator     11.1.1.4.37.59.23     Loaded
    Nightly Indexing support     oracle.ideimpl.indexing-rt     11.1.1.4.37.59.23     Loaded
    OAR/MAR/SAR Deployment Support Extension     oracle.deploy.orapp     11.1.1.4.37.59.23     Loaded
    OWSM Policy Manager Installer     oracle.jdeveloper.webservice.wsmpm.installer     11.1.1.4.37.59.23     Loaded
    Object Gallery     oracle.ide.gallery     11.1.1.4.37.59.23     Loaded
    Object Viewer     oracle.sqldeveloper.oviewer     11.1.1.64.46     Loaded
    Offline Database     oracle.jdeveloper.offlinedb     11.1.1.4.37.59.23     Loaded
    Offline Database Import/Generate     oracle.jdeveloper.offlinedb.transfer     11.1.1.4.37.59.23     Loaded
    Offline Database Reports Extension     oracle.jdeveloper.offlinedb.report     11.1.1.4.37.59.23     Loaded
    Offline Database SXML     oracle.jdeveloper.offlinedb.sxml     11.1.1.4.37.59.23     Loaded
    Offline Database User Properties     oracle.jdeveloper.offlinedb.userprops     11.1.1.4.37.59.23     Loaded
    Offline Database User Properties SXML     oracle.jdeveloper.offlinedb.userprops.sxml     11.1.1.4.37.59.23     Loaded
    Oracle BPEL 1.1 Designer     oracle.bpel.v1.designer     11.1.1.4.0.56.82     Loaded
    Oracle BPEL 1.1 Designer Plugins     oracle.bpel.v1.designer.plugins     11.1.1.4.0.56.82     Loaded
    Oracle BPEL 2.0 Designer     oracle.bpel.v2.designer     11.1.1.4.0.56.82     Loaded
    Oracle BPEL 2.0 Designer Plugins     oracle.bpel.v2.designer.plugins     11.1.1.4.0.56.82     Loaded
    Oracle BPEL Designer Shared Code     oracle.bpel.designer.shared     11.1.1.4.0.56.82     Loaded
    Oracle BPM DVM     oracle.bpm.dvm     11.1.1.4.0.56.82     Loaded
    Oracle BPM Internal     oracle.bpm.fusion.internal     11.1.1.4.0.5682     Loaded
    Oracle BPM Internal     oracle.bpm.resources     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal ar     oracle.bpm.resourcesrt-ar     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal cs     oracle.bpm.resourcesrt-cs     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal da     oracle.bpm.resourcesrt-da     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal de     oracle.bpm.resourcesrt-de     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal el     oracle.bpm.resourcesrt-el     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal en     oracle.bpm.resources-en     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal es     oracle.bpm.resourcesrt-es     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal fi     oracle.bpm.resourcesrt-fi     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal fr     oracle.bpm.resourcesrt-fr     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal hu     oracle.bpm.resourcesrt-hu     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal it     oracle.bpm.resourcesrt-it     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal iw     oracle.bpm.resourcesrt-iw     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal ja     oracle.bpm.resources-ja     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal ko     oracle.bpm.resourcesrt-ko     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal nl     oracle.bpm.resourcesrt-nl     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal no     oracle.bpm.resourcesrt-no     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal pl     oracle.bpm.resourcesrt-pl     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal pt     oracle.bpm.resourcesrt-pt     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal pt_BR     oracle.bpm.resourcesrt-pt_BR     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal ro     oracle.bpm.resourcesrt-ro     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal ru     oracle.bpm.resourcesrt-ru     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal sk     oracle.bpm.resourcesrt-sk     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal sv     oracle.bpm.resourcesrt-sv     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal th     oracle.bpm.resourcesrt-th     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal tr     oracle.bpm.resourcesrt-tr     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal zh_CN     oracle.bpm.resourcesrt-zh_CN     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal zh_TW     oracle.bpm.resourcesrt-zh_TW     11.1.1.0.30.50.25     Loaded
    Oracle BPM Studio     oracle.bpm.fusion.core     11.1.1.4.0.5682     Loaded
    Oracle BPM Studio     oracle.bpm.fusion.repository     11.1.1.4.0.5682     Loaded
    Oracle BPM Studio     oracle.bpm.fusion.builder     11.1.1.4.0.5682     Loaded
    Oracle BPM Studio     oracle.bpm.fusion.ui     11.1.1.4.0.5682     Loaded
    Oracle BPM Studio     oracle.bpm.fusion.studio     11.1.1.4.0.5682     Loaded
    Oracle BPM Studio     oracle.bpm.tests.jdev-test     11.1.1.4.0.5682     Loaded
    Oracle BPM Studio     oracle.bpm.fusion.jdeveloper     11.1.1.4.0.5682     Loaded
    Oracle BPM Studio     oracle.bpm.fusion.fcp     11.1.1.4.0.5682     Loaded
    Oracle BPM Studio     oracle.bpm.fusion.designer     11.1.1.4.0.5682     Loaded
    Oracle BPM Studio SOA Extension     oracle.bpm.fusion.soa     11.1.1.4.0.5682     Loaded
    Oracle BPM XREF     oracle.bpm.xref     11.1.1.4.0.56.82     Loaded
    Oracle Business Rules Designer     oracle.bpm.rules     11.1.1.4.0.56.82     Loaded
    Oracle Database Browser     oracle.sqldeveloper.thirdparty.browsers     11.1.1.64.46     Loaded
    Oracle Enterprise Repository Editor     oracle.jdeveloper.oereditor     11.1.1.4.37.59.23     Loaded
    Oracle Events Designer     oracle.bpm.events     11.1.1.4.0.56.82     Loaded
    Oracle Fabric Plugins     oracle.sca.modeler.plugins     11.1.1.4.0.56.82     Loaded
    Oracle Human Task Designer     oracle.bpm.workflow     11.1.1.4.0.56.82     Loaded
    Oracle IDE     oracle.ide     11.1.1.4.37.59.23     Loaded
    Oracle JDeveloper Spring, WebLogic SCA Integration     oracle.jdeveloper.spring     11.1.1.4.37.59.23     Loaded
    Oracle JDevloper Deployment Core Module     oracle.deploy.core     11.1.1.4.37.59.23     Loaded
    Oracle MDS Design time     oracle.mds.dt     11.1.1.4.37.59.23     Loaded
    Oracle Mobile ADF     oracle.wireless.dt     11.1.1.4.37.59.23     Loaded
    Oracle Page Templates     oracle.adf-page-template-samples     11.1.1.4.37.59.23     Loaded
    Oracle SOA Composite Editor     oracle.sca.modeler     11.1.1.4.0.56.82     Loaded
    Oracle SOA Mediator     oracle.sca.mediator     11.1.1.4.0.56.82     Loaded
    Oracle SQL Developer     oracle.sqldeveloper     11.1.1.64.46     Loaded
    Oracle SQL Developer Reports     oracle.sqldeveloper.report     11.1.1.64.46     Loaded
    Oracle SQL Developer Worksheet     oracle.sqldeveloper.worksheet     11.1.1.64.46     Loaded
    Oracle User Messaging Service Client Extension     oracle.ums.jdev     11.1.1.4.0     Loaded
    Oracle XML Schema Support     oracle.sqldeveloper.xmlschema     11.1.1.64.46     Loaded
    PL/SQL Debugger     oracle.jdeveloper.db.debug.plsql     11.1.1.4.37.59.23     Loaded
    PROBE Debugger     oracle.jdeveloper.db.debug.probe     11.1.1.4.37.59.23     Loaded
    Peek     oracle.ide.peek     11.1.1.4.37.59.23     Loaded
    Persistent Storage     oracle.ide.persistence     11.1.1.4.37.59.23     Loaded
    Profiler     oracle.jdeveloper.profiler     11.1.1.4.37.59.23     Loaded
    Properties File Support     oracle.jdeveloper.props     11.1.1.4.37.59.23     Loaded
    Property Inspector     oracle.ide.inspector     11.1.1.4.37.59.23     Loaded
    Quick Start Features for Web Applications     quickstart.webapp.dt     11.1.1.4.37.59.23     Loaded
    QuickDiff     oracle.ide.quickdiff     11.1.1.4.37.59.23     Loaded
    REST Web Services     oracle.jdeveloper.webservice.rest     11.1.1.4.37.59.23     Loaded
    Refactoring     oracle.jdeveloper.refactoring     11.1.1.4.37.59.23     Loaded
    Replace With     oracle.ide.replace     11.1.1.4.37.59.23     Loaded
    Reports Extension     oracle.javatools.report     11.1.1.4.37.59.23     Loaded
    Resource Bundle Support     oracle.ide.resourcebundle     11.1.1.4.37.59.23     Loaded
    Resource Bundle Support for Properties Files     oracle.jdeveloper.resourcebundle.props     11.1.1.4.37.59.23     Loaded
    Resource Catalog Application Server Adapter     oracle.jdeveloper.asadapter     11.1.1.4.37.59.23     Loaded
    Resource Catalog DB UI extension     oracle.jdeveloper.db.rcadapter.ui     11.1.1.4.37.59.23     Loaded
    Resource Catalog Database Adapter     oracle.jdeveloper.rcdbadapter     11.1.1.4.37.59.23     Loaded
    Resource Catalog WSIL Adapter     oracle.jdeveloper.rcwsiladapter     11.1.1.4.37.59.23     Loaded
    Resource Lookup     oracle.jdeveloper.rclookup     11.1.1.4.37.59.23     Loaded
    Runner     oracle.ide.runner     11.1.1.4.37.59.23     Loaded
    SQL*Plus Integration     oracle.jdeveloper.db.sqlplus     11.1.1.4.37.59.23     Loaded
    SQLJ     oracle.jdeveloper.sqlj     11.1.1.4.37.59.23     Loaded
    Search Bar     oracle.ide.searchbar     11.1.1.0.0     Loaded
    SearchBar Commands     oracle.ide.searchbar.commands     11.1.1.4.37.59.23     Loaded
    Searchbar Preferences     oracle.ide.searchbar.preferences     11.1.1.4.37.59.23     Loaded
    Snippet Window     oracle.sqldeveloper.snippet     11.1.1.64.46     Loaded
    Struts Page Flow Modeler     oracle.struts     11.1.1.4.37.59.23     Loaded
    Studio     oracle.studio     11.1.1.4.37.59.23     Loaded
    Studio extension help     oracle.studio.help     11.1.1.0.0     Loaded
    Template     oracle.ide.ceditor-template     11.1.1.4.37.59.23     Loaded
    TopLink     oracle.toplink     11.1.1.4.37.59.23     Loaded
    Trinidad Databinding Design Time     oracle.trinidad-databinding-dt     11.1.1.4.37.59.23     Loaded
    Trinidad Design Time     oracle.trinidad-dt     11.1.1.4.37.59.23     Loaded
    UDDI Resource Catalogue Provider     oracle.jdevimpl.uddiadapter     11.1.1.4.37.59.23     Loaded
    UML XMI     oracle.uml.v2.xmi     11.1.1.4.37.59.23     Loaded
    UML v2     oracle.uml.v2     11.1.1.4.37.59.23     Loaded
    UML v2 Activity Modeler     oracle.uml.v2.activity     11.1.1.4.37.59.23     Loaded
    UML v2 Class Diagram     oracle.uml.v2.clazz     11.1.1.4.37.59.23     Loaded
    UML v2 Migration     oracle.uml.v2.migrate     11.1.1.4.37.59.23     Loaded
    UML v2 Sequence Diagram     oracle.uml.v2.sequence     11.1.1.4.37.59.23     Loaded
    UML v2 Transformation to Java     oracle.uml.v2.umljava     11.1.1.4.37.59.23     Loaded
    UML v2 Use Case Diagram     oracle.uml.v2.usecase     11.1.1.4.37.59.23     Loaded
    UML2 Modelers Common Classes     oracle.uml.v2.modeler     11.1.1.4.37.59.23     Loaded
    URL Connection Designtime     oracle.jdevimpl.urlconn     0     Loaded
    VHV     oracle.ide.vhv     11.1.1.4.37.59.23     Loaded
    Versioning Support     oracle.jdeveloper.vcs     11.1.1.4.37.59.23     Loaded
    Versioning Support for Subversion     oracle.jdeveloper.subversion     11.1.1.4.37.59.23     Disabled by user
    Virtual File System     oracle.ide.vfs     11.1.1.4.37.59.23     Loaded
    WSDL Chooser     oracle.jdeveloper.wsdllookup     11.1.1.0.0     Loaded
    WSDL web services extension     oracle.jdevimpl.wsdl     11.1.1.4.37.59.23     Loaded
    Web Browser and Proxy     oracle.ide.webbrowser     11.1.1.4.37.59.23     Loaded
    Web Services     oracle.jdeveloper.webservice     11.1.1.4.37.59.23     Loaded
    WebDAV Connection Support     oracle.jdeveloper.webdav2     11.1.1.4.37.59.23     Loaded
    WebStart     oracle.j2ee.webstart     11.1.1.0.0     Loaded
    XML Compare     oracle.jdeveloper.xml-compare     11.1.1.4.37.59.23     Loaded
    XML Editing Framework IDE Extension     oracle.ide.xmlef     11.1.1.4.37.59.23     Loaded
    XML Editing Framework Java Integration     oracle.jdeveloper.xmlef     11.1.1.4.37.59.23     Loaded
    XSL Mapper     oracle.bpm.mapper     11.1.1.4.0.56.82     Loaded
    adf-deploy-dt     oracle.adfdt.common.deploy     11.1.1.4.37.59.23     Loaded
    adf-deploy-dt-mds     oracle.adfdt.common.deploy.mds     11.1.1.4.37.59.23     Loaded
    adf-installer-ide     adf.installer.dt     11.1.1.4.37.59.23     Loaded
    adf-logging-dt     oracle.adf.logging.dt     11.1.1.4.37.59.23     Loaded
    adf-model-debugger-dt     oracle.adf-model-debugger-dt     11.1.1.4.37.59.23     Loaded
    adf-model-sqldc-ide     oracle.adfm.sqldc     11.1.1.4.37.59.23     Loaded
    adf-model-tools     oracle.adf.model.tools     11.1.1.4.37.59.23     Loaded
    adf-security-policy-dt     oracle.adfdtinternal.adf-security-policy-dt     11.1.1.4.37.59.23     Loaded
    adf-share-audit     oracle.adf-share-audit     11.1.1.4.37.59.23     Loaded
    adf-share-deploy-dt     oracle.adf.share.deploy.dt     11.1.1.4.37.59.23     Loaded
    adf-share-dt     oracle.adf.share.dt     11.1.1.4.37.59.23     Loaded
    adfm-business-editor-deploy     oracle.adf.businesseditor.deploy     11.1.1.4.37.59.23     Loaded
    adfm-business-editor-ide     oracle.adf.model.businesseditor     11.1.1.4.37.59.23     Loaded
    adfm-business-editor-settings-ide     oracle.adfm.businesseditor.settings     11.1.1.4.37.59.23     Loaded
    adfmcoredt-xdf     oracle.adfm.xdf     11.1.1.4.37.59.23     Loaded
    adfquerylovdt     oracle.adf-faces-query-and-lov-dt     11.1.1.4.37.59.23     Loaded
    analytics.measurement     oracle.bpm.analytics.measurement     11.1.1.4.0.5682     Loaded
    appoverview     oracle.ide.appoverview     11.1.1.4.37.59.23     Loaded
    asnav-weblogic     oracle.jdeveloper.asnav.weblogic     11.1.1.4.37.59.23     Loaded
    audit     oracle.ide.audit     11.1.1.4.37.59.23     Loaded
    audit-core     oracle.ide.audit.core     11.1.1.4.37.59.23     Loaded
    bam     oracle.bpm.bam     11.1.1.4.0.5682     Loaded
    bcgen     oracle.bpm.bcgen     11.1.1.4.0.5682     Loaded
    bi-jdbc     oracle.bi.jdbc     11.1.1.4.37.59.23     Loaded
    boot     oracle.bpm.boot     11.1.1.4.0.5682     Loaded
    bpa     oracle.bpm.bpa     11.1.1.4.0.5682     Loaded
    bpm-services.client     oracle.bpm.bpm-services.client     11.1.1.4.0.5682     Loaded
    bpm-services.interface     oracle.bpm.bpm-services.interface     11.1.1.4.0.5682     Loaded
    bpmobject     oracle.bpm.bpmobject     11.1.1.4.0.5682     Loaded
    bpmobject.datacontrol     oracle.bpm.bpmobject.datacontrol     11.1.1.4.0.5682     Loaded
    bpmobject.runtime     oracle.bpm.bpmobject.runtime     11.1.1.4.0.5682     Loaded
    casemanagement.implementation     oracle.bpm.casemanagement.implementation     11.1.1.4.0.5682     Loaded
    chart     oracle.bpm.chart     11.1.1.4.0.5682     Loaded
    classpath: protocol handler extension     oracle.jdeveloper.classpath     11.1.1.0.0     Loaded
    compiler     oracle.bpm.compiler     11.1.1.4.0.5682     Loaded
    compiler.debug     oracle.bpm.compiler.debug     11.1.1.4.0.5682     Loaded
    compiler.xpath     oracle.bpm.compiler.xpath     11.1.1.4.0.5682     Loaded
    configuration     oracle.bpm.configuration     11.1.1.4.0.5682     Loaded
    connectors     oracle.bpm.connectors     11.1.1.4.0.5682     Loaded
    core     oracle.bpm.core     11.1.1.4.0.5682     Loaded
    db-audit     oracle.ide.db.audit     11.1.1.4.37.59.23     Loaded
    db-modeler-transform     oracle.dbmodeler.transform     11.1.1.4.37.59.23     Loaded
    dcadapters-ide     oracle.adfm.dc-adapters     11.1.1.4.37.59.23     Loaded
    dependency-java     oracle.jdeveloper.java.dependency     11.1.1.4.37.59.23     Loaded
    dependency-refactor     oracle.jdeveloper.refactoring.dependency     11.1.1.4.37.59.23     Loaded
    deploy-ant     oracle.deploy.ant     11.1.1.4.37.59.23     Loaded
    deploy-rt     oracle.jdevimpl.deploy-rt     11.1.1.4.37.59.23     Loaded
    designer     oracle.bpm.designer     11.1.1.4.0.5682     Loaded
    diagram.draw     oracle.bpm.diagram.draw     11.1.1.4.0.5682     Loaded
    diagram.editor     oracle.bpm.diagram.editor     11.1.1.4.0.5682     Loaded
    editor     oracle.bpm.editor     11.1.1.4.0.5682     Loaded
    fdi     oracle.bpm.fdi     11.1.1.4.0.5682     Loaded
    feedback-client2     oracle.ideimpl.feedback2.client     11.1.1.4.37.59.23     Loaded
    fuegoui     oracle.bpm.fuegoui     11.1.1.4.0.5682     Loaded
    fusion.sca     oracle.bpm.fusion.sca     11.1.1.4.0.5682     Loaded
    fusion.scac     oracle.bpm.fusion.scac     11.1.1.4.0.5682     Loaded
    ide-diagnostics     oracle.ide.diagnostics     11.1.1.0.0     Loaded
    j2ee-adrsimpl     oracle.j2ee.adrsimpl     11.1.1.0.0     Loaded
    j2ee-facelets     oracle.j2ee.facelets     11.1.1.4.37.59.23     Loaded
    j2ee-jpsconfig     oracle.j2ee.jpsconfig     11.1.1.4.37.59.23     Loaded
    j2ee-security     oracle.j2ee.security     11.1.1.4.37.59.23     Loaded
    j2ee-server     oracle.j2ee.server     11.1.1.0.0     Loaded
    j2ee-server-dt     oracle.j2ee.server.dt     11.1.1.4.37.59.23     Loaded
    j2ee-serverimpl     oracle.j2ee.serverimpl     11.1.1.4.37.59.23     Loaded
    j2ee-weblogic     oracle.j2ee.weblogic     11.1.1.4.37.59.23     Loaded
    j2ee-weblogic-editors     oracle.j2ee.weblogic.editors     11.1.1.4.37.59.23     Loaded
    jdukshare     oracle.bm.jdukshare     11.1.1.4.37.59.23     Loaded
    lib     oracle.bpm.lib     11.1.1.4.0.5682     Loaded
    library-dconfig-infra     oracle.jdeveloper.library.dconfig.infra     11.1.1.4.37.59.23     Loaded
    library-jee-api     oracle.jdeveloper.library.jee.api     11.1.1.4.37.59.23     Loaded
    library-jmx     oracle.jdeveloper.library.jmx     11.1.1.4.37.59.23     Loaded
    library-jps     oracle.jdeveloper.library.jps     11.1.1.4.37.59.23     Loaded
    library-weblogic-api     oracle.jdeveloper.library.weblogic.api     11.1.1.4.37.59.23     Loaded
    library-weblogic-client     oracle.jdeveloper.library.weblogic.client     11.1.1.4.37.59.23     Loaded
    mof     oracle.mof     11.1.1.4.37.59.23     Loaded
    mof-index     oracle.mof.index     11.1.1.4.37.59.23     Loaded
    mof-xmi     oracle.mof.xmi     11.1.1.4.37.59.23     Loaded
    obpi     oracle.bpm.obpi     11.1.1.4.0.5682     Loaded
    oracle.adfm     oracle.adfm     11.1.1.4.37.59.23     Loaded
    oracle.adfm.contextual     oracle.adfm.contextual     11.1.1.4.37.59.23     Loaded
    oracle.dynamic-faces-dt     oracle.dynamic.faces     11.1.1.4.37.59.23     Loaded
    oracle.ide.dependency     oracle.ide.dependency     11.1.1.4.37.59.23     Loaded
    oracle.ide.filequery     oracle.ide.filequery     11.1.1.4.37.59.23     Loaded
    oracle.ide.indexing     oracle.ide.indexing     11.1.1.4.37.59.23     Loaded
    oracle.ide.usages-tracking     oracle.ide.usages-tracking     11.1.1.4.37.59.23     Loaded
    oracle.todo.tasks     oracle.todo.tasks     11.1.1.4.37.59.23     Loaded
    palette2     oracle.ide.palette2     11.1.1.4.37.59.23     Loaded
    papi     oracle.bpm.papi     11.1.1.4.0.5682     Loaded
    parser     oracle.bpm.parser     11.1.1.4.0.5682     Loaded
    placeholder-jsf-ui     oracle.placeholderjsf-ui     11.1.1.4.37.59.23     Loaded
    placeholderdc-dt     oracle.placeholderdc.dt     11.1.1.4.37.59.23     Loaded
    pml.service     oracle.bpm.pml.service     11.1.1.4.0.5682     Loaded
    project     oracle.bpm.project     11.1.1.4.0.5682     Loaded
    project.catalog     oracle.bpm.project.catalog     11.1.1.4.0.1     Loaded
    project.command     oracle.bpm.project.command     11.1.1.4.0.5682     Loaded
    project.compile     oracle.bpm.project.compile     11.1.1.4.0.5682     Loaded
    project.draw     oracle.bpm.project.draw     11.1.1.4.0.5682     Loaded
    project.importer     oracle.bpm.project.importer     11.1.1.4.0.5682     Loaded
    project.interface     oracle.bpm.project.interface     11.1.1.4.0.5682     Loaded
    project.io     oracle.bpm.project.io     11.1.1.4.0.5682     Loaded
    project.metadata     oracle.bpm.metadata     11.1.1.4.0.5682     Loaded
    project.model     oracle.bpm.project.model     11.1.1.4.0.5682     Loaded
    project.ui     oracle.bpm.project.ui     11.1.1.4.0.5682     Loaded
    project.view     oracle.bpm.project.view     11.1.1.4.0.5682     Loaded
    rcasadapter-dt     oracle.jdeveloper.asadapter.dt     11.1.1.4.37.59.23     Loaded
    rcasadapter-oc4j     oracle.jdeveloper.asadapter.oc4j     11.1.1.4.37.59.23     Loaded
    rcasadapter-rescat2     oracle.jdeveloper.asadapter.rescat2     11.1.1.4.37.59.23     Loaded
    rcasadapter-thirdparty     oracle.jdeveloper.asadapter.thirdparty     11.1.1.4.37.59.23     Loaded
    rcasadapter-weblogic     oracle.jdeveloper.asadapter.weblogic     11.1.1.4.37.59.23     Loaded
    rcasadapter-weblogic-api     oracle.jdeveloper.asadapter.weblogic.api     11.1.1.4.37.59.23     Loaded
    rescat2     oracle.jdevimpl.rescat2     11.1.1.4.37.59.23     Loaded
    resourcebundle-api-adfdeps     oracle.jdeveloper.resourcebundle.adfdeps     11.1.1.4.37.59.23     Loaded
    resourcebundle-api-xliff     oracle.resourcebundle.xliff     11.1.1.4.37.59.23     Loaded
    resourcebundle-customization     oracle.jdeveloper.resourcebundle.customization     11.1.1.4.37.59.23     Loaded
    rmi     oracle.bpm.rmi     11.1.1.4.0.5682     Loaded
    script     oracle.bpm.script     11.1.1.4.0.5682     Loaded
    searchbar-gallery     oracle.ide.searchbar.gallery     11.1.1.4.37.59.23     Loaded
    searchbar-help     oracle.ide.searchbar.help     11.1.1.4.37.59.23     Loaded
    searchbar-index     oracle.ide.searchbar.index     11.1.1.4.37.59.23     Loaded
    soa.humantask     oracle.bpm.soa.humantask     11.1.1.4.0.5682     Loaded
    status     oracle.ide.status     11.1.1.4.37.59.23     Loaded
    tests.core     oracle.bpm.tests.core     11.1.1.4.0.5682     Loaded
    ui     oracle.bpm.ui     11.1.1.4.0.5682     Loaded
    vfilesystem     oracle.bpm.vfilesystem     11.1.1.4.0.5682     Loaded
    web.execution     oracle.bpm.web.execution     11.1.1.4.0.5682     Loaded
    xml     oracle.bpm.xml     11.1.1.4.0.5682     Loaded
    xml-schema-dt     oracle.jdevimpl.xml.schema     11.1.1.4.37.59.23     Loaded
    xobject.devel     oracle.bpm.xobject.devel     11.1.1.4.0.5682     Loaded
    xobject.runtime     oracle.bpm.xobject.runtime     11.1.1.4.0.5682     Loaded
    xsl-dt     oracle.jdevimpl.xml.xsl     11.1.1.4.37.59.23     Loaded
    xsqldt-ide     oracle.xsqldt-ide     11.1.1.4.37.59.23     Loaded

    I think you are looking for jar $MW_Home\Oracle_SOA1\soa\modules\oracle.soa.worklist_11.1.1\adflibWorklistComponents.jar ( $JDev_Home\soa\modules\oracle.soa.worklist_11
    .1.1\adflibWorklistComponents.jar)
    ApprovalListEditorComp is an interface and ApprovalListUtil is a class.
    Regards,
    Anuj

  • ESB DVM in Oracle BPEL

    Hi All,
    1)Can we use the DVM created the ESB, in Oracle BPEL.
    I checked the developer guide of ORacle BPEL 10.1.3.1,it says it is currently not supported.
    Is this supported in 10.1.3.4??
    2)I have creted a DVM in ESB control.
    The name of the DVM is Vendor.
    There are two columns inside the DVM
    columnn,value
    And there are two rows of data
    1)Currency code, GBP
    I tried using the look-upDVM function in the XSLT
    The configuration was
    <xsl:value-of select="orcl:lookup-dvm('Vendor','Column','Currency Code','Currency Code','')"/>
    But this is not fetching any value.
    Please help me i this regard.
    Regards
    Ashwini

    Hi Ashwini,
    As per the document, you can either have the DVM store din your local file system as an xml or can store it in your ESB Repository so that it can be used when you are specifying a transformation in a routing rule.
    Two possible scenarios :
    (1) You can import an XML lookup file exported from a database as the basis for a domain-value map . To import an XML lookup file exported from a database as the basis for a domain-value map.This scenario assumes that you exported the schema from the database using a tool such as XSU, and have converted the exported file to use the schema required for ESB domain-value maps.
    (2) Move a domain-value map from a test system to a production system.
    Hope that's much clear now!
    Cheers
    A

  • Issue in invoking the BPEL process from Oracle using a SOAP Request

    Hi,
    We are facing an issue while invoking a deployed Bpel Process from Oracle Applications 11.5.10..
    Using a concurrent program( Unix / Host program ) we are passing the input variables required for the Bpel process in the ProcessRequest tags and forming this as a SOAP message payload.
    Then trying to invoke the deployed bpel process using the end point location using HTTP POST..but nothing is happening..
    The bpel process is not getting invoked when i look at the Console and also checked for the Manual Recovery queue..it's not stuck there as well..
    Have set the Transfer Time Out to 25 minutes using UTL_HTTP.SET_TRANSFER_TIMEOUT(1500);
    Could someone please help us as soon as possible with this ..as this is critical and we are stuck at the moment.
    The logic is mentioned below :
    UTL_HTTP.SET_TRANSFER_TIMEOUT(1500);
    UTL_HTTP.SET_DETAILED_EXCP_SUPPORT(ENABLE=>TRUE);     
    soap_request:='<?xml version="1.0" encoding="UTF-8"?>'||
    '<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">'||
    '<soap:Header/>'||
    '<soap:Body xmlns:ns1="http://xmlns.oracle.com/bpelprocessname">'||
    '<ns1:bpelprocessnameProcessRequest>'||
    '<ns1:CSONum>'||order_number||'</ns1:CSONum>'||
    '<ns1:CreationDate>'||c_chr_cso_last_run_dte||'</ns1:CreationDate>'||
    '</ns1:bpelprocessnameProcessRequest>'||
    '</soap:Body>'||
    '</soap:Envelope>';          
    http_req:= utl_http.begin_request
    ('http://bpel_server ip:port/orabpel/domain_name/bpelprocessname/1.0' , 'POST', 'HTTP/1.1'
    utl_http.set_header(http_req, 'Content-Type', 'text/xml') ;
    utl_http.set_header(http_req, 'Content-Length', length(soap_request)) ;
    utl_http.set_header(http_req, 'SOAPAction', 'process');
    utl_http.write_text(http_req, soap_request) ;
    http_resp:= utl_http.get_response(http_req) ;
    utl_http.read_text(http_resp, soap_respond) ;
    utl_http.end_response(http_resp) ;
    dbms_output.put_line(soap_respond);
    Thanks

    check if your soap envelope is correct,check my below procedure which is working fine for me
    procedure xxxxx_BPEL_SCHEDULER
    IS
    soap_request varchar2(30000);
    soap_respond varchar2(30000);
    http_req utl_http.req;
    http_resp utl_http.resp;
    launch_url varchar2(240) ;
    begin
    soap_request:='<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:add="http://schemas.xmlsoap.org/ws/2003/03/addressing" xmlns:star="http://xmlns.oracle.com/xxxxx_BPEL_SCHEDULER">
    <soapenv:Header>
    <add:MessageID>?</add:MessageID>
    <add:ReplyTo>
    <add:Address>?</add:Address>
    <!--Optional:-->
    <add:ReferenceProperties>
    <!--You may enter ANY elements at this point-->
    </add:ReferenceProperties>
    <!--Optional:-->
    <add:PortType>?</add:PortType>
    <!--Optional:-->
    <add:ServiceName PortName="?">?</add:ServiceName>
    <!--You may enter ANY elements at this point-->
    </add:ReplyTo>
    </soapenv:Header>
    <soapenv:Body>
    <star:STARS_BPEL_SCHEDULERProcessRequest>
    <star:SCHEDULER_PARAM1>?</star:SCHEDULER_PARAM1>
    <star:SCHEDULER_PARAM2>?</star:SCHEDULER_PARAM2>
    <star:SCHEDULER_PARAM3>?</star:SCHEDULER_PARAM3>
    <star:SCHEDULER_PARAM4>?</star:SCHEDULER_PARAM4>
    <star:SCHEDULER_PARAM5>?</star:SCHEDULER_PARAM5>
    </star:STARS_BPEL_SCHEDULERProcessRequest>
    </soapenv:Body>
    </soapenv:Envelope>';
    http_req:= utl_http.begin_request('http://xxxxxx.com:16000/orabpel/default/xxxx_BPEL_SCHEDULER/1.0 '
    ,'POST',
    'HTTP/1.1'
    utl_http.set_header(http_req, 'Content-Type', 'text/xml') ;
    utl_http.set_header(http_req, 'Content-Length', length(soap_request)) ;
    utl_http.set_header(http_req, 'SOAPAction', 'initiate');
    utl_http.write_text(http_req, soap_request) ;
    http_resp:= utl_http.get_response(http_req) ;
    utl_http.read_text(http_resp, soap_respond) ;
    utl_http.end_response(http_resp) ;
    dbms_output.put_line(soap_respond);
    END;

Maybe you are looking for

  • W520: Intel HD 3000 iGPU broken?

    I've owned my W520 since they first came out well over a year ago. My system is equiped with the nVidia 2000M but I've run it in "Integrated" video mode due to my preference for a long battery life. About a month ago I switched to Optimus mode so I c

  • Lion OS incompatible with Blackboard Learning System - how do I revert to OS 10.6?

    Hi, I've just found out that my newly downloaded Lion OS is incompatible with my school's learning system (Blackboard). They are only compatible with 10.6. Any way I can work around this, or do I need to revert to 10.6? Thanks!

  • Aggregation will not perform

    I have created a cube and I am performing a series of aggregation on the following same field (as an example): MAX(DISC_USAGE), MIN(DISC_USAGE) AVG(DISC_USAGE) - My joints are validated successfully - I have the joint put thru a deduplicator operator

  • How do I control the order in which JTree displays nodes?

    I'm trying to display the nodes in a JTree in a specific fashion, but I can't figure out how to change the order JTree displays them in. It seems the default is alphabetically, with leaves first and nodes with children second. I've spent a few hours

  • CO-PA question

    What's the relationship between tables named CE1.2.3.4 and datasources created in T-code KEB0 ?