4 Connecting to Composites

Size: px
Start display at page:

Download "4 Connecting to Composites"

Transcription

1 4 Connecting to Composites 4 Connecting to Composites Prerequisites Introduction OSB to SOA Suite Direct binding What is being done? Create Direct Binding exposed service in POProcessing Composite Create soa-direct Business Service in Oracle Service Bus Update receivepo_db Proxy Service Message Flow Test Test SOA Suite to OSB Direct Binding What is being done? Create SB transport protocol Proxy Service in OSB Create Direct Binding reference in POProcessing Composite Update approvelargeorder BPEL to selectively invoke Direct Binding reference Test Test Prerequisites 4.2 Introduction Chapter One and Three Labs completed, working and deployed. SOA and Oracle Service Bus server running.. Note: The solution for this chapter can be found in /home/oracle/soaosb/solutions/chap-4. To run this solution, you must first complete Chapter 1 to set up the environment. Then, open JDev and deploy the composite solutions for POProcessing, CreditCardValidation, and ConsumeJMSFulfillmentApp from /home/oracle/soa-osb/solutions/chap-4. You will find the OSB solution config jar named chap-4-solution-sbconfig.jar. Deploy the OSB config jar first and then the SOA composites. In this chapter, you will learn to use Oracle Service Bus to Mediate Direct Binding service exposed by SOA Suite. You will use a Business Service with the soa-direct protocol in Oracle Service Bus. Use Dynamic Routing in the Proxy Service Message Flow to dynamically route between Business Services Section 4.1 Page 1 of 38

2 OSB 11gR1 Workshop Use Direct Binding Reference in SOA composite to invoke OSB Proxy Service with SB transport protocol Pega Corporation s POProcessing application has been in production for some time. This application is being extensively leveraged by the Mega Corporation to submit purchase orders. Increasing order volumes have brought in increasing demands for customer satisfaction and/or order visibility/reliability. After extensive discussions, the IT departments of both companies agreed that having transaction (and security) context propagation between the two systems will enable meeting the growing demands for customer satisfaction through improved transaction visibility/reliability. Luckily for Pega Corporation, the timing of this decision could not be better. Oracle recently released SOA Suite 11gR1 PS2 that supports a new binding called Direct Binding, which allows invoking SOA components over RMI with transaction and security context propagation from the client. Pega Corporation decides to upgrade to SOA Suite 11gR1 PS2 to leverage the Direct Binding for POProcessing. Mega Corporation will test the new binding starting with orders with low value. Orders less than $1000 will be routed to the Direct Binding service, while orders of greater value will continue to be routed to the WS Binding service. Once this section is complete the execution flow of Receive PO in the Mega Corporation will look as follows In addition, Pega Corporation decides to use Direct Binding reference in the POProcessing composite to invoke the Credit Card validation (composite) service that is virtualized using OSB. This enables POProcessing composite to propagate transaction and security context into OSB. Pega Corporation decides to test the Direct Binding using a test credit card. Hence, logic (BPEL) in the POProcessing composite is updated to use the Direct Binding reference if the credit card number is For other credit cards the WS Binding reference will be used as before. Once this section is complete the credit card validation flow will look as follows Section 4.2 Page 2 of 38

3 4.3 OSB to SOA Suite Direct binding What is being done? In this section, you will add a Direct Binding service to the POProcessing Composite. You will invoke the Direct Binding service from OSB using Business Service with soadirect protocol. Following steps will be performed JDeveloper - Create Direct Binding exposed service in the POProcessing Composite. OSB Console - Create Business Service with soa-direct protocol using the WSDL for the Direct Binding service in SOA. OSB Console - Update Message Flow for the receivepo_db Proxy Service with a Dynamic Routing action to route either to the WS binding service or to the Direct Binding service Create Direct Binding exposed service in POProcessing Composite In this section you will add a Direct Binding service to the POProcessing Composite and then Wire this service to the routepo component. 1. In JDeveloper, Open POProcessing/SOA Content/composite.xml 2. Drag and Drop Direct Binding service from Component Palette to the Exposed Services swim lane 3. Update Service a. Name: receivepodirect b. WSDL URL: receivepo.wsdl Section 4.3 Page 3 of 38

4 OSB 11gR1 Workshop c. Port Type: execute_ptt 4. Wire receivepodirect service to routepo component 5. Click Save 6. Deploy POProcessing Composite a. Select POProcessing composite in Application Navigator b. Right Click c. Deploy -> POProcessing d. Deploy to Application Server e. Deploy Configuration i. New Revision ID: 1.0 ii. Check 1. Mark composite revision as default 2. Overwrite any existing composites with the same revision ID iii. Do not select the ADF Task Flow f. Select Application Service Connection MyAppServerConnection g. Click Finish h. You will see the following message in the Deployment tab 7. Copy the URL for the Direct Binding service s WSDL from JDeveloper. This will be handy when you need the URL to import the WSDL for the Direct Binding service from OSB. Section 4.3 Page 4 of 38

5 a. Expand the receivepodirect Direct Binding service in the Application Server connection as shown below b. Right-click on receivepodirect service and select Copy Path Section 4.3 Page 5 of 38

6 OSB 11gR1 Workshop Create soa-direct Business Service in Oracle Service Bus In this section, you will import the WSDL for the Direct Binding service into OSB. You will then create a Business Service based on this WSDL. 1. Get WSDL URL for Direct Binding service this is an alternative way to get the URL for Direct Binding service. You can skip this step if you already copied the WSDL URL path for the Direct Binding service from JDeveloper a. Go to (change host name if necessary depending on where your browser is run from) i. Username weblogic ii. Password welcome1 b. Click on link View WSDL for receivepodirect and copy WSDL URL. Remember to remove any version information from the url. 2. Login to OSB Console i Create WSDL Resource in Oracle Service Bus a. Create Session (Click Create in the Change Center) b. Navigate to Folder POProcessing/Resources c. Create Resource: Bulk - Resources from URL Section 4.3 Page 6 of 38

7 d. In Load Resources i. URL: (or you can paste the WSDL URL path copied earlier from Jdeveloper and replace IP with orapbpm-server) ii. Resource Name: receivepodirect iii. Resource Type: WSDL iv. Click Next v. Click Import. This creates two resources in POProcessing/Resources 1. receivepodirect - WSDL 2. XMLSchema-<generated-id> XML Schema 4. Next, create Business Service based on the WSDL imported in previous Step. Section 4.3 Page 7 of 38

8 OSB 11gR1 Workshop a. Navigate to Folder POProcessing/BusinessServices b. Create Resource: Business Service i. Service Name: receivepodirect ii. Service Type: WSDL Web Service 1. Click Browse and select the WSDL POProcessing/Resources/receivePODirect 2. Select Port: receivepodirectdirectbindingport11 Section 4.3 Page 8 of 38

9 iii. Click Next iv. Protocol: soa-direct (will be selected by default) v. Click Next (leave the defaults on the SOA-DIRECT Transport Configuration screen) vi. Click Last vii. Click Save (Do not forget to click Save on the Summary Page) Update receivepo_db Proxy Service Message Flow Update the Message Flow for the receivepo_db Proxy Service to use a Dynamic Routing action instead of the Route action. The Dynamic Routing action will route to the receivepodirect Business Service if the order total is less than $1000. Otherwise, the Purchase Order is routed to the receivepo Business Service 1. Navigate to POProcessing/ProxyServices/receivePO_db Proxy Service Section 4.3 Page 9 of 38

10 OSB 11gR1 Workshop 2. Click on to see the Message Flow 3. Click RouteNode1, select Edit Route 4. Click select Delete this Action 5. Add an Action: Communication -> Dynamic Routing (another alternative will be to use a Routing Table try Routing Table for extra credit) 6. Dynamic route to service: (The evaluation of the XQuery Expression must return an XML fragment in the following format. This XML fragment will determine the Business Service that will be invoked) <ctx:route xmlns:ctx= > <ctx:service isproxy= false >path/to/businessservice</ctx:service> <ctx:operation>operation-name</ctx:operation> <ctx:route> If the path is to a proxy service then set isproxy attribute to true. a. Click <Expression> i. Add [User Defined] Namespace Section 4.3 Page 10 of 38

11 1. Prefix: ord 2. URI: 3. Click Add ii. Copy content of /home/oracle/soa-osb/solutions/chap-4/dynamicroute-xq.txt into the XQuery Text text area as shown below 7. Click Save All iii. Click Save 8. Activate Session by clicking on Activate in Change Center 9. Add optional Description and click Submit Section 4.3 Page 11 of 38

12 OSB 11gR1 Workshop Test 1 Before you proceed with the testing please read the following trouble shooting note. Note - Troubleshooting: During your testing If you see a failure. Drill down to the POProcessing composite in EM. If you see the following error message on the POProcessing composite and the composite is in Running/Faulted state, you must restart the server. Test again after server restart. If the error persists, delete the dynamic route node that allows routing to receivepodirect business service. This will force routing to the receivepo business service (http-based). The root cause for this error can be traced to the validationforcc composite (that is invoked from OSB) as shown below Section 4.3 Page 12 of 38

13 1. Select Requisition/ProxyServices/createRequisition. Click icon under Actions to launch test console. 2. Load the sample input from /home/oracle/soa-osb/input/small.txt & click Execute. The value of this order is $750. Hence, we expect the Direct Binding service for POProcessing to be invoked. 3. You should see the following response Section 4.3 Page 13 of 38

14 OSB 11gR1 Workshop 4. Go to Oracle Service Bus Console. Navigate to Operations followed by Message Reports. You should see the following report 5. Next, navigate to Fusion Middleware Control ( 1. Expand SOA/soa-infra/default and click on POProcessing 2. Click on Instance ID of the latest instance in the Recent Instances table of the Dashboard 3. You should see the following Notice the first entry is receivepodirect service, which is the Direct Binding. Section 4.3 Page 14 of 38

15 4.3.6 Test 2 1. Select Requisition/ProxyServices/createRequisition. Click icon under Actions to launch test console. 2. Load the sample input from /home/oracle/soa-osb/input/medium.txt & click Execute. This sample has order total greater than $1000. Hence, the WS Binding POProcessing service will be invoked from receivepo_db proxy service. 3. You should see the following result on the Oracle Service Bus Test console Section 4.3 Page 15 of 38

16 OSB 11gR1 Workshop 4. Go to Oracle Service Bus Console. Navigate to Operations followed by Message Reports. You should see the following report 5. Next, navigate to Fusion Middleware Control ( 1. Exapnd SOA/soa-infra/default and click on POProcessing 2. Click on Instance ID of the latest instance in the Recent Instances table of the Dashboard 3. You should see the following Notice that the first entry is the receivepo WS (HTTP) exposed service. 4.4 SOA Suite to OSB Direct Binding What is being done? In this section, you will expose the virtualized validationforcc Composite service using the SB transport protocol (This is in addition to the HTTP Proxy Service that virtualized the same service in Chapter 1). SB Protocol allows invoking (from SOA Suite or OSB) OSB Proxy Service over RMI. POProcessing composite will use the Direct Binding reference to invoke the Proxy Service with SB transport protocol. Following steps will be performed OSB Console - Create Proxy Service with SB transport protocol routing to validationforcc Business Service. Section 4.4 Page 16 of 38

17 JDeveloper Create Direct Binding reference, pointing to the SB transport protocol Proxy Service, in the POProcessing composite JDeveloper - Update approvelargeorder BPEL to invoke Direct Binding reference when credit card number is Otherwise, the WS Binding reference is invoked Create SB transport protocol Proxy Service in OSB In this step you will create SB transport protocol Proxy Service that routes to the validationforcc business service in Credit_Services/BusinessServices 1. In OSB Console create a new session by clicking on Create 2. Click Credit_Services/ProxyServices 3. From Create Resource select Proxy Service Section 4.4 Page 17 of 38

18 OSB 11gR1 Workshop 4. In General Configuration a. Service Name: ValidateCredit_SB b. Create From Existing Business Service (this will automatically add a Route action in the message flow that routes to the selected Business Service) Select Business Service, Click Browse and choose validationforcc in Credit_Services/BusinessServices Section 4.4 Page 18 of 38

19 c. Click Next 5. In Transport Configuration a. Protocol: sb b. Click Next 6. Click Last 7. Click Save (Do not miss this step as your configuration will not be saved otherwise) Section 4.4 Page 19 of 38

20 OSB 11gR1 Workshop 8. Click on the icon to edit the ValidateCredit_SB message flow. You will a Report action in the message flow for testing purpose. 9. Click on the envelope above ValidateCredit_SB Select Add Pipeline Pair. 10. Click on left Request_Pipeline and select Add Stage. Section 4.4 Page 20 of 38

21 11. Click on new Stage and select Edit Stage. 12. Click on Add an Action->Reporting->Report. You will see Report action as above. 13. Fill in fields as follows: Expression: $body (Click on <Expression>, Enter $body in text area, Click Save) Click Add a key: KeyName: CCNumber-SB Key Value:./cca:creditcardStatusRequest/cca:CCNumber Click <XPath> Section 4.4 Page 21 of 38

22 OSB 11gR1 Workshop Type above value in text area OR select Variable Structure on the left bottom. Select body from Drop Down, Expand $body execute (request) and select CCNumber (as shown in figure below) The Property Inspector field will be populated with the XPath as shown below. Click on Copy Property to copy the XPath automatically into the text area above. (Make sure the cursor is in the text area before you click Copy Property for the copy to work) Click Save In the in variable field type: body and Click Save 14. Click Save 15. Click Save All 16. Click Activate in the Change Center to activate your changes Section 4.4 Page 22 of 38

23 17. Click Submit (Do not miss this step as your configuration will not be activated otherwise) Create Direct Binding reference in POProcessing Composite In this step you will update the POProcessing composite to add a Direct Binding reference invoking the SB transport protocol Proxy Service in OSB. 18. Open the POProcessing composite.xml 19. Drag and Drop Direct Binding from the Component Palette to the External References swim lane 20. In the Create Direct Binding dialog set a. Name: DirectGetCCStatus b. Reference Target: Oracle Service Bus c. WSDL URL: Click on to select the WSDL for SB Proxy Service in OSB In the SOA Resource Browser, expand IDE Connections as show below and select ValidateCredit_SB and click OK Section 4.4 Page 23 of 38

24 OSB 11gR1 Workshop 21. Rest of the fields are automatically completed as shown below 22. Click OK Section 4.4 Page 24 of 38

25 23. Direct Binding reference is created as shown below 24. Wire approvelargeorder to DirectGetCCStatus reference. Select approvelargeorder, Drag and Drop the arrow from approvelargeorder on the arrow on DirectGetCCStatus reference as shown below This will create the wire as shown below Section 4.4 Page 25 of 38

26 OSB 11gR1 Workshop Update approvelargeorder BPEL to selectively invoke Direct Binding reference In this step you will update logic in the approvelargeorder BPEL to invoke the Direct Binding reference if the credit card number is , otherwise, WS Binding reference is invoked. 25. Double Click on approvelargeorder component 26. Delete invokeccstatusservice invoke activity by right clicking, selecting delete, and confirm Section 4.4 Page 26 of 38

27 27. Add Switch below assignccnumber activity 28. Click Add Condition on the Switch activity as shown below Section 4.4 Page 27 of 38

28 OSB 11gR1 Workshop 29. Launch Expression Builder, expand inputvariable to select ns2:cardnumber. Drag and Drop this variable (XPath) into the text area. Next, update text area with the condition as shown below (ie, add = at the end) Section 4.4 Page 28 of 38

29 30. Click OK 31. Click OK 32. Add Invoke activity to the branch with the condition 33. Drag and Drop arrow on right of the invoke icon to the DirectBinding reference (partner link) as shown 34. In the Edit Invoke dialog set a. Name: directgetccstatus b. Input Variable: invokeccstatusservice_execute_inputvariable (click to pick the variables) c. Output Variable: invokeccstatusservice_execute_outputvariable d. Click OK Section 4.4 Page 29 of 38

30 OSB 11gR1 Workshop 35. Add Invoke to the second branch 36. Drag and Drop on the right of the Invoke icon on to the getcreditcardstatus reference (partner link) as shown below Section 4.4 Page 30 of 38

31 37. In the Edit Invoke dialog set a. Name: getcreditcardstatus b. Input Variable: invokeccstatusservice_execute_inputvariable (click to pick the variable) c. Output Variable: invokeccstatusservice_execute_outputvariable Click OK Section 4.4 Page 31 of 38

32 OSB 11gR1 Workshop The Switch activity will look as follows 38. Click Save all (Do not miss this step) 39. Deploy POProcessing composite to server. a. Right click on POProcessing project, Deploy, POProcessing Section 4.4 Page 32 of 38

33 b. Select Deploy to Application Server c. Check Overwrite existing composites with the same revision ID d. Click Next e. Select MyAppServerConnection f. Click Finish g. When the deployment is successful you see the following message in the Deployment tab Section 4.4 Page 33 of 38

34 OSB 11gR1 Workshop Test Select Requisition/ProxyServices/createRequisition. Click icon under Actions to launch test console. 41. Load the sample input from /home/oracle/soa-osb/input/medium.txt & click Execute. This sample has order total greater than $1000, hence credit check will be performed on the Purchase Order, generated from the Requisition, by the POProcessing composite. Since the credit card number is POProcessing composite will invoke the Direct Binding reference to SB Proxy Service in OSB. 42. You should see the following result on the Oracle Service Bus Test console Section 4.4 Page 34 of 38

35 43. Go to Oracle Service Bus Console. Navigate to Operations followed by Message Reports. You should see the following report. You will notice that the Report action (CCNumber-SB= ) in the ValidateCredit_SB is seen below. This indicates that the POProcessing composite used the Direct Binding reference to invoke OSB. 44. Next, navigate to Fusion Middleware Control ( 45. Expand SOA/soa-infra/default and click on POProcessing 46. Click on Instance ID of the latest instance in the Recent Instances table of the Dashboard 47. You should see the following. Notice that the POProcessing composite invoked the DirectBinding reference (to OSB SB Proxy Service, ValidateCredit_SB) Section 4.4 Page 35 of 38

36 OSB 11gR1 Workshop Test Invoke Requisition/ProxyServices/createRequisition with sample data in /home/oracle/soa-osb/input/medium.txt. However, update the credit number (ccnumber) to be instead of as shown below <cre:osbrequisitioncollection xmlns:cre=" quisition"> <cre:osbrequisition> <cre:requisitioner>bob</cre:requisitioner> <cre:reqid>3333</cre:reqid> <cre:productname>ipod Shuffle</cre:productname> <cre:item>1gb</cre:item> Section 4.4 Page 36 of 38

37 <cre:itemtype>electronics</cre:itemtype> <cre:reqdate>march 16, 2010</cre:reqDate> <cre:description>string</cre:description> <cre:quantity>5.00</cre:quantity> <cre:price>500.00</cre:price> <cre:currency>usd</cre:currency> <cre:deliverydate>april 16, 2010</cre:deliverydate> <cre:plant>boulder</cre:plant> <cre:cctype>mastercard</cre:cctype> <cre:ccnumber> </cre:ccnumber> </cre:osbrequisition> </cre:osbrequisitioncollection> Since the credit card number does not match POProcessing composite will use the WS Binding to invoke ValidateCredit HTTP Proxy Service in OSB. 49. Go to Operations->Message Reports in OSB console. You will see the following reports. Notice that the report from ValidateCredit (CCNumber= ) can be seen indicating that the HTTP proxy service was invoked from POProcessing composite using the WS binding. 50. Next, navigate to Fusion Middleware Control ( 51. Expand SOA/soa-infra/default and click on POProcessing 52. Click on Instance ID of the latest instance in the Recent Instances table of the Dashboard 53. You should see the following. Notice that the POProcessing composite invoked the WS binding reference (to OSB HTTP Proxy Service, ValidateCredit) Section 4.4 Page 37 of 38

38 OSB 11gR1 Workshop Congratulations, you are done! Section 4.4 Page 38 of 38

3 Connecting to Applications

3 Connecting to Applications 3 Connecting to Applications 3 Connecting to Applications...1 3.1 Prerequisites...1 3.2 Introduction...1 3.2.1 Pega, the Widget Supplier...2 3.2.2 Mega, the Widget Procurer...2 3.3 Create Requisition...3

More information

1 Getting Started with Oracle Service Bus

1 Getting Started with Oracle Service Bus 1 Getting Started with Oracle Service Bus 1 Getting Started with Oracle Service Bus...1 1.1 Prerequisites...1 1.2 Introduction...1 1.2.1 High-level Steps...3 1.3 Setup and Deploy Composites...4 1.3.1 URLs

More information

BPEL Orchestration. 4.1 Introduction. Page 1 of 31

BPEL Orchestration. 4.1 Introduction. Page 1 of 31 BPEL Orchestration 4.1Introduction... 1 4.2Designing the flow... 2 4.3Invoking the CreditCardStatus service... 2 4.4Designing the BPEL approval process... 8 4.5Modifying the Mediator component... 18 4.6Deploying

More information

Enterprise Integration

Enterprise Integration Departamento de Engenharia Informática Enterprise Integration Asynchronous BPEL process Tutorial IE 2016 In this tutorial, we shall create an asynchronous BPEL process in JDeveloper 11g, deploy and test

More information

H. Adding BAM Activity Sensors

H. Adding BAM Activity Sensors H. Adding BAM Activity Sensors H.1. Introduction Note: The solution for this chapter can be found in c:\po\solutions\aph-bam To run this solution, you must have completed labs through chapter 9. Alternatively,

More information

Departamento de Engenharia Informática. Systems Integration. Web Services and BPEL Tutorial

Departamento de Engenharia Informática. Systems Integration. Web Services and BPEL Tutorial Departamento de Engenharia Informática Systems Integration Web Services and BPEL Tutorial IE 2016 In this tutorial, we shall create a Web service in Java that validates a credit card number. In addition,

More information

D Fault Handling. Note: The solution for this chapter can be found in c:\po\solutions\apd

D Fault Handling. Note: The solution for this chapter can be found in c:\po\solutions\apd D Fault Handling D.1 Introduction Note: The solution for this chapter can be found in c:\po\solutions\apd To run this solution, you must have completed labs in chapter 9. Alternatively you can follow the

More information

Oracle SOA Suite 11g: Build Composite Applications

Oracle SOA Suite 11g: Build Composite Applications Oracle University Contact Us: 1.800.529.0165 Oracle SOA Suite 11g: Build Composite Applications Duration: 5 Days What you will learn This course covers designing and developing SOA composite applications

More information

Enterprise Integration

Enterprise Integration Departamento de Engenharia Informática Enterprise Integration BPEL Tutorial IE 2016 In this tutorial, we shall create a simple BPEL process in JDeveloper 11g, deploy and test the SOA application. 1. Open

More information

Integrating JD Edwards Enterprise One and Oracle Service Bus

Integrating JD Edwards Enterprise One and Oracle Service Bus Integrating JD Edwards Enterprise One and Oracle Service Bus Overview This tutorial demonstrates how Oracle Service Bus (OSB) makes a service callout to a JD Edwards Enterprise One web service. OSB then

More information

edocs Home > BEA AquaLogic Service Bus 3.0 Documentation > Accessing ALDSP Data Services Through ALSB

edocs Home > BEA AquaLogic Service Bus 3.0 Documentation > Accessing ALDSP Data Services Through ALSB Accessing ALDSP 3.0 Data Services Through ALSB 3.0 edocs Home > BEA AquaLogic Service Bus 3.0 Documentation > Accessing ALDSP Data Services Through ALSB Introduction AquaLogic Data Services Platform can

More information

Setup Real-Time Integration Business Insight using a native installation For AstraTeq Help Desk Tutorial

Setup Real-Time Integration Business Insight using a native installation For AstraTeq Help Desk Tutorial Setup Real-Time Integration Business Insight 12.2.1.1.0 using a native installation For AstraTeq Help Desk Tutorial Table of Contents OVERVIEW... 3 DOWNLOAD THE TUTORIAL RESOURCES... 3 SETUP THE INSIGHT

More information

8 Adding Fulfillment. 8.1 Introduction. Section 8.1 Adding Fulfillment 8-1

8 Adding Fulfillment. 8.1 Introduction. Section 8.1 Adding Fulfillment 8-1 8 Adding Fulfillment 8.1 Introduction... 1 8.2 Designing the flow... 2 8.3 Add a BPEL Process and a Business Rule... 2 8.4 Define the Business Rule... 4 8.5 Define the BPEL Process... 9 8.6 Invoke FulfillmentProcess...10

More information

Oracle SOA Suite 11g: Essential Concepts

Oracle SOA Suite 11g: Essential Concepts Oracle SOA Suite 11g: Essential Concepts Volume 2 - Student Guide D58786GC10 Edition 1.0 August 2009 D61581 Authors Bijoy Choudhury Swarnapriya Shridhar Technical Contributors and Reviewers Cathy Lippert

More information

Departamento de Engenharia Informática. Systems Integration. SOA Adapters Tutorial. 1. Open SQL*Plus in order to run SQL commands.

Departamento de Engenharia Informática. Systems Integration. SOA Adapters Tutorial. 1. Open SQL*Plus in order to run SQL commands. Departamento de Engenharia Informática Systems Integration SOA Adapters Tutorial IE 2016 In this tutorial, we shall create a BPEL process that uses two adapters, namely the file adapter and database adapter.

More information

Oracle Web Service Manager 11g Component Level Role Authorization (in SOA Suite) March, 2012

Oracle Web Service Manager 11g Component Level Role Authorization (in SOA Suite) March, 2012 Oracle Web Service Manager 11g Component Level Role Authorization (in SOA Suite) March, 2012 Step-by-Step Instruction Guide Author: Prakash Yamuna Senior Development Manager Oracle Corporation Table of

More information

Getting Started with. Oracle SOA Suite 11g. R1 -AHands-On Tutorial. composite application in just hours!

Getting Started with. Oracle SOA Suite 11g. R1 -AHands-On Tutorial. composite application in just hours! Getting Started with Oracle SOA Suite 11g R1 -AHands-On Tutorial Fast track your SOA adoption Build a service-oriented composite application in just hours! Heidi Buelow Manas Deb Jayaram Kasi Demed L'Her

More information

Oracle Cloud. Using Oracle Eloqua Adapter Release E

Oracle Cloud. Using Oracle Eloqua Adapter Release E Oracle Cloud Using Oracle Eloqua Adapter Release 12.1.3 E65434-01 August 2015 Oracle Cloud Using Oracle Eloqua Adapter, Release 12.1.3 E65434-01 Copyright 2015, Oracle and/or its affiliates. All rights

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Using Oracle Eloqua Cloud Adapter Release 12.2.1.1.0 E73562-01 June 2016 Oracle Fusion Middleware Using Oracle Eloqua Cloud Adapter, Release 12.2.1.1.0 E73562-01 Copyright 2015,

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Using Oracle Eloqua Cloud Adapter Release 12.2.1.3.0 E83336-02 July 2017 Documentation for Oracle Service-Oriented Architecture (SOA) developers that describes how to use the Oracle

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Healthcare Integration User s Guide for Oracle SOA Suite 11g Release 1 (11.1.1.5.0 Feature Pack) E23486-01 September 2011 Oracle Fusion Middleware Healthcare Integration User's

More information

1Z Oracle SOA Suite 12c Essentials Exam Summary Syllabus Questions

1Z Oracle SOA Suite 12c Essentials Exam Summary Syllabus Questions 1Z0-434 Oracle SOA Suite 12c Essentials Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-434 Exam on Oracle SOA Suite 12c Essentials... 2 Oracle 1Z0-434 Certification Details:... 2

More information

Oracle BPEL Tutorial

Oracle BPEL Tutorial Oracle BPEL Tutorial This exercise introduces you to the Business Process Execution (BPEL) language, the Oracle JDeveloper BPEL Designer and to the Oracle BPEL Process Manager engine. INSTALL JDEVELOPER

More information

Oracle SOA Suite 11g: Build Composite Applications

Oracle SOA Suite 11g: Build Composite Applications Oracle University Contact Us: Landline: +91 80 67863899 Toll Free: 0008004401672 Oracle SOA Suite 11g: Build Composite Applications Duration: 5 Days What you will learn This course teaches you to design

More information

Oracle SOA Suite 12c: Build Composite Applications

Oracle SOA Suite 12c: Build Composite Applications Oracle University Contact Us: Landline: +91 80 67863899 Toll Free: 0008004401672 Oracle SOA Suite 12c: Build Composite Applications Duration: 5 Days What you will learn This Oracle SOA Suite 12c: Build

More information

Oracle Fusion Middleware. Using Ariba Adapter Release 12c ( ) E

Oracle Fusion Middleware. Using Ariba Adapter Release 12c ( ) E Oracle Fusion Middleware Using Ariba Adapter Release 12c (12.2.1.2.0) E83386-01 March 2017 Oracle Fusion Middleware Using Ariba Adapter, Release 12.2.1.2.0 E78048-01 Copyright 2016 Oracle and/or its affiliates.

More information

Developing an ADF 11g client for Agile PLM. Developing an ADF 11g client for Agile PLM

Developing an ADF 11g client for Agile PLM. Developing an ADF 11g client for Agile PLM Table of Contents 1 LAB OVERVIEW... 3 2 GETTING STARTED... 4 2.1 Starting Oracle JDeveloper 11gR1... 4 3 CREATE THE ADF CLIENT... 5 3.1 Create the ADF Application... 5 3.2 Create the Web Service Data Control...

More information

FCUBS Process Flow Deployment Oracle FLEXCUBE Universal Banking Release [December] [2017]

FCUBS Process Flow Deployment Oracle FLEXCUBE Universal Banking Release [December] [2017] FCUBS Process Flow Deployment Oracle FLEXCUBE Universal Banking Release 14.0.0.0.0 [December] [2017] FCUBS Process Flow Deployment Page 1 of 66 Table of Contents 1. INTRODUCTION... 3 1.1 BACKGROUND...

More information

Oracle Service Bus. 10g Release 3 (10.3) October 2008

Oracle Service Bus. 10g Release 3 (10.3) October 2008 Oracle Service Bus Tutorials 10g Release 3 (10.3) October 2008 Oracle Service Bus Tutorials, 10g Release 3 (10.3) Copyright 2007, 2008, Oracle and/or its affiliates. All rights reserved. This software

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Using Ariba Adapter Release 12c (12.2.1.3.0) E88147-01 June 2017 Contents 1-1 Oracle Fusion Middleware Using Ariba Adapter, Release 12.2.1.3.0 E88147-01 Copyright 2017 Oracle and/or

More information

FCUBS Process Flow Deployment Oracle FLEXCUBE Universal Banking Release [May] [2017]

FCUBS Process Flow Deployment Oracle FLEXCUBE Universal Banking Release [May] [2017] FCUBS Process Flow Deployment Oracle FLEXCUBE Universal Banking Release 12.4.0.0.0 [May] [2017] FCUBS Process Flow Deployment Page 1 of 64 Table of Contents 1. INTRODUCTION... 3 1.1 BACKGROUND... 3 1.2

More information

Oracle SOA Suite 11. Hands-On Workshop VM Intro / Demo / Deployment

Oracle SOA Suite 11. Hands-On Workshop VM Intro / Demo / Deployment Oracle SOA Suite 11 Hands-On Workshop VM Intro / Demo / Deployment Before you begin General notes: 1. All notable references, functions or actions to be performed by the student (for example, text to be

More information

Oracle SOA Suite 12c : Build Composite Applications

Oracle SOA Suite 12c : Build Composite Applications Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle SOA Suite 12c : Build Composite Applications Duration: 5 Days What you will learn This course teaches you to design and develop

More information

Oracle SOA Suite 12c: Build Composite Applications. About this course. Course type Essentials. Duration 5 Days

Oracle SOA Suite 12c: Build Composite Applications. About this course. Course type Essentials. Duration 5 Days Oracle SOA Suite 12c: Build Composite Applications About this course Course type Essentials Course code OC12GSOABCA Duration 5 Days This Oracle SOA Suite 12c: Build Composite Applications training teaches

More information

Lab 1 - Getting started with OIM 11g

Lab 1 - Getting started with OIM 11g Lab 1 - Getting started with OIM 11g Contents Lab 1 - Getting started with OIM 11g... 1 1. Introduction... 1 2. Contents... 3 2.1 VM Accessibility... 3 2.2 Understand directory structures... 4 2.3 Database

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Application Adapter for PeopleSoft User's Guide for Oracle WebLogic Server 11g Release 1 (11.1.1.4.0) E17055-04 April 2011 Oracle Fusion Middleware Application Adapter for PeopleSoft

More information

ADF Code Corner How-to build a reusable toolbar with Oracle ADF Declarative Components. Abstract: twitter.com/adfcodecorner

ADF Code Corner How-to build a reusable toolbar with Oracle ADF Declarative Components. Abstract: twitter.com/adfcodecorner ADF Code Corner 024. How-to build a reusable toolbar with Oracle ADF Abstract: This article explains how to use Oracle ADF declarative components to build a reusable toolbar that can be used throughout

More information

Tutorial 2 : Invoking a CICS transaction through the Oracle AS Adapter

Tutorial 2 : Invoking a CICS transaction through the Oracle AS Adapter Reference: 2005/04/26 Adapter Tutorial Tutorial 2 : Invoking a CICS transaction through the Oracle AS Adapter This tutorial describes the steps needed to integrate the BPEL Process Manager with CICS through

More information

BEAAquaLogic. Service Bus. JPD Transport User Guide

BEAAquaLogic. Service Bus. JPD Transport User Guide BEAAquaLogic Service Bus JPD Transport User Guide Version: 3.0 Revised: March 2008 Contents Using the JPD Transport WLI Business Process......................................................2 Key Features.............................................................2

More information

ActiveVOS Fundamentals

ActiveVOS Fundamentals Lab #8 Page 1 of 9 - ActiveVOS Fundamentals ActiveVOS Fundamentals Lab #8 Process Orchestration Lab #8 Page 2 of 9 - ActiveVOS Fundamentals Lab Plan In this lab we will build a basic sales order type of

More information

Oracle 1Z Oracle SOA Foundation Practitioner.

Oracle 1Z Oracle SOA Foundation Practitioner. Oracle Oracle SOA Foundation Practitioner http://killexams.com/exam-detail/ True - A SOA domain can be created using the WLS domain configuration wizard. QUESTION: 112 What types of pipelines are supported

More information

Tutorial 6 : Receiving Siebel Integration Object through the Oracle AS Adapter

Tutorial 6 : Receiving Siebel Integration Object through the Oracle AS Adapter Reference: 2005/04/26 Adapter Tutorial Tutorial 6 : Receiving Siebel Integration Object through the Oracle AS Adapter The Oracle AS Adapter for Siebel exposes the Siebel events - Integration Objects as

More information

Managing Load Plans in OTBI Enterprise for HCM Cloud Service

Managing Load Plans in OTBI Enterprise for HCM Cloud Service Managing Load Plans in OTBI Enterprise for HCM Cloud Service Copyright 2014, Oracle and/or its affiliates. All rights reserved. 1 Objective After completing this lesson, you should be able to use Configuration

More information

Oracle Cloud. Oracle Cloud Adapters Postinstallation Configuration Guide E

Oracle Cloud. Oracle Cloud Adapters Postinstallation Configuration Guide E Oracle Cloud Oracle Cloud Adapters Postinstallation Configuration Guide 12.1.3 E65437-05 October 2016 Oracle Cloud Oracle Cloud Adapters Postinstallation Configuration Guide, 12.1.3 E65437-05 Copyright

More information

Introduction... 5 Configuring Single Sign-On... 7 Prerequisites for Configuring Single Sign-On... 7 Installing Oracle HTTP Server...

Introduction... 5 Configuring Single Sign-On... 7 Prerequisites for Configuring Single Sign-On... 7 Installing Oracle HTTP Server... Oracle Access Manager Configuration Guide for On-Premises Version 17 October 2017 Contents Introduction... 5 Configuring Single Sign-On... 7 Prerequisites for Configuring Single Sign-On... 7 Installing

More information

1Z

1Z 1Z0-451 Passing Score: 800 Time Limit: 4 min Exam A QUESTION 1 What is true when implementing human reactions that are part of composite applications using the human task component in SOA 11g? A. The human

More information

BPEL FOR WORKFLOW DEVELOPERS Jerry Ireland, Rightsizing Inc

BPEL FOR WORKFLOW DEVELOPERS Jerry Ireland, Rightsizing Inc BPEL FOR WORKFLOW DEVELOPERS Jerry Ireland, Rightsizing Inc As a key enabler for SOA development, it will be essential to understand how to build Business Processes using BPEL (Business Process Language).

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Healthcare Integration User s Guide for Oracle SOA Suite 11g Release 1 (11.1.1.6.0) E23486-02 March 2012 Documentation for developers that describes how to create and configure

More information

1Z0-434 Exam Questions Demo Oracle. Exam Questions 1Z Oracle SOA Suite 12c Essentials

1Z0-434 Exam Questions Demo   Oracle. Exam Questions 1Z Oracle SOA Suite 12c Essentials Oracle Exam Questions 1Z0-434 Oracle SOA Suite 12c Essentials Version:Demo 1. Which statement accurately describes deploying your SOA application to acluster? A. Manually deploy the application to each

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Administering Web Services 12c (12.1.2) E28131-01 June 2013 Documentation for developers and administrators that describes how to administer Web services. Oracle Fusion Middleware

More information

Oracle Identity Governance 11g R2 PS1 - Creating a Parallel Approval Process

Oracle Identity Governance 11g R2 PS1 - Creating a Parallel Approval Process Oracle Identity Governance 11g R2 PS1 - Creating a Parallel Approval Process Overview Effective 06/05/12 Page 1 of 97 Rev 1 Overview of Creating a Parallel Approval Processes In this tutorial, you learn

More information

Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console. Don t get it right, just get it written.

Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console. Don t get it right, just get it written. Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Peter Koletzke Technical Director & Principal Instructor Co-author: Duncan Mills, Oracle Moral Don t get

More information

Oracle 1Z Oracle SOA Suite 12c Essentials.

Oracle 1Z Oracle SOA Suite 12c Essentials. Oracle 1Z0-434 Oracle SOA Suite 12c Essentials http://killexams.com/exam-detail/1z0-434 QUESTION: 76 After a successful web application login, an Oracle Access Manager (OAM) token is made available to

More information

BEAAquaLogic. Service Bus. Interoperability With EJB Transport

BEAAquaLogic. Service Bus. Interoperability With EJB Transport BEAAquaLogic Service Bus Interoperability With EJB Transport Version 3.0 Revised: February 2008 Contents EJB Transport Introduction...........................................................1-1 Invoking

More information

Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console. Don t get it right, just get it written.

Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console. Don t get it right, just get it written. Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Peter Koletzke Technical Director & Principal Instructor Co-author: Duncan Mills, Oracle Moral Don t get

More information

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2011, Oracle and/or its affiliates. All rights Web Services and SOA Integration Options for Oracle E-Business Suite Rajesh Ghosh, Group Manager, Applications Technology Group Abhishek Verma,

More information

Oracle Java CAPS HTTP Binding Component Tutorial

Oracle Java CAPS HTTP Binding Component Tutorial Oracle Java CAPS HTTP Binding Component Tutorial Part No: 8 67 December 0 Copyright 009, 0, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under

More information

Vendor: Oracle. Exam Code: 1Z Exam Name: Oracle SOA Suite 12c Essentials. Version: Demo

Vendor: Oracle. Exam Code: 1Z Exam Name: Oracle SOA Suite 12c Essentials. Version: Demo Vendor: Oracle Exam Code: 1Z0-434 Exam Name: Oracle SOA Suite 12c Essentials Version: Demo QUESTION 1 Which Oracle Event Processing (OEP) data cartridge should you use to track the GPS location of buses

More information

1z0-479 oracle. Number: 1z0-479 Passing Score: 800 Time Limit: 120 min.

1z0-479 oracle. Number: 1z0-479 Passing Score: 800 Time Limit: 120 min. 1z0-479 oracle Number: 1z0-479 Passing Score: 800 Time Limit: 120 min Exam A QUESTION 1 What is the role of a user data store in Oracle Identity Federation (OIF) 11g when it is configured as an Identity

More information

Receiving PeopleSoft Message (PeopleTools 8.17) through the Oracle AS PeopleSoft Adapter. An Oracle White Paper September 2008

Receiving PeopleSoft Message (PeopleTools 8.17) through the Oracle AS PeopleSoft Adapter. An Oracle White Paper September 2008 Receiving PeopleSoft Message (PeopleTools 8.17) through the Oracle AS PeopleSoft Adapter An Oracle White Paper September 2008 Receiving PeopleSoft Message (PeopleTools 8.17) through the Oracle AS PeopleSoft

More information

Lyudmil Pelov, A-Team, Oracle December Development Lifecycle for Task Flows in Oracle WebCenter Portal 11gR1 version

Lyudmil Pelov, A-Team, Oracle December Development Lifecycle for Task Flows in Oracle WebCenter Portal 11gR1 version Lyudmil Pelov, A-Team, Oracle December 2013 Development Lifecycle for Task Flows in Oracle WebCenter Portal 11gR1 version 11.1.1.8.0 Table of Contents Introduction...3 About the Examples Used in This Paper...3

More information

Web Service Elements. Element Specifications for Cisco Unified CVP VXML Server and Cisco Unified Call Studio Release 10.0(1) 1

Web Service Elements. Element Specifications for Cisco Unified CVP VXML Server and Cisco Unified Call Studio Release 10.0(1) 1 Along with Action and Decision elements, another way to perform backend interactions and obtain real-time data is via the Web Service element. This element leverages industry standards, such as the Web

More information

zentrale Sicherheitsplattform für WS Web Services Manager in Action: Leitender Systemberater Kersten Mebus

zentrale Sicherheitsplattform für WS Web Services Manager in Action: Leitender Systemberater Kersten Mebus Web Services Manager in Action: zentrale Sicherheitsplattform für WS Kersten Mebus Leitender Systemberater Agenda Web Services Security Oracle Web Service Manager Samples OWSM vs

More information

Oracle Entitlements Server 11gR2 Integration Guide Published: May 2013

Oracle Entitlements Server 11gR2 Integration Guide Published: May 2013 Oracle Entitlements Server 11gR2 Integration Guide Published: May 2013 Applies To Oracle API Gateway v11.1.2.x Contents Introduction Prerequisites Integration Configuration Steps OES Configuration: Step

More information

JDK 1.6 update 11 from You must use Java 1.6 update 11. Update 12 does not work with SOA 11g

JDK 1.6 update 11 from  You must use Java 1.6 update 11. Update 12 does not work with SOA 11g INSTALLATION JDEVELOPER 11G WITH SOA 11G PRE-REQUISITES BEFORE YOU BEGIN INSTALLATION DOWNLOAD FILES server103_win32.exe (WLS10_10.3.1_GENERIC_090417.1211248.LOAD16F) jdevstudio11111install.jar (JDEVADF_11.1.1.1.0_GENERIC_090421.1521.5361)

More information

R9.7 erwin License Server:

R9.7 erwin License Server: R9.7 erwin License Server: Installation and Setup This is a quick guide to setting-up a erwin DM License Server. NOTES: - Concurrent licensing is available for only erwin r8.2 and later releases! - Concurrent

More information

Build Mobile Apps for Oracle E-Business Suite with Oracle Mobile Platform Part 2

Build Mobile Apps for Oracle E-Business Suite with Oracle Mobile Platform Part 2 Build Mobile Apps for Oracle E-Business Suite with Oracle Mobile Platform Part 2 Bruce Bailey Principal Mobile / Social Solutions Consultant Srikant Subramaniam Director, FMW Product Management, AppAdvantage

More information

Oracle SOA Suite 10g: Services Orchestration

Oracle SOA Suite 10g: Services Orchestration Oracle University Contact Us: 01 800 214 0697 Oracle SOA Suite 10g: Services Orchestration Duration: 5 Days What you will learn This course deals with the basic concepts of Service Orchestration (SOA)

More information

OIG 11G R2 Field Enablement Training

OIG 11G R2 Field Enablement Training OIG 11G R2 Field Enablement Training Lab 20 - Notification Lab Disclaimer: The Virtual Machine Image and other software are provided for use only during the workshop. Please note that you are responsible

More information

OAM 2FA Value-Added Module (VAM) Deployment Guide

OAM 2FA Value-Added Module (VAM) Deployment Guide OAM 2FA Value-Added Module (VAM) Deployment Guide Copyright Information 2018. SecureAuth is a copyright of SecureAuth Corporation. SecureAuth s IdP software, appliances, and other products and solutions,

More information

Quick Start Guide for Oracle SOA Suite 11gR1 ( )

Quick Start Guide for Oracle SOA Suite 11gR1 ( ) Quick Start Guide for Oracle SOA Suite 11gR1 (11.1.1.5.0) Version 1.3 May 2012 Table of Contents Introduction to Oracle SOA Suite... 3 Installing Oracle SOA Suite... 4 INTRODUCTION... 4 WHAT YOU WILL NEED

More information

Exam : 1Z Title : Oracle SOA Foundation Practitioner. Version : Demo

Exam : 1Z Title : Oracle SOA Foundation Practitioner. Version : Demo Exam : 1Z1-451 Title : Oracle SOA Foundation Practitioner Version : Demo 1.What is true when implementing human reactions that are part of composite applications using the human task component in SOA 11g?

More information

Don t get it right, just get it written.

Don t get it right, just get it written. Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Peter Koletzke Technical Director & Principal Instructor (coauthored by Duncan Mills, Oracle) Moral Don t

More information

Deploying SOA Composites. Applications from Oracle JDeveloper to Oracle SOA Cloud Service

Deploying SOA Composites. Applications from Oracle JDeveloper to Oracle SOA Cloud Service Deploying SOA Composites and Oracle Service Bus Applications from Oracle JDeveloper to Oracle SOA Cloud Service Deploying SOA Composites and Oracle Service Bus Applications from Oracle JDeveloper to Oracle

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Application Adapter Best Practices Guide for Oracle WebLogic Server 11g Release 1 (11.1.1.3.0) E17059-03 November 2010 Oracle Fusion Middleware Application Adapter Best Practices

More information

QS-AVI Address Cleansing as a Web Service for IBM InfoSphere Identity Insight

QS-AVI Address Cleansing as a Web Service for IBM InfoSphere Identity Insight QS-AVI Address Cleansing as a Web Service for IBM InfoSphere Identity Insight Author: Bhaveshkumar R Patel (bhavesh.patel@in.ibm.com) Address cleansing sometimes referred to as address hygiene or standardization

More information

ADF Code Corner How-to bind custom declarative components to ADF. Abstract: twitter.com/adfcodecorner

ADF Code Corner How-to bind custom declarative components to ADF. Abstract: twitter.com/adfcodecorner ADF Code Corner 005. How-to bind custom declarative components to ADF Abstract: Declarative components are reusable UI components that are declarative composites of existing ADF Faces Rich Client components.

More information

Testpassport.

Testpassport. Testpassport http://www.testpassport.cn Exam : 1Z0-478 Title : Oracle SOA Suite 11g Essentials Version : Demo 1 / 7 1.You have modeled a composite with a one-way Mediator component that is exposed via

More information

Sales Quote Demo Setup

Sales Quote Demo Setup Last updated: May 17, 2010 12:05 Sales Quote Demo Setup Sales Quote Demo Setup... 1 1. Create Quote Schema... 1 2. Set up data source in WebLogic server... 1 3. Perform Demo Seeding of Users & Groups...

More information

Appserv Internal Desktop Access Mac OS Device with Safari Browser. Enter your Appserv username and password to sign in to the Website

Appserv Internal Desktop Access Mac OS Device with Safari Browser. Enter your Appserv username and password to sign in to the Website Appserv Desktop Access Logging on from a Mac OS device Step 1. To sign in to the Appserv Desktop Access website, enter the following address into the Safari browser address bar. Please Note: This documentation

More information

JDeveloper Downloading a Workspace for WebCenter Spaces Development

JDeveloper Downloading a Workspace for WebCenter Spaces Development 49 49Extending WebCenter Spaces Using JDeveloper Note: This PDF contains important updates to the current version of Chapter 49 Developer s Guide for WebCenter on Oracle Technology Network (OTN). The OTN

More information

ActiveVOS Fundamentals

ActiveVOS Fundamentals Lab #12 Page 1 of 9 - ActiveVOS Fundamentals ActiveVOS Fundamentals Lab #12 Adding a People Activity to the Process Lab #12 Page 2 of 9 - ActiveVOS Fundamentals Lab Plan In this lab we will add a Human

More information

Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager

Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager Setting Up Resources in VMware Identity Manager (SaaS) You can find the most up-to-date technical documentation

More information

Oracle Exam 1z0-478 Oracle SOA Suite 11g Certified Implementation Specialist Version: 7.4 [ Total Questions: 75 ]

Oracle Exam 1z0-478 Oracle SOA Suite 11g Certified Implementation Specialist Version: 7.4 [ Total Questions: 75 ] s@lm@n Oracle Exam 1z0-478 Oracle SOA Suite 11g Certified Implementation Specialist Version: 7.4 [ Total Questions: 75 ] Question No : 1 Identify the statement that describes an ESB. A. An ESB provides

More information

Tutorial 5 : Invoking Siebel Business Object through the Oracle AS Adapter

Tutorial 5 : Invoking Siebel Business Object through the Oracle AS Adapter Reference: 2005/04/26 Adapter Tutorial Tutorial 5 : Invoking Siebel Business Object through the Oracle AS Adapter The Oracle AS Adapter for Siebel exposes the Siebel Business Object and Services as a Web

More information

The End of the Beginning: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console. Don t get it right, just get it written.

The End of the Beginning: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console. Don t get it right, just get it written. The End of the Beginning: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Peter Koletzke Technical Director & Principal Instructor Co-author: Duncan Mills, Oracle Moral Don t

More information

Enter your Appserv username and password to sign in to the Website

Enter your Appserv username and password to sign in to the Website Appserv Desktop Access Logging on from a Windows 10 Device Step 1. To sign in to the Appserv Desktop Access website, either enter the following address into the Microsoft Edge browser address bar, or click

More information

Oracle SOA Suite/BPM Suite VirtualBox Appliance. Introduction and Readme

Oracle SOA Suite/BPM Suite VirtualBox Appliance. Introduction and Readme Oracle SOA Suite/BPM Suite VirtualBox Appliance Introduction and Readme Table of Contents 1 VirtualBox Appliance...3 1.1 Installed Software... 3 1.2 Settings... 4 1.3 User IDs... 4 1.4 Domain Configurations...

More information

Readme File. Hyperion System 9 BI+ Application Builder.NET Release 9.2 Readme. Hyperion System 9 BI+ Application Builder.NET Release 9.

Readme File. Hyperion System 9 BI+ Application Builder.NET Release 9.2 Readme. Hyperion System 9 BI+ Application Builder.NET Release 9. Hyperion System 9 BI+ Application Builder.NET Release 9.2 Readme Readme File This file contains the following sections: Purpose... 2 New Features... 2 Grid Adapters... 2 Grid Adapter Generic... 2 Grid

More information

Amplify. Innovate. Empower. At SAP Innovation Camp.

Amplify. Innovate. Empower. At SAP Innovation Camp. Amplify. Innovate. Empower. At SAP Innovation Camp. SAP Solution Manager 7.2: Accelerate the Digital Transformation Hands-on Exercises SAP Solution Manager 7.2 is the most complete lifecycle management

More information

Securing REST using Oracle WebService Manager July 2013

Securing REST using Oracle WebService Manager July 2013 Securing REST using Oracle WebService Manager 12.1.2 July 2013 Step-by-Step Instruction Guide Author: Prakash Yamuna Oracle Corporation Oracle Corporation Prakash Yamuna 1 Table of Contents 1 Getting Started...

More information

Oracle Identity Manager 11g R2: Essentials

Oracle Identity Manager 11g R2: Essentials Oracle University Contact Us: 0800 891 6502 Oracle Identity Manager 11g R2: Essentials Duration: 5 Days What you will learn This course teaches you how to implement identity management solutions with Oracle

More information

TIBCO ActiveMatrix Adapter Service Engine for Files Examples. Software Release 6.0 April 2009

TIBCO ActiveMatrix Adapter Service Engine for Files Examples. Software Release 6.0 April 2009 TIBCO ActiveMatrix Adapter Service Engine for Files Examples Software Release 6.0 April 2009 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED

More information

Lab 13: Configure Advanced Provisioning Infrastructure for Request based scenarios

Lab 13: Configure Advanced Provisioning Infrastructure for Request based scenarios Lab 13: Configure Advanced Provisioning Infrastructure for Request based scenarios Contents Lab 13: Configure Advanced Provisioning Infrastructure for Request based scenarios... 1 1. Introduction... 1

More information

We recommend you review this before taking an ActiveVOS course or before you use ActiveVOS Designer.

We recommend you review this before taking an ActiveVOS course or before you use ActiveVOS Designer. This presentation is a primer on WSDL. It s part of our series to help prepare you for creating BPEL projects. We recommend you review this before taking an ActiveVOS course or before you use ActiveVOS

More information

Creating a REST API which exposes an existing SOAP Service with IBM API Management

Creating a REST API which exposes an existing SOAP Service with IBM API Management Creating a REST API which exposes an existing SOAP Service with IBM API Management 3.0.0.1 Page 1 of 29 TABLE OF CONTENTS OBJECTIVE...3 PREREQUISITES...3 CASE STUDY...3 USER ROLES...4 BEFORE YOU BEGIN...4

More information

Exam Questions 1z0-451

Exam Questions 1z0-451 Exam Questions 1z0-451 Oracle SOA Foundation Practitioner https://www.2passeasy.com/dumps/1z0-451/ 1.What is true when implementing human reactions that are part of composite applications using the human

More information

DEPLOYMENT GUIDE Version 1.0. Deploying F5 with Oracle Fusion Middleware WebCenter 11gR1

DEPLOYMENT GUIDE Version 1.0. Deploying F5 with Oracle Fusion Middleware WebCenter 11gR1 DEPLOYMENT GUIDE Version 1.0 Deploying F5 with Oracle Fusion Middleware WebCenter 11gR1 Introducing the F5 and Oracle WebCenter configuration Welcome to the F5 and Oracle WebCenter deployment guide. This

More information

IBM Software. IBM Forms V8.0. Forms Experience Builder - Portal Integration. Lab Exercise

IBM Software. IBM Forms V8.0. Forms Experience Builder - Portal Integration. Lab Exercise IBM Forms V8.0 Forms Experience Builder - Portal Integration Lab Exercise Catalog Number Copyright IBM Corporation, 2012 US Government Users Restricted Rights - Use, duplication or disclosure restricted

More information

ADF Hands-On. Understanding Task Flow Activities / 2011 ADF Internal Enterprise 2.0 Training. Abstract:

ADF Hands-On. Understanding Task Flow Activities / 2011 ADF Internal Enterprise 2.0 Training. Abstract: ADF Hands-On Understanding Task Flow Activities Abstract: In this hands-on you create a bounded task flows to run as an ADF Region in an ADF Faces page. Within this hands-on you create and use the following

More information