3 Connecting to Applications

Size: px
Start display at page:

Download "3 Connecting to Applications"

Transcription

1 3 Connecting to Applications 3 Connecting to Applications Prerequisites Introduction Pega, the Widget Supplier Mega, the Widget Procurer Create Requisition What is being done? High Level Steps Steps in Detail Test Receive PO What is being done? High Level Steps Test Prerequisites Chapter One Lab complete, working and deployed. 3.2 Introduction SOA and Oracle Service Bus server running.. Note: The solution for this chapter can be found in /home/oracle/soaosb/solutions/chap-3. To run the solution, you must deploy the SOA Composites from Chapter 1. You can either complete Chapter 1 or deploy the composites from /home/oracle/soa-osb/solutions/chap-3 directory. First deploy the OSB configuration jar and then deploy the SOA composites. In this chapter, you will learn to use Oracle Service Bus to Virtualize Application Services through JCA Adapters such as Oracle ebusiness Suite, Siebel, PeopleSoft etc. Mediate access to data in the Database along with Protocol bridging Employees at Mega Corporation use the Employee Self Service portal to submit Requisition requests for items required to carry on their job functions. Once the Requisition gets approved, Purchase Order is generated for the Requisition. The Purchase Order is then submitted to the Supplier, Pega Corporation. Supplier validates the requestor s Credit Card, approves the Purchase Order if required, and fulfills the Order. Section 3.1 Page 1 of 34

2 OSB 11gR1 Workshop Mega Corporation has implemented the Requisition process in Oracle ebusiness Suite. Supplier, Pega Corporation, has implemented the Purchase Order process in Oracle SOA Suite. Overview of the business processes at work between Mega, on the left, with Procure to Pay business process, interfacing with Pega, on the right, with Order-to-Cash business process Pega, the Widget Supplier In Chapters One and Two, we introduced Oracle Service Bus in the Pega Corporation s IT infrastructure to streamline credit card validation. Pega needed to provide a better quality of service to its Widget consumers like Mega Corporation. Oracle Service Bus brought more robustness and scalability to Pega and allowed it to contract new Credit Card Vendors without impact to the business. Pega also leveraged Servcie Result Caching to improve quality of service to check status on outstanding orders Mega, the Widget Procurer In this chapter, we will introduce Oracle Service Bus in the Mega Corporation s IT to help scale its Integation. Mega Corporation has decided to leverage Oracle Service Bus, a key component of the Oracle SOA Suite, to virtualize the application services in Oracle ebusiness Suite and mediate Supplier Purchase Order processes. This initiative is driven to create a Shared Services Infrastructure, using Oracle Service Bus, which is a key requirement to scale and reap the benefits of SOA. Hence, Oracle Service Bus is used to: 1. Virtualize the Requisition process in Oracle ebusiness Suite. OSB will virtualize the service to insert the Requisition request from Employees using the Employee Portal to allow quick on-ramping of other sources of requisitions Section 3.2 Page 2 of 34

3 For the purpose of the Lab, Oracle ebusiness Suite is simulated using the Oracle DB the steps are similar for other JCA Adapters. 2. Retrieve the Purchase Order generated by Oracle ebusiness Suite from the Database before Routing the transformed Purchase Order request to the Supplier POProcessing Composite Service in Oracle SOA Suite. For the purpose of the lab, the Purchase Order is created in the database We will divide this chapter into two sections. In the first section, you will build the Create Requisition flow, and in the second section you will build the Receive PO flow. 3.3 Create Requisition Note: The solution for this section can be found in /home/oracle/soaosb/solutions/chap-3/chap-3a-solution-sbconfig.jar What is being done? In this section, you will create a HTTP Proxy Service that receives requisition from clients. This Proxy Service routes the requisition to a JCA DB Business Service, which inserts the requisition into the database. Following steps will be performed 3. JDeveloper - Create JCA DB Adapter files to insert the requisition into the database 4. OSB Console - Import JCA DB Adapter files. Create a JCA DB Business Service, using the imported JCA DB Adapter files, to insert requisition into DB. 5. OSB Console - Create HTTP Proxy Service, which routes the requisition to the JCA DB Business Service. Section 3.3 Page 3 of 34

4 OSB 11gR1 Workshop High Level Steps Create Database Adapter artifacts in JDeveloper We will create DB Adapter artifacts to insert requisition into DB 6. Create new SOA Application in JDeveloper a. Application Name: OSBDemo b. Directory: /home/oracle/jdeveloper/mywork/osbdemo c. Project Name: DBArtifacts d. Directory: /home/oracle/jdeveloper/mywork/osbdemo/dbartifacts e. Project Technologies: SOA f. Empty Composite 7. Adding the database adapter a. Drag and Drop Database Adapter from Component Palette to External References swim lane b. DbAdapter (Outbound) Service Name: createrequisition c. Create Database Connection with details: Connection Name: SOADemo Connection Type: Oracle (JDBC) Username: SOADEMO Password: soademo Save Password: Checked Enter Custom JDBC URL: Unchecked Driver: thin Host Name: localhost JDBC Port: 1521 (or the port number of your database) SID: soa11gdb (or the SID of your database) d. JNDI Name: eis/db/soademo e. Operation Type: Perform an Operation on a Table. Check Insert Only f. Import OSB_REQUISITION table (search for %OSB% in the Query) g. Define Primary key: REQID Import Database Adapter artifacts into Oracle Service Bus 8. Log into Oracle Service Bus console 9. Create Session 10. Add Project: Requisition Section 3.3 Page 4 of 34

5 11. Create Folder: Resources (under the project Requisition) 12. Navigate to the folder Resources by clicking on it in the table 13. Create Resource: Bulk - Resources from URL URL: file:/home/oracle/jdeveloper/mywork/osbdemo/dbartifacts/createrequisition_db.j ca Resource Name: createrequisition_db Resource Type: JCA Binding 14. Click Next, followed by Import 15. Resulting resources after Import Requisition/Resources/createRequisition_db JCA Binding Requisition/Resources/createRequisition WSDL Requisition/Resources/xsd/createRequisition_table XML Schema Requisition/Resources/createRequisition-or-mappings XML Document Create Business Service from Database Adapter JCA File 16. Create Folder: BusinessServices (under the project Requisition) 17. Navigate to the folder Resources (under the project Requisition) 18. Click Action Icon for the createrequisition_db JCA Binding to generate a WSDL and Service for this JCA Binding Resource. 19. Generate the service in Requisition/BusinessServices folder 20. Resulting resources Requisition/BusinessServices/createRequisition_db Business Service Requisition/BusinessServices/createRequisition_db - WSDL Create Proxy Service for Business Service 21. Create Folder: ProxyServices under Requisition project 22. Navigate to the folder ProxyServices (under the project Requisition) 23. Add Proxy Service to this folder Service Name: createrequisition to this folder Select Create From Existing Service Business Service: Requisition/BusinessServices/createRequisition_db Click Next Protocol: http Click Next Section 3.3 Page 5 of 34

6 OSB 11gR1 Workshop Click Last Save Update Proxy Service Message Flow 24. Add Report action to report the Requisition a. Click on to edit Message Flow for the createrequisition Proxy Service b. Add Pipeline Pair c. Add Stage to Request Pipeline d. Edit Stage to add Report. Report $body with search keys Key Name: REQ_ID Key Value: XPATH./cre:OsbRequisitionCollection/cre:OsbRequisition/cre:reqid in variable body Steps in Detail Create Database Adapter artifacts in JDeveloper We will create DB Adapter artifacts to insert requisition into DB 25. Create new SOA Application in JDeveloper. Select New Application as shown below 26. In the Create SOA Application Step 1 of 3 dialog specify the following: a. Application Name: OSBDemo b. Directory: /home/oracle/jdeveloper/mywork/osbdemo c. Application Template: SOA Application d. Click Next Section 3.3 Page 6 of 34

7 27. In the Create SOA Application Step 2 of 3 dialog specify the following Project Name: DBArtifacts Directory: /home/oracle/jdeveloper/mywork/osbdemo/dbartifacts Project Technologies: SOA Click Next Section 3.3 Page 7 of 34

8 OSB 11gR1 Workshop 28. In the Create SOA Application Step 3 of 3 dialog pick Empty Composite and click Finish 29. In the Composite Editor, Drag and Drop Database Adapter from Component Palette to External References swim lane 30. Adapter Configuration Wizard Step 2 of 4 a. Service Name: createrequisition b. Click Next Section 3.3 Page 8 of 34

9 31. In the Adapter Configuration Wizard Step 3 of 4, click on to create a new Database Connection. 32. In the Create Database Connection dialog specify the following details: a. Connection Name: SOADemo b. Connection Type: Oracle (JDBC) c. Username: SOADEMO d. Password: soademo e. Save Password: Checked f. Enter Custom JDBC URL: Unchecked g. Driver: thin h. Host Name: localhost i. JDBC Port: 1521 (or the port number of your database) j. SID: soa11gdb (or the SID of your database) k. Click Test Connection l. Click OK Section 3.3 Page 9 of 34

10 OSB 11gR1 Workshop 33. In the Adapter Configuration Wizard Step 3 of 4, specify a. Connection: SOADemo b. JNDI Name: eis/db/soademo c. Click Next Section 3.3 Page 10 of 34

11 34. In Adapter Configuration Wizard Step 4 of 5, specify a. Operation Type: Perform an Operation on a Table. b. Check Insert Only c. Click Next Section 3.3 Page 11 of 34

12 OSB 11gR1 Workshop 35. In Adapter Configuration Wizard Step 5 of 5 click Import Tables 36. In the Import Tables dialog specify a. Schema: SOADEMO b. Name Filter: %OSB% c. Click Query Section 3.3 Page 12 of 34

13 37. From the Available Tables select OSB_REQUISITION table and move Selected by clicking on 38. Click OK Section 3.3 Page 13 of 34

14 OSB 11gR1 Workshop 39. In Adapter Configuration Wizard Step 5 of 10 click Next 40. In Adapter Configuration Wizard Step 6 of 10 a. Define Primary key by selecting REQID b. Click Next 41. Click Finish Import Database Adapter artifacts into Oracle Service Bus 42. Log in to OSB console at Create a session. Section 3.3 Page 14 of 34

15 44. Add Requisition project if it does not already exist. 45. Create folder Resources under Requisition project (if it does not already exist) 46. While in the Resources folder, from the Create Resource drop down select Resources from URL: 47. In the Load Resources from URL screen specify a. URL: file:/home/oracle/jdeveloper/mywork/osbdemo/dbartifacts/createrequisition _db.jca (this step is much easier in Eclipse IDE where there is a Browse action to choose the file using Explorer) b. Resource Name: createrequisition_db Section 3.3 Page 15 of 34

16 OSB 11gR1 Workshop c. Resource Type: JCA Binding d. Click Next 48. Click Next then click Import 49. Activate the changes. Click Activate and then Click Submit Create Business Service from Database Adapter JCA File 50. Create a session. 51. Create folder Business Services under the Requisition project. 52. While the current folder is Resources, click Action Icon for the createrequisition_db JCA Binding. 53. This launches the Generate WSDL and Service dialog. In this dialog box, select BusinessServices folder as the target folder to create the new resources in. You can Section 3.3 Page 16 of 34

17 leave the defaults for the WSDL and Business Service name. 54. Click Generate. Two resources (Business Service and WSDL) have been created automatically in the BusinessServices folder. Navigate to that folder to verify this Create Proxy Service for Business Service 55. Navigate up to the Requisition project root level by clicking on Requisition in the project structure tree. 56. Create folder ProxyServices.(if it does not already exist) 57. Initiate the process to create a Proxy Service in this folder. 58. Name the proxy service createrequisition. 59. You are going to base this proxy service configuration on the Business Service specification that was just created. If you recall, that Business Service was generated automatically from a jca adapter you created in JDev. To create the proxy service based the existing Business Service definition, in the Create from Existing Service section, click the Business Service radio button, and then the Browse button. Section 3.3 Page 17 of 34

18 OSB 11gR1 Workshop 60. Click the radio button for the createrequisition Business Service then click Submit. 61. Now you need to set the protocol for this proxy service to http. Because the proxy service is built on the Business Service specification, its protocol is jca. You need to change that to http.. To do this, click the Next button. 62. Select http from the list of available protocols, then click Next. 63. On the next page click the Last button because we are accepting the inherited and default values for the remaining proxy service configuration settings. 64. Finally, go the the bottom of the page and click Save. If you don t all your changes will be lost. 65. Last, Activate the changes. Click Activate and then click Submit Update Proxy Service Message Flow 66. Start a new session. Section 3.3 Page 18 of 34

19 67. Go to the Requisition project ProxyServices folder. 68. Open the proxy service message flow for editing for createrequisition. 69. Click the start node and select Add Pipeline Pair. 70. Click the Request Pipeline node and Add Stage. 71. Click the stage and edit the stage. Section 3.3 Page 19 of 34

20 OSB 11gR1 Workshop 72. Add a Report action. 73. Use these parameters to complete the Report action configuration as shown. a. Report: $body b. Key Name: REQ_ID c. Key Value:./cre:OsbRequisitionCollection/cre:OsbRequisition/cre:reqid (make sure namespace prefix is correct) d. in variable: body Note: Instead of typing the XPath for Key Value you can do the following Select Variable Structures from the left side options, pick body from the drop down and expand the structure of $body insert (request) to select reqid as shown below. Section 3.3 Page 20 of 34

21 This will show the XPath in the Property Inspector on right bottom as shown below. You can copy the XPath from Property Inspector into the XPath text area or click on Copy Property (right side on the same line as Property Inspector) as shown below to copy the content from Property Inspector to the XPath text area. 74. Activate the session click Activate and then click on Submit Section 3.3 Page 21 of 34

22 OSB 11gR1 Workshop Test 75. To test the createrequisition proxy service, launch the test console by clicking on the icon under Actions after navigating to Resource Browser followed by Proxy Services. 76. Load the sample input from /home/oracle/soa-osb/input/small.txt & click Execute 77. You should see the following response (one-way invocation, hence no response). Section 3.3 Page 22 of 34

23 78. View Message Reporting data a. Go to Oracle Service Bus Console. b. Navigate to Operations followed by Message Reports. c. Date Range: All d. You will see the following report. The requisition is entered into the database table OSB_REQUISITION. You can query the OSB_REQUISITION table to see the inserted row. 3.4 Receive PO Note: The solution for this section can be found in /home/oracle/soaosb/solutions/chap-3/chap-3b-solution-sbconfig.jar What is being done? In this section, you will create JCA DB Proxy Service that polls for new Purchase Orders in the Database and Routes the transformed Purchase Order to a HTTP Business Service, which invokes the POProcessing SOA Composite for Purchase Order processing. Section 3.4 Page 23 of 34

24 OSB 11gR1 Workshop Following steps will be performed 79. JDeveloper - Create JCA DB Adapter files to poll the Database for new Purchase Orders. 80. OSB Console - Import JCA DB Adapter files. Create JCA DB Proxy Service to poll for single Purchase Order. Transform and route the Purchase Order to the business service created in the next step. 81. OSB Console - Create HTTP Business Service to invoke the POProcessing SOA Composite High Level Steps Create Database Adapter artifacts in Jdeveloper 1. Creating new SOA Application (You can jump to Step 2 if the SOA Application is already created as part of the Create Requisition section) a. Application Name: OSBDemo b. Directory: /home/oracle/jdeveloper/mywork/osbdemo c. Project Name: DBArtifacts d. Directory: /home/oracle/jdeveloper/mywork/osbdemo/dbartifacts e. Project Technologies: SOA f. Empty Composite 2. Adding the database adapter a. Drag and Drop Database Adapter from Component Palette to Exposed Services swim lane b. DbAdapter (Inbound) Service Name: receivepo c. Choose Connection SOADemo or Create Database Connection with details (Jump to d if SOADemo connection exists): Section 3.4 Page 24 of 34

25 i. Connection Name: SOADemo ii. Connection Type: Oracle (JDBC) iii. Username: SOADEMO iv. Password: soademo v. Save Password: Checked vi. Enter Custom JDBC URL: Unchecked vii. Driver: thin viii. Host Name: localhost ix. JDBC Port: 1521 (or the port number of your database) x. SID: soa11gdb (or the SID of your database) d. JNDI name: eis/db/soademo e. Operation Type: Poll for New or Changed Records in a Table f. Import OSB_PURCHASEORDER table (search for %OSB%) make note on hitting query button, selecting table, and adding to selected list g. Define Primary key: ID h. Note on bypassing relationships panel and attribute filtering i. After Read: Delete the Row(s) that were Read j. Finish k. Save all (always a good thing in IDE) Import Database Adapter artifacts into Oracle Service Bus 1. Log into Oracle Service Bus console 2. Create Session 3. Add Project: POProcessing 4. Create Folder: Resources (under the project POProcessing) 5. Navigate to folder Resources (under the project POProcessing) by clicking on the folder name 6. Create Resource: Resources from URL a. URL: file:/home/oracle/jdeveloper/mywork/osbdemo/dbartifacts/receivepo _db.jca b. Resource Name: receivepo_db c. Resource Type: JCA Binding 7. Click Next, followed by Import Section 3.4 Page 25 of 34

26 OSB 11gR1 Workshop 8. Resulting resources after the Import a. POProcessing/Resources/receivePO_db JCA Binding b. POProcessing/Resources/receivePO WSDL c. POProcessing/Resources/xsd/receivePO_table XML Schema d. POProcessing/Resources/receivePO-or-mappings XML Document Create Proxy Service from Database Adapter JCA File 1. Create Folder: ProxyServices under POProcessing project 2. Navigate to folder POProcessing/Resources by clicking on folder Resources 3. Click on the Generate WSDL and Service for this JCA Binding Resource Action Icon for the receivepo_db JCA Binding 4. Generate service in POProcessing/ProxyServices folder 5. Resulting resources a. POProcessing/ProxyServices/receivePO_db Proxy Service b. POProcessing/ProxyServices/receivePO_db - WSDL Import WSDL for POProcessing Composite Service in SOA Suite This WSDL will be used later to create the OSB Business Service 1. Navigate to folder POProcessing/Resources 2. Create Resource from URL a. URL: (replace host name appropriately) b. Resource Name: receivepo_soa c. Resource Type: WSDL 3. Click Next, followed by Import 4. Resulting resources after Import c. POProcessing/Resources/XMLSchema_<someNumber> schema a. POProcessing/Resources/receivePO_SOA - WSDL Create Business Service from WSDL 1. Create Folder BusinessServices under the project POProcessing 2. Navigate to folder BusinessServices (under the project POProcessing) by clicking on the folder name 3. Create Resource: Business Service (in this folder) a. Service Name: receivepo Section 3.4 Page 26 of 34

27 b. WSDL Web Service: POProcessing/Resources/receivePO_SOA i. (port): execute_pt c. Click Submit d. Click Next e. Protocol: http f. Click Next g. Click Last h. Click Save Complete Proxy Service Message Flow First step is to create a Route action routing to the business service invoking the SOA composite service receivepo. 1. Select Message Flow for POProcessing/ProxyServices/receivePO_db proxy service 2. Add Route 3. Edit Route 4. Add an Action -> Communication -> Routing: a. Pick business service: POProcessing/BusinessServices/receivePO a. Operation: execute b. Click Save Second step is to add Pipeline Pair with 5. Report action to report the Purchase Order from Database a. Add Pipeline Pair above route node b. Add Stage to Request Pipeline c. Edit Stage d. Add an Action -> Reporting -> Report 1. Report: $body 2. Add Key 1. Key Name: DB_ID 2. Key Value:./rec:OsbPurchaseorderCollection/rec:OsbPurchaseorde r/rec:id in variable body 3. Click Save 6. Transform Purchase Order from Database to the format of the Purchase Order required by the SOA receivepo service Section 3.4 Page 27 of 34

28 OSB 11gR1 Workshop a. Select stage1, Add Stage b. Edit stage2 c. Add Assign action (1) - Select Message Processing->Assign action to select Purchase Order from the Database PurchaseOrderCollection 1. Assign $body/rec:osbpurchaseordercollection/rec:osbpurchaseorde r to dbpo 2. Click Save 3. Click Save All d. Add Assign action (2) to transform Database Purchase Order to SOA Purchase Order. We will use a XQuery resource to perform this transformation 1. Create Xquery Resource 1. Select POProcessing/Resources by clicking on the folder name 2. Create Resource: Resources from URL 2. Add Assign to Stage 2 a. URL: file:/home/oracle/soa-osb/solutions/chap- 3/dbPO_to_soaPO.xq b. Resource Name: dbpo_to_soapo c. Resource Type: XQuery d. Click Next, followed by Import 1. Navigate to POProcessing/ProxyServices/receivePO_db 2. Select to see Message Flow 3. Select stage2,, Edit Stage 4. Add Assign action: Select the Assign action added in Step c,, right-click, select Message Processing->Assign action 5. Assign: - Click on XQuery Resources. Browse to select POProcessing/Resources/dbPO_to_soaPO a. Variable Names And Bindings: osbpurchaseorder1 - $dbpo b. Click Save c. to variable soapo e. Add Assign action (3) Select the Assign action added in Step d, rightclick, select Message Processing->Assign. Add soap-env:body wrapper around SOA Purchase Order and assign to $body as shown below Section 3.4 Page 28 of 34

29 1. Assign <soap-env:body>{$soapo}</soap-env:body> to body 2. Click Save 7. Report action to report payload sent to SOA receive PO service a. Select stage2, Add Stage b. Select stage3, Edit Stage c. Add an action: Reporting->Report: 1. Expression - $body 2. Click Save 3. Click Add a key 1. Key Name: SOA_ID 4. Click <XPath> 1. Add (User Defined) Namespace (as shown below): a. Prefix: ord b. URI: c. Click Add Section 3.4 Page 29 of 34

30 OSB 11gR1 Workshop 2. In the XPath Expression Editor text area enter./ord:purchaseorder/ord:id 3. Click Save 5. in variable body 6. Click Save 7. Click Save All 7. Activate Session by clicking on Activate in Change Center Section 3.4 Page 30 of 34

31 Add optional Description and click Submit Test You will test the receivepo proxy service indirectly by using the createrequisition proxy service. createrequisition proxy service inserts the Requisition into the Database. The Requisition table in the database is configured with a trigger that populates the Purchase Order table when a new Requisition is inserted into the Requisition table. The receivepo proxy service polls the Purchase Order table in the database for new Purchase Orders, transforms the Purchase Order to the format required by the SOA receivepo composite service, and sends the transformed Purchase Order to the SOA receivepo composite service from processing. Hence, the test for receivepo proxy service begins with invoking the createrequisition proxy service to create a Requisition. 1. To test the createrequisition proxy service, navigate to the Requisition project. Launch the test console by clicking on the icon under Actions after navigating to Resource Browser followed by Proxy Services. Section 3.4 Page 31 of 34

32 OSB 11gR1 Workshop 2. Load the sample input from /home/oracle/soa-osb/input/small.txt & click Execute 3. You should see the following response Section 3.4 Page 32 of 34

33 4. Verifying the test was successful 1. In Oracle Service Bus console go to Operations followed by Message Reports a. You will see one message report from the createrequisition proxy service and two message reports from receivepo proxy service. You can look at the detail to make sure the content looks correct 2. Next, verify two files are written to /home/oracle/scratch. These files are written by POProcessing & ConsumeJMSFulfillment composites respectively (sort by time) a. order_<#>.txt Section 3.4 Page 33 of 34

34 OSB 11gR1 Workshop b. write_fulfill_<#>.txt 3. Click on POProcessing Composite in the Enterprise Manager, Fusion Middleware Control. Select the composite instance from the Dashboard tab. You will see the following trace Success You are done with Chapter 3! Section 3.4 Page 34 of 34

4 Connecting to Composites

4 Connecting to Composites 4 Connecting to Composites 4 Connecting to Composites...1 4.1 Prerequisites...1 4.2 Introduction...1 4.3 OSB to SOA Suite Direct binding...3 4.3.1 What is being done?...3 4.3.2 Create Direct Binding exposed

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Tutorial 8 : Oracle Apps BES Organization Insert Event Publish To Siebel Cust Acct Insert

Tutorial 8 : Oracle Apps BES Organization Insert Event Publish To Siebel Cust Acct Insert Reference: 2005/04/26 Adapter Tutorial Tutorial 8 : Oracle Apps BES Organization Insert Event Publish To Siebel Cust Acct Insert The Oracle AS Adapter for AQ interfaces with the Business Event System to

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

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

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

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

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

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

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

Oracle BPEL Process Manager Demonstration

Oracle BPEL Process Manager Demonstration January, 2007 1 Oracle BPEL Process Manager Demonstration How to create a time scheduler for a BPEL process using the Oracle Database Job scheduler by Dr. Constantine Steriadis (constantine.steriadis@oracle.com)

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

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

Automation for Web Services

Automation for Web Services BEA AquaLogic TM Enterprise Repository (Evaluation Version) Automation for Web Services Table of Contents Overview System Settings Properties for Managing WSDL- and UDDI-Related Assets WSDL/UDDI Import/Export

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 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 INTRODCUTION. Service Bus 11g For the Busy IT Professional. munz & more Dr. Frank Munz November getting started

ORACLE INTRODCUTION. Service Bus 11g For the Busy IT Professional. munz & more Dr. Frank Munz November getting started ORACLE Service Bus 11g For the Busy IT Professional munz & more Dr. Frank Munz November 2010 getting started INTRODCUTION 1 Agenda 1. Introduction 2. Service Bus Positioning 3. Core OSB Features, Development

More information

BEAAquaLogic Enterprise Repository. Automation for Web Services Guide

BEAAquaLogic Enterprise Repository. Automation for Web Services Guide BEAAquaLogic Enterprise Repository Automation for Web Services Guide Version 3.0. RP1 Revised: February, 2008 Table of Contents Overview System Settings Properties for Managing WSDL- and UDDI-Related

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

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

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

Configuring the module for advanced queue integration

Configuring the module for advanced queue integration Configuring the module for advanced queue integration To configure a module to use the adapter for outbound or inbound processing, use the external service wizard in IBM Integration Designer to create

More information

Oracle Fusion Middleware Understanding Oracle SOA Suite. 12c Release ( )

Oracle Fusion Middleware Understanding Oracle SOA Suite. 12c Release ( ) Oracle Fusion Middleware Understanding Oracle SOA Suite 12c Release (12.2.1.3.0) E96879-01 June 2018 Oracle Fusion Middleware Understanding Oracle SOA Suite, 12c Release (12.2.1.3.0) E96879-01 Copyright

More information

Oracle Fusion Middleware Understanding Oracle SOA Suite. 12c Release ( )

Oracle Fusion Middleware Understanding Oracle SOA Suite. 12c Release ( ) Oracle Fusion Middleware Understanding Oracle SOA Suite 12c Release (12.2.1.3.0) E68164-01 August 2017 Oracle Fusion Middleware Understanding Oracle SOA Suite, 12c Release (12.2.1.3.0) E68164-01 Copyright

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

Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide

Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide Policy Manager for IBM WebSphere DataPower Configuration Guide SOAPMDP_Config_7.2.0 Copyright Copyright 2015 SOA Software, Inc. All rights

More information

ebusiness Suite goes SOA

ebusiness Suite goes SOA ebusiness Suite goes SOA Ulrich Janke Oracle Consulting Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not

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

BMC FootPrints 12 Integration with Remote Support

BMC FootPrints 12 Integration with Remote Support BMC FootPrints 12 Integration with Remote Support 2003-2019 BeyondTrust Corporation. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust Corporation. Other trademarks are

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

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

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

Integration Framework. Architecture

Integration Framework. Architecture Integration Framework 2 Architecture Anyone involved in the implementation or day-to-day administration of the integration framework applications must be familiarized with the integration framework architecture.

More information

Oracle Service Bus 10g R3: Design & Integrate Services for SOA

Oracle Service Bus 10g R3: Design & Integrate Services for SOA Oracle Service Bus 10g R3: Design & Integrate Services for SOA Student Guide D56299GC11 Edition 1.1 November 2010 D69834 Authors Bill Bunch Tom Hardy Technical Contributors and Reviewer s Werner Bauer

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

BEAWebLogic. Portal. Tutorials Getting Started with WebLogic Portal

BEAWebLogic. Portal. Tutorials Getting Started with WebLogic Portal BEAWebLogic Portal Tutorials Getting Started with WebLogic Portal Version 10.2 February 2008 Contents 1. Introduction Introduction............................................................ 1-1 2. Setting

More information

Bridging the Gap. Peter Ebell AMIS

Bridging the Gap. Peter Ebell AMIS Bridging the Gap between SOA and the Database Peter Ebell AMIS Agenda Two different worlds: Database and SOA? Bridging the Gap How the Database reaches out to SOA Middleware How SOA Middleware reaches

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

Oracle Fusion Middleware

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

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

Database Explorer Quickstart

Database Explorer Quickstart Database Explorer Quickstart Last Revision: Outline 1. Preface 2. Requirements 3. Introduction 4. Creating a Database Connection 1. Configuring a JDBC Driver 2. Creating a Connection Profile 3. Opening

More information

Oracle BI Publisher 11g R1: Fundamentals

Oracle BI Publisher 11g R1: Fundamentals Oracle BI Publisher 11g R1: Fundamentals Volume I Student Guide D68420GC10 Edition 1.0 June 2011 D73304 Authors Lea Shaw Sindhu Rao Technical Contributors and Reviewers Timothy McGlue Nikos Psomas Pradeep

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

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

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

J2EE Development. Course Detail: Audience. Duration. Course Abstract. Course Objectives. Course Topics. Class Format.

J2EE Development. Course Detail: Audience. Duration. Course Abstract. Course Objectives. Course Topics. Class Format. J2EE Development Detail: Audience www.peaksolutions.com/ittraining Java developers, web page designers and other professionals that will be designing, developing and implementing web applications using

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

Skyway Builder 6.3 Reference

Skyway Builder 6.3 Reference Skyway Builder 6.3 Reference 6.3.0.0-07/21/09 Skyway Software Skyway Builder 6.3 Reference: 6.3.0.0-07/21/09 Skyway Software Published Copyright 2009 Skyway Software Abstract The most recent version of

More information

HL7 v2.3.1 A19 Query Processor

HL7 v2.3.1 A19 Query Processor Oracle SOA Suite 11g R1 PS3 HL7 Messaging HL7 v2.3.1 A19 Query Processor Michael Czapski April 2011 Revision 1.0.0 Table of Contents Introduction... 2 Changes from PS2... 2 Assumptions... 2 Note... 2 Prerequisites

More information

IBM Enterprise Modernization for System z: Wrap existing COBOL programs as Web Services with IBM Rational Developer for System z

IBM Enterprise Modernization for System z: Wrap existing COBOL programs as Web Services with IBM Rational Developer for System z IBM Enterprise Modernization for System z: Wrap existing COBOL programs as Web Services with IBM Rational Developer for System z Extend value of existing enterprise software assets Skill Level: Intermediate

More information

Building E-Business Suite Interfaces using BPEL. Asif Hussain Innowave Technology

Building E-Business Suite Interfaces using BPEL. Asif Hussain Innowave Technology Building E-Business Suite Interfaces using BPEL Asif Hussain Innowave Technology Agenda About Innowave Why Use BPEL? Synchronous Vs Asynchronous BPEL Adapters Process Activities Building EBS Interfaces

More information

B. By not making any configuration changes because, by default, the adapter reads input files in ascending order of their lastmodifiedtime.

B. By not making any configuration changes because, by default, the adapter reads input files in ascending order of their lastmodifiedtime. Volume: 75 Questions Question No : 1 You have modeled a composite with a one-way Mediator component that is exposed via an inbound file adapter service. How do you configure the inbound file adapter to

More information

Lab 2: Installation of Oracle XE & SOA11g

Lab 2: Installation of Oracle XE & SOA11g Lab 2: Installation of Oracle XE & SOA11g (30 minutes) Objectives At the end of this exercise, you will be able to: Install & Setup Oracle XE Database Install & Setup Oracle SOA11g Install Oracle Service

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

Step By Step Procedure to Implement Soap to JDBC Scenario

Step By Step Procedure to Implement Soap to JDBC Scenario Step By Step Procedure to Implement Soap to JDBC Scenario Applies to This scenario is implemented in PI 7.0 server, service pack: 14. For more information, visit the SOA Management homepage. Summary This

More information

Workspace Administrator Help File

Workspace Administrator Help File Workspace Administrator Help File Table of Contents HotDocs Workspace Help File... 1 Getting Started with Workspace... 3 What is HotDocs Workspace?... 3 Getting Started with Workspace... 3 To access Workspace...

More information

Oracle Big Data Cloud Service, Oracle Storage Cloud Service, Oracle Database Cloud Service

Oracle Big Data Cloud Service, Oracle Storage Cloud Service, Oracle Database Cloud Service Demo Introduction Keywords: Oracle Big Data Cloud Service, Oracle Storage Cloud Service, Oracle Database Cloud Service Goal of Demo: Oracle Big Data Preparation Cloud Services can ingest data from various

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

Using SQL Developer. Oracle University and Egabi Solutions use only

Using SQL Developer. Oracle University and Egabi Solutions use only Using SQL Developer Objectives After completing this appendix, you should be able to do the following: List the key features of Oracle SQL Developer Identify menu items of Oracle SQL Developer Create a

More information

Tivoli Common Reporting V Cognos report in a Tivoli Integrated Portal dashboard

Tivoli Common Reporting V Cognos report in a Tivoli Integrated Portal dashboard Tivoli Common Reporting V2.1.1 Cognos report in a Tivoli Integrated Portal dashboard Preethi C Mohan IBM India Ltd. India Software Labs, Bangalore +91 80 40255077 preethi.mohan@in.ibm.com Copyright IBM

More information

Teiid Designer User Guide 7.5.0

Teiid Designer User Guide 7.5.0 Teiid Designer User Guide 1 7.5.0 1. Introduction... 1 1.1. What is Teiid Designer?... 1 1.2. Why Use Teiid Designer?... 2 1.3. Metadata Overview... 2 1.3.1. What is Metadata... 2 1.3.2. Editing Metadata

More information

CA Service Desk Integration with Remote Support

CA Service Desk Integration with Remote Support CA Service Desk Integration with Remote Support 2003-2019 BeyondTrust Corporation. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust Corporation. Other trademarks are the

More information

Oracle WebCenter Portal 11g Developer Workshop

Oracle WebCenter Portal 11g Developer Workshop Oracle WebCenter Portal 11g Developer Workshop Lab 10 Creating a Custom Portlet Page 1 of 27 Overview WebCenter Portal offers a few different development strategies for transactional features; portlets

More information

Building an Application to Dynamically Execute Partner Process Flows

Building an Application to Dynamically Execute Partner Process Flows Building an Application to Dynamically Execute Partner Process Flows This topic describes how to configure an application using iway Integration Tools (iit) that will dynamically execute partner process

More information

Title: Using BPEL with ESB for Loose Coupling of Business Process

Title: Using BPEL with ESB for Loose Coupling of Business Process Title: Using BPEL with ESB for Loose Coupling of Business Process Version: 1.0, Date: June 26, 2008 Discussion Topics Objective Application Architecture Deployed ESB Architecture Creating Database Tables

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

IBM EXAM - C IBM WebSphere Enterprise Service Bus V7.0, Integration Development. Buy Full Product.

IBM EXAM - C IBM WebSphere Enterprise Service Bus V7.0, Integration Development. Buy Full Product. IBM EXAM - C2180-605 IBM WebSphere Enterprise Service Bus V7.0, Integration Development Buy Full Product http://www.examskey.com/c2180-605.html Examskey IBM C2180-605 exam demo product is here for you

More information

Oracle Retail Accelerators for WebLogic Server 11g

Oracle Retail Accelerators for WebLogic Server 11g Oracle Retail Accelerators for WebLogic Server 11g Micro-Applications Development Tutorial October 2010 Note: The following is intended to outline our general product direction. It is intended for information

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Using Oracle Sales Cloud Adapter Release 12.2.1 E65476-01 September 2015 Oracle Fusion Middleware Using Oracle Sales Cloud Adapter, Release 12.2.1 E65476-01 Copyright 2015, Oracle

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

JBoss SOAP Web Services User Guide. Version: M5

JBoss SOAP Web Services User Guide. Version: M5 JBoss SOAP Web Services User Guide Version: 3.3.0.M5 1. JBoss SOAP Web Services Runtime and Tools support Overview... 1 1.1. Key Features of JBossWS... 1 2. Creating a Simple Web Service... 3 2.1. Generation...

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

Security Explorer 9.1. User Guide

Security Explorer 9.1. User Guide Security Explorer 9.1 User Guide Security Explorer 9.1 User Guide Explorer 8 Installation Guide ii 2013 by Quest Software All rights reserved. This guide contains proprietary information protected by copyright.

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

MODULE 4: ACTIVE DIRECTORY WEB SERVICE

MODULE 4: ACTIVE DIRECTORY WEB SERVICE MODULE 4: ACTIVE DIRECTORY WEB SERVICE Active Directory includes a wealth of information about your company s organization. This module will show you how to auto-populate fields in your InfoPath form with

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

Apps Exception Problem Building Schema Jdeveloper

Apps Exception Problem Building Schema Jdeveloper Apps Exception Problem Building Schema Jdeveloper Getting Error scanning file when running jetty 9 on java 8 using the maven jetty plugin XML- 24500: (Error) Can not build schema located at ' spring-beans-3.1.xsd'

More information

Overview. Principal Product Manager Oracle JDeveloper & Oracle ADF

Overview. Principal Product Manager Oracle JDeveloper & Oracle ADF Rich Web UI made simple an ADF Faces Overview Dana Singleterry Dana Singleterry Principal Product Manager Oracle JDeveloper & Oracle ADF Agenda Comparison: New vs. Old JDeveloper Provides JSF Overview

More information

Orgnazition of This Part

Orgnazition of This Part Orgnazition of This Part Table of Contents Tutorial: Organization of This Part...1 Lesson 1: Starting JReport Enterprise Server and Viewing Reports...3 Introduction...3 Installing JReport Enterprise Server...3

More information

Just Get It Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Hands on Practice

Just Get It Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Hands on Practice This hands on practice describes the steps for deploying an existing Java EE application written with Oracle ADF technologies. Although the practice refers to specific features and files in a sample application

More information