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

Size: px
Start display at page:

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

Transcription

1 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

2 Table of Contents Use Case... 3 Description... 3 Objective... 4 Scenario... 4 Policies Used... 4 Software Requirements... 4 Prerequisites... 4 Verified Product Version... 4 Potentially Applies to Product Version(s)... 4 Download Main Page... 4 Product URLs... 4 Step by Step Instructions... 6 Create HelloWorldComposite Application... 6 Build and Deploy HelloWorldComposite Application Create SOA Component level Role based Authorization Policy Attach OOTB authentication policy to the SOA Service Test the Secured HelloWorldComposite App Attach Custom authorization policy to the SOA Component Oracle Corporation Component level Role authorization Version 1.0 2

3 Use Case Description OWSM supports two types of authorization policies: Role based Authorization policies Permission based Authorization policies For SOA Composite Apps OWSM supports authorization policies at two levels: At the SOA Web Service binding level (<binding.ws>) At the SOA component level (<component>) In general I would recommend the following when securing SOA: Attach authentication /message protection policies at the SOA Web Service binding level Attach authorization policies at the SOA component level There are two reasons for this recommendation: Messages can enter SOA via different bindings ex: JCA bindings (<binding.jca>, Events, etc attaching the authorization policy at the SOA component level ensures that no matter which binding is used to reach the component the authorization policy will be enforced. If you want to leverage local optimization there are a number of rules that determine if SOA local optimization will be enabled when a security policy is attached at the Web Service binding level. While I cannot get into the details of the local optimization rules in this How To one thing to note is local optimization will be disabled if an authorization policy is attached at the web service binding level. This How To focuses on how to secure a SOA Composite app using role based authorization policy at the SOA component, the steps outlined will be similar in nature for the SOA Web Service binding level as well. A few other caveats to note when using role based authorization for SOA. Currently as of the writing of this How To OWSM does not support specifying Application Roles when securing SOA composite apps in the Role based authorization policy. This limitation is specific to SOA and does not apply for other type of services like ADF BC Web Services or WLS Web Services. From a terminology perspective Enterprise Roles and Ldap Groups are identical and are used interchangeably. For the purposes of this How To the Ldap Groups used for the Authorization Policy are those that ship with Weblogic. The steps would be identical, if Weblogic was wired to an external Ldap like Active Directory, etc. Also note that in this How To we will use the EM Web Service Tester page that ships with EM Fusion Middleware Control. However any other tool like SOAP UI can be used for testing purposes. Oracle Corporation Component level Role authorization Version 1.0 3

4 Objective To describe the steps required to Security SOA Composite Apps at the Component level with OWSM SOA component authorization policies. Scenario Policies Used Service/Client Policy Policy Type HelloWorldComposite oracle/wss_username_token_service_policy Service HelloWorldComposite mycompany/soa_component_authorization_monitor_role_policy Service Software Requirements Prerequisites # Product Download URL 1 Install SOA Suite with JDeveloper Verified Product Version # Product Release Version 1 SOA Suite Potentially Applies to Product Version(s) # Product Release Version 1 SOA Suite , , Download Main Page Product URLs Product URL Login/Password Oracle Corporation Component level Role authorization Version 1.0 4

5 EM Fusion Middle Control User: weblogic Password: welcome1 Weblogic Console User: weblogic Password: welcome1 Oracle Corporation Component level Role authorization Version 1.0 5

6 Step by Step Instructions At a high level we will perform the following in this How-To: Create a HelloWorldComposite Application using JDeveloper Build and Deploy the HelloWorldComposite application using EM Create a Custom Authorization Policy using EM Attach an Authentication Policy to HelloWorldComposite App using EM Test the secured HelloWorldComposite app using EM Web Service Tester page Attach the Custom Authorization Policy using EM Test the secured HelloWorldComposite app using EM Web Service Tester page. Create HelloWorldComposite Application 1. To create the HelloWorld Composite Application -Select New Application from the Application Navigator. Figure 1. Select "New Application" from the "Application Navigator" Oracle Corporation Component level Role authorization Version 1.0 6

7 2. This will launch the New Application Wizard. Provide the Application Name as HelloWorldCompositeApp and select SOA Application from the Application Template list as show in Figure 2. Click Next to proceed. Figure 2. Create a SOA Application by choosing the appropriate template Oracle Corporation Component level Role authorization Version 1.0 7

8 3. Provide Project Name as HelloWorldComposite as show in Figure 3. In this project no other technologies are required so leave the Selected Project technologies as SOA. Click Next to proceed. Figure 3. Project information for SOA Composite App. Oracle Corporation Component level Role authorization Version 1.0 8

9 4. JDeveloper provides some default templates for creating a composite application. In this How To we will create a Composite with a BPEL Process. Select the Composite with BPEL Process as shown in Figure 4. Click Finish to complete the SOA Application creation steps. Figure 4. Create a Composite with BPEL Process Oracle Corporation Component level Role authorization Version 1.0 9

10 5. This will launch the BPEL Process Creation dialog as shown in Figure 5. Select Template as Synchronous BPEL Process. Ensure Expose as a SOAP service is selected. These options will result in the creation of a Synchronous BPEL process exposing a web service endpoint. Click OK to finish the BPEL process creation. Figure 5. BPEL Process Creation Dialog in JDeveloper Oracle Corporation Component level Role authorization Version

11 6. Once the synchronous BPEL Process is created add a BPEL Assign Activity by selecting Assign activity from the Activities sub-section under the BPEL Constructs section on the right hand side and add it in between the receiveinput and the replyoutput nodes as show in Figure 6. Figure 6. Synchronous BPEL Process exposed as Web Service 7. After adding the Assign activity, double click on the Assign activity node to edit the Assign activity. This will open a dialog box as shown in Figure 7. Oracle Corporation Component level Role authorization Version

12 Figure 7. BPEL Edit Assign Activity Dialog 8. Expand the outputvariable on the right hand side of the dialog and double click on client:result field as shown in Figure 8. Upon double clicking this will launch the Expression Builder dialog as show in Figure 9. Figure 8. Expand the output variable to launch the Expression Builder. Oracle Corporation Component level Role authorization Version

13 Figure 9. Expression Builder Dialog Note: JDeveloper based on the selections we had done previously creates by default a composite app that takes a single argument (of type String) as input and returns a single value (of type String) as output. Oracle Corporation Component level Role authorization Version

14 9. We construct a simple < Hello +input> by selecting the concat() function from the list of pre-built String functions that are available in SOA. This is show in Figure 10. Hit OK to dismiss the Expression Builder dialog. Figure 10. Using the concat function in BPEL Expression Builder Oracle Corporation Component level Role authorization Version

15 10. The previous steps will result in an automatic Copy Rule being created where in the expression that was created in Figure 10 is assigned to the output payload as shown in Figure 11. Figure 11. Copy Rule in the Assign Activity Oracle Corporation Component level Role authorization Version

16 Build and Deploy HelloWorldComposite Application Component level Role Authorization in SOASuite using Oracle Web Services Manager 11g 1. Make or Build the Composite Application and ensure there are no compilation failures. To Build the Composite Application right click on the HelloWorldComposite Project and click on Make HelloWorldComposite.jpr as show in Figure 12. Figure 12. Build the Composite Application 2. There are many ways to deploy the Composite Application but in this How To we will create a jar for the HelloWorldComposite application. To create a jar Right Click on the HelloWorldComposite project and click on Deploy from the Menu; Figure 13 - Figure 16 show the steps for creating a jar (SAR) for the HelloWorldComposite app. Oracle Corporation Component level Role authorization Version

17 Figure 13. Steps to create a jar for the HelloWorld Composite app Oracle Corporation Component level Role authorization Version

18 Figure 14 Select the SAR option to create a jar Figure 15. Steps for creating a jar for HelloWorld Composite App Oracle Corporation Component level Role authorization Version

19 Figure 16. Final step in the creation of jar for HelloWorld Composite app 3. Once the jar is created we will use EM to deploy the composite app. To deploy the Composite application Oracle Corporation Component level Role authorization Version

20 Log into EM Component level Role Authorization in SOASuite using Oracle Web Services Manager 11g Expand the SOA folder on the Left Hand navigation tree. Click on soa-infra on the Left Hand tree. The Right hand panel is updated. Now click on SOA Infrastructure this will open a menu. Select SOA Deployment and Deploy from the menu as shown in Figure 17. Figure 17. Deploying HelloWorld Composite app from EM Oracle Corporation Component level Role authorization Version

21 4. This will launch the SOA Composite Deployment wizard. Browse the local file system to select the jar to deploy by created in Figure 16 as shown in Figure 18. Click Next to proceed. Figure 18. Selecting HelloWorldComposite archive in EM 5. In the sample topology there is only one target and so there are no choices. Select the partition to deploy the composite app. SOA ships will a default partition out of the box. Select the default partition (Note: It is a Oracle Corporation Component level Role authorization Version

22 mandatory field) as show in Figure 19. Click Next to proceed. Leave the defaults as show in Figure 20 on the confirmation page and click on Deploy to finish deployment. Figure 19. Target Selection for HelloWorldComposite Figure 20. HelloWorldComposte deployment via EM Confirmation page Create SOA Component level Role based Authorization Policy 1. Search for policies that can be applied to SOA Component. Oracle Corporation Component level Role authorization Version

23 Figure 21. Search for SOA Component Authorization policies 2. Make a Copy of the OOTB Authorization policy using the Create Like feature as shown in Figure 22. Oracle Corporation Component level Role authorization Version

24 Figure 22. Make a Copy of the OOTB Authorization Policy using "Create Like" 3. Name the Policy appropriately as show in Figure 23. Oracle Corporation Component level Role authorization Version

25 Figure 23. New SOA Component Authorization Policy 4. Select the Role in the settings tab of the Policy. You do this by clicking on the settings tab for the Authorization assertion and selecting the Selected Roles radio button as shown in Figure 24. Oracle Corporation Component level Role authorization Version

26 Figure 24. Select a Role as part of the creation of the new Authorization Policy 5. You can add the Role by clicking on the Add button in Figure 24. This will launch a Add Role dialog box as shown in Figure 25. In this example the Monitor role has been selected. Oracle Corporation Component level Role authorization Version

27 Figure 25. Selecting the Monitor role to add to the Authorization policy Click OK on the diaglog in Figure 25, after adding the role click on the Save button to save the policy. Attach OOTB authentication policy to the SOA Service 1. Before we can attach the Custom Authorization Policy created in the previous steps to the SOA Component, we need to secure the HelloWorldComposite with an authentication policy. For this How-To we will use the oracle/wss_username_token_service_policy. Go to the HelloWorldComposite Dashboard page as shown in Figure Oracle Corporation Component level Role authorization Version

28 26. In Figure 26 we have Service bpelprocess1_client_ep of type Web Service. Click on the bpelprocess1_client_ep to navigate to the Service Dashboard page as shown in Figure 27. Figure 26. HelloWorldComposite Dashboard page in EM. Oracle Corporation Component level Role authorization Version

29 Figure 27. Service Dashboard page for HelloWorldComposite in EM Oracle Corporation Component level Role authorization Version

30 2. Click on the Policies Tab. This will show polices attached to the Service. Click on the Attach/Detach button to a launch the Policy Attachment Dialog as show in Figure 28. The Policy Attachment Dialog is show in Figure 29. Figure 28. Launching OWSM Policy Attachment Dialog in EM for SOA Service 3. In the Policy Attachment Dialog in Figure 29, select Name as the search criteria and enter username and click on the button next to it to search. Select oracle/wss_username_token_service_policy and click on the Attach Oracle Corporation Component level Role authorization Version

31 button. Click on OK button to finish the policy attachment. Figure 30 shows the results of attaching the oracle/wss_username_token_service_policy. Figure 29. Selecting oracle/wss_username_token_service_policy Oracle Corporation Component level Role authorization Version

32 Figure 30. Result of attaching the oracle/wss_username_token_service_policy A few things to note: Starting with PS5 - we now show the security status as seen in Figure 30 Starting with PS5 we now show the overall validity of the policy attachments. Oracle Corporation Component level Role authorization Version

33 Test the Secured HelloWorldComposite App Component level Role Authorization in SOASuite using Oracle Web Services Manager 11g To test the HelloWorldComposite navigate to the HelloWorldComposite Dashboard page and click on the Test button as shown in Figure 31. This will launch the Web Service Tester page that ships with EM as shown in Figure 32 Figure 31. Testing HelloWorldComposite Oracle Corporation Component level Role authorization Version

34 Figure 32. EM Web Service Tester page We will do a quick negative test by not providing any authentication information. Enter Negative World in the input field as show in Figure 33 and click on Test Web Service button. This will result in an Error dialog as shown in Figure 34. Oracle Corporation Component level Role authorization Version

35 Figure 33. Provide Inputs for testing HelloWorldComposite Oracle Corporation Component level Role authorization Version

36 Figure 34 Results of Negative Testing Now perform a positive test by providing the authentication information as shown in Figure 35. You can provide the authentication information by expanding the Security section. Enter the following information for the fields show in Oracle Corporation Component level Role authorization Version

37 Figure 35. Select an appropriate policy from the Compatible Client Policies list. (Note: This is important if a policy is not selected then no security information will be sent and thus may result in failures). Username: weblogic Password:weblogic1 Click Test Web Service button to test. This should result in a successful response from the HelloWorldComposite as show in Figure 36 Figure 35. Testing oracle/wss_username_token_service_policy using EM Web Service Tester Note: Username/password will vary by deployment. Provide username/password that is appropriate for your deployment. Oracle Corporation Component level Role authorization Version

38 Figure 36. Response from HelloWorldComposite Now that we have successfully tested the HelloWorldComposite app with the OOTB OWSM authentication policy, we will now secure it with the Custom Authorization policy that was created previously. Oracle Corporation Component level Role authorization Version

39 Attach Custom authorization policy to the SOA Component Component level Role Authorization in SOASuite using Oracle Web Services Manager 11g 1. Go to the SOA Composite you want to secure with this Authorization Policy. In the SOA Composite page click on the Component as shown in Figure 37. In Figure 37 we have a HelloWorldComposite that has a BPELProcess1 SOA Component. Figure 37. Attaching OWSM Policy to SOA Component 2. Click on the Policies tab for the SOA Component. In this example the SOA Component is called BPELProcess1 as shown in Figure 38. Oracle Corporation Component level Role authorization Version

40 Figure 38. Attaching Policies to a SOA Component. Oracle Corporation Component level Role authorization Version

41 3. On the Policies tab click on Attach/Detach button as shown in Figure 39. Select the newly created Authorization Policy. Figure 39. Selecting the Policy to attach. Oracle Corporation Component level Role authorization Version

42 4. Once done selecting the policy to attach. Click OK in Figure 39. You have completed the process of attaching an Authorization Policy to a SOA Component. Figure 40 shows the results of attaching the custom authorization policy. Figure 40. Policies attached to a SOA Component Oracle Corporation Component level Role authorization Version

43 5. Test the HelloWorldComposite from the EM Web Service Tester page. Provide the credentials as weblogic/welcome1 as shown in Figure 41. Figure 41. Negative Authorization Test with correct credentials. Oracle Corporation Component level Role authorization Version

44 Notice that even though the credentials weblogic/welcome1 is correct the test fails as shown in Figure 42. Figure 42. Negative Authorization Test Response Oracle Corporation Component level Role authorization Version

45 6. In order to perform a positive authorization test we need to add the weblogic user to the Monitor role. In order to do this we first need to log in to Weblogic Console. Click on Security Realms on the Left Hand Domain Structure Tree as show in Figure 43. Figure 43. Navigating to the Security Realms in Weblogic Console Oracle Corporation Component level Role authorization Version

46 7. Weblogic ships with a default realm called myrealm. Click on myrealm as show in Figure 44. Figure 44. List of Security realms Oracle Corporation Component level Role authorization Version

47 8. Click on the Users and Groups tab under myrealm as shown in Figure 45. Figure 46 shows the default set of users that ship with Weblogic. In this case the users are weblogic and OracleSystemUser. Figure 45. "myrealm" General tab Oracle Corporation Component level Role authorization Version

48 Figure 46. Default set of users that ship with Weblogic Oracle Corporation Component level Role authorization Version

49 9. Click on weblogic user in Figure 46 and then click on the Groups tab for the user weblogic. This shows the default group membership for weblogic as shown in Figure 47. As we can see weblogic is not part of the Monitor group. Figure 47. Default Group membership of user "weblogic" Oracle Corporation Component level Role authorization Version

50 10. Add the Monitor group from the Parent Groups Available in Figure 47. The result is that the weblogic user is now a member of both Administrators and Monitor group as shown in Figure 48 and click Save. Figure 48. Make "weblogic" user a member of "Monitor" group. 11. Now go back to the EM Web Service Tester page and test the HelloWorldComposite app. Note: You may need to start the weblogic server for changes to take effect Oracle Corporation Component level Role authorization Version

51 Oracle Web Services Manager March 2012 Author: Prakash Yamuna Oracle Corporation World Headquarters 500 Oracle Parkway Redwood Shores, CA U.S.A. Worldwide Inquiries: Phone: Fax: oracle.com Copyright 2011, Oracle and/or its affiliates. All rights reserved. This document is provided for information purposes only and the contents hereof are subject to change without notice. This document is not warranted to be error-free, nor subject to any other warranties or conditions, whether expressed orally or implied in law, including implied warranties and conditions of merchantability or fitness for a particular purpose. We specifically disclaim any liability with respect to this document and no contractual obligations are formed either directly or indirectly by this document. This document may not be reproduced or transmitted in any form or by any means, electronic or mechanical, for any purpose, without our prior written permission. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners Oracle Corporation Component level Role authorization Version

An Oracle White Paper October The New Oracle Enterprise Manager Database Control 11g Release 2 Now Managing Oracle Clusterware

An Oracle White Paper October The New Oracle Enterprise Manager Database Control 11g Release 2 Now Managing Oracle Clusterware An Oracle White Paper October 2009 The New Oracle Enterprise Manager Database Control 11g Release 2 Now Managing Oracle Clusterware Introduction Oracle Enterprise Manager provides a single, integrated

More information

April Understanding Federated Single Sign-On (SSO) Process

April Understanding Federated Single Sign-On (SSO) Process April 2013 Understanding Federated Single Sign-On (SSO) Process Understanding Federated Single Sign-On Process (SSO) Disclaimer The following is intended to outline our general product direction. It is

More information

Oracle Fusion Middleware 11g Oracle Access Manager Frequently Asked Questions June 2009

Oracle Fusion Middleware 11g Oracle Access Manager Frequently Asked Questions June 2009 Oracle Fusion Middleware 11g Oracle Access Manager 10.1.4.3.0 Frequently Asked Questions June 2009 This FAQ addresses frequently asked questions relating specifically to Oracle Access Manager (OAM) 10.1.4.3.0

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

Veritas NetBackup and Oracle Cloud Infrastructure Object Storage ORACLE HOW TO GUIDE FEBRUARY 2018

Veritas NetBackup and Oracle Cloud Infrastructure Object Storage ORACLE HOW TO GUIDE FEBRUARY 2018 Veritas NetBackup and Oracle Cloud Infrastructure Object Storage ORACLE HOW TO GUIDE FEBRUARY 2018 0. Disclaimer The following is intended to outline our general product direction. It is intended for information

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 FLEXCUBE Direct Banking Release Corporate Cash Management User Manual. Part No. E

Oracle FLEXCUBE Direct Banking Release Corporate Cash Management User Manual. Part No. E Oracle FLEXCUBE Direct Banking Release 12.0.0 Corporate Cash Management User Manual Part No. E52305-01 Corporate Cash Management User Manual Table of Contents 1. Transaction Host Integration Matrix...

More information

An Oracle White Paper November Primavera Unifier Integration Overview: A Web Services Integration Approach

An Oracle White Paper November Primavera Unifier Integration Overview: A Web Services Integration Approach An Oracle White Paper November 2012 Primavera Unifier Integration Overview: A Web Services Integration Approach Introduction Oracle s Primavera Unifier offers an extensible interface platform based on

More information

WebCenter Portal Task Flow Customization in 12c O R A C L E W H I T E P A P E R J U N E

WebCenter Portal Task Flow Customization in 12c O R A C L E W H I T E P A P E R J U N E WebCenter Portal Task Flow Customization in 12c O R A C L E W H I T E P A P E R J U N E 2 0 1 7 Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

Oracle FLEXCUBE Direct Banking Release Dashboard Widgets Transfer Payments User Manual. Part No. E

Oracle FLEXCUBE Direct Banking Release Dashboard Widgets Transfer Payments User Manual. Part No. E Oracle FLEXCUBE Direct Banking Release 12.0.0 Dashboard Widgets Transfer Payments User Manual Part No. E52305-01 Dashboard Widgets User Manual Table of Contents 1. Transaction Host Integration Matrix...

More information

Oracle Best Practices for Managing Fusion Application: Discovery of Fusion Instance in Enterprise Manager Cloud Control 12c

Oracle Best Practices for Managing Fusion Application: Discovery of Fusion Instance in Enterprise Manager Cloud Control 12c An Oracle White Paper July, 2014 Oracle Best Practices for Managing Fusion Application: Discovery of Fusion Instance in Enterprise Manager Cloud Control 12c Executive Overview... 2 Applicable versions

More information

Data Capture Recommended Operating Environments

Data Capture Recommended Operating Environments Oracle Insurance Data Capture Recommended Operating Environments Release 5.2 October 2014 CONTENTS STATEMENT OF PURPOSE... 3 OIDC Hardware Configuration Example... 4 OIDC Workflow Example... 5 QUICK VIEW...

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

Loading User Update Requests Using HCM Data Loader

Loading User Update Requests Using HCM Data Loader Loading User Update Requests Using HCM Data Loader Oracle Fusion Human Capital Management 11g Release 11 (11.1.11) Update 8 O R A C L E W H I T E P A P E R N O V E M B E R 2 0 1 7 Table of Contents Loading

More information

Installation Instructions: Oracle XML DB XFILES Demonstration. An Oracle White Paper: November 2011

Installation Instructions: Oracle XML DB XFILES Demonstration. An Oracle White Paper: November 2011 An Oracle White Paper: November 2011 Installation Instructions: Oracle XML DB XFILES Demonstration Table of Contents Installation Instructions: Oracle XML DB XFILES Demonstration... 1 Executive Overview...

More information

Generate Invoice and Revenue for Labor Transactions Based on Rates Defined for Project and Task

Generate Invoice and Revenue for Labor Transactions Based on Rates Defined for Project and Task Generate Invoice and Revenue for Labor Transactions Based on Rates Defined for Project and Task O R A C L E P P M C L O U D S E R V I C E S S O L U T I O N O V E R V I E W D E C E M B E R 2017 Disclaimer

More information

Oracle WebCenter Portal 11g Developer Workshop

Oracle WebCenter Portal 11g Developer Workshop Oracle WebCenter Portal 11g Developer Workshop Lab 03 Integrating Content Page 1 of 12 Overview WebCenter Content is the content repository for WebCenter Portal. To leverage the content stored in the repository,

More information

Oracle Fusion Configurator

Oracle Fusion Configurator Oracle Fusion Configurator Configurator Modeling Walk Through O R A C L E W H I T E P A P E R M A R C H 2 0 1 8 Table of Contents Introduction 1 Assumptions 1 Product Information Management Setup 2 Item

More information

Tutorial on How to Publish an OCI Image Listing

Tutorial on How to Publish an OCI Image Listing Tutorial on How to Publish an OCI Image Listing Publish an OCI Image Listing F13637-01 JANUARY 2019 DISCLAIMER The following is intended to outline our general product direction. It is intended for information

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

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

Next-Generation SOA Infrastructure. An Oracle White Paper May 2007

Next-Generation SOA Infrastructure. An Oracle White Paper May 2007 Next-Generation SOA Infrastructure An Oracle White Paper May 2007 Next-Generation SOA Infrastructure INTRODUCTION Today, developers are faced with a bewildering array of technologies for developing Web

More information

Oracle Enterprise Performance Management Cloud

Oracle Enterprise Performance Management Cloud An Oracle White Paper January 2018 Oracle Enterprise Performance Management Cloud Extracting YTD Balances from FCCS using Data Management Disclaimer This document is provided for information purposes and

More information

ORACLEAS PORTAL 10g (10.1.4) INTEGRATE YOUR ENTERPRISE CONTENT MANAGEMENT SYSTEMS INTO ORACLE PORTAL

ORACLEAS PORTAL 10g (10.1.4) INTEGRATE YOUR ENTERPRISE CONTENT MANAGEMENT SYSTEMS INTO ORACLE PORTAL Oracle WebCenter Technical Note ORACLEAS PORTAL 10g (10.1.4) INTEGRATE YOUR ENTERPRISE CONTENT MANAGEMENT SYSTEMS INTO ORACLE PORTAL April 2007 INTRODUCTION In many enterprise portal environments, it is

More information

Oracle Access Manager 10g - Oracle Enterprise Gateway Integration Guide

Oracle Access Manager 10g - Oracle Enterprise Gateway Integration Guide An Oracle White Paper June 2011 Oracle Access Manager 10g - Oracle Enterprise Gateway Integration Guide 1/26 Disclaimer The following is intended to outline our general product direction. It is intended

More information

Oracle WebCenter Portal 11g Developer Workshop

Oracle WebCenter Portal 11g Developer Workshop Oracle WebCenter Portal 11g Developer Workshop Lab 02 Creating the OraHealth Page Template and Skin Page 1 of 24 Overview WebCenter Portal uses page templates and skins to control the look-and-feel of

More information

Oracle WebCenter Portal 11g Developer Workshop

Oracle WebCenter Portal 11g Developer Workshop Oracle WebCenter Portal 11g Developer Workshop Lab 00 Preparing the Environment Page 1 of 10 Overview For this workshop, you will use the Oracle WebCenter Portal Jump Start Kit, which is a utility that

More information

Oracle Cloud Applications. Oracle Transactional Business Intelligence BI Catalog Folder Management. Release 11+

Oracle Cloud Applications. Oracle Transactional Business Intelligence BI Catalog Folder Management. Release 11+ Oracle Cloud Applications Oracle Transactional Business Intelligence BI Catalog Folder Management Release 11+ ORACLE WHITE PAPER November 2017 ORACLE WHITE PAPER November 2017 Table of Contents Introduction

More information

Creating Custom Project Administrator Role to Review Project Performance and Analyze KPI Categories

Creating Custom Project Administrator Role to Review Project Performance and Analyze KPI Categories Creating Custom Project Administrator Role to Review Project Performance and Analyze KPI Categories Worked Example ORACLE PPM CLOUD SERVICES SOLUTION OVERVIEW MAY 2018 Disclaimer The following is intended

More information

Oracle Service Registry - Oracle Enterprise Gateway Integration Guide

Oracle Service Registry - Oracle Enterprise Gateway Integration Guide An Oracle White Paper June 2011 Oracle Service Registry - Oracle Enterprise Gateway Integration Guide 1 / 19 Disclaimer The following is intended to outline our general product direction. It is intended

More information

Oracle Database 10g Release 2 Database Vault - Restricting the DBA From Accessing Business Data

Oracle Database 10g Release 2 Database Vault - Restricting the DBA From Accessing Business Data Oracle Database 10g Release 2 Database Vault - Restricting the DBA From Accessing Business Data An Oracle White Paper August 2006 Oracle Database Vault Overview Oracle Database Vault enables you to Restrict

More information

Oracle Application Development Framework Overview

Oracle Application Development Framework Overview An Oracle White Paper July 2009 Oracle Application Development Framework Overview Introduction... 1 Oracle ADF Making Java EE Development Simpler... 2 THE ORACLE ADF ARCHITECTURE... 3 The Business Services

More information

An Oracle Technical White Paper May Deploying Oracle Beehive with BlackBerry Enterprise Server for MDS Applications

An Oracle Technical White Paper May Deploying Oracle Beehive with BlackBerry Enterprise Server for MDS Applications An Oracle Technical White Paper May 2010 Deploying Oracle Beehive with BlackBerry Enterprise Server for MDS Applications Introduction... 2 Solution Overview... 3 BlackBerry Infrastructure... 4 BlackBerry

More information

Automatic Receipts Reversal Processing

Automatic Receipts Reversal Processing ERP CLOUD Automatic Receipts Reversal Processing Oracle Receivables Table of Contents 1. Purpose of the document... 2 2. Assumptions and Prerequisites... 2 3. Feature Specific Setup... 3 Receivables Lookups...

More information

Configuring Oracle Business Intelligence Enterprise Edition to Support Teradata Database Query Banding

Configuring Oracle Business Intelligence Enterprise Edition to Support Teradata Database Query Banding A Joint Oracle Teradata White Paper September 2011 Configuring Oracle Business Intelligence Enterprise Edition to Support Teradata Database Query Banding Introduction... 1 Step 1. Query Band Configuration

More information

Migrating VMs from VMware vsphere to Oracle Private Cloud Appliance O R A C L E W H I T E P A P E R O C T O B E R

Migrating VMs from VMware vsphere to Oracle Private Cloud Appliance O R A C L E W H I T E P A P E R O C T O B E R Migrating VMs from VMware vsphere to Oracle Private Cloud Appliance 2.3.1 O R A C L E W H I T E P A P E R O C T O B E R 2 0 1 7 Table of Contents Introduction 2 Environment 3 Install Coriolis VM on Oracle

More information

Oracle Secure Backup. Getting Started. with Cloud Storage Devices O R A C L E W H I T E P A P E R F E B R U A R Y

Oracle Secure Backup. Getting Started. with Cloud Storage Devices O R A C L E W H I T E P A P E R F E B R U A R Y Oracle Secure Backup Getting Started with Cloud Storage Devices O R A C L E W H I T E P A P E R F E B R U A R Y 2 0 1 8 Disclaimer The following is intended to outline our general product direction. It

More information

SonicMQ - Oracle Enterprise Gateway Integration Guide

SonicMQ - Oracle Enterprise Gateway Integration Guide An Oracle White Paper June 2011 SonicMQ - Oracle Enterprise Gateway Integration Guide 1 / 24 Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

Oracle CIoud Infrastructure Load Balancing Connectivity with Ravello O R A C L E W H I T E P A P E R M A R C H

Oracle CIoud Infrastructure Load Balancing Connectivity with Ravello O R A C L E W H I T E P A P E R M A R C H Oracle CIoud Infrastructure Load Balancing Connectivity with Ravello O R A C L E W H I T E P A P E R M A R C H 2 0 1 8 Oracle Cloud Infrastructure Ravello Cloud Service Oracle Cloud Infrastructure Ravello

More information

Oracle Web Service Manager Implementation Guide Oracle FLEXCUBE Universal Banking Release [April] [2014]

Oracle Web Service Manager Implementation Guide Oracle FLEXCUBE Universal Banking Release [April] [2014] Oracle Web Service Manager Implementation Guide Oracle FLEXCUBE Universal Banking Release 12.0.3.0.0 [April] [2014] Table of Contents 1. INTRODUCTION... 1-1 2. PREREQUISITES... 2-1 3. INSTALLATION... 3-1

More information

Oracle Virtual Directory 11g Oracle Enterprise Gateway Integration Guide

Oracle Virtual Directory 11g Oracle Enterprise Gateway Integration Guide An Oracle White Paper June 2011 Oracle Virtual Directory 11g Oracle Enterprise Gateway Integration Guide 1 / 25 Disclaimer The following is intended to outline our general product direction. It is intended

More information

Oracle WebCenter Suite Integrating Secure Enterprise Search

Oracle WebCenter Suite Integrating Secure Enterprise Search Oracle WebCenter Suite Integrating Secure Enterprise Search An Oracle White Paper January 2007 Oracle WebCenter Suite Integrating Secure Enterprise Search INTRODUCTION As organizations continually reinvent

More information

Correction Documents for Poland

Correction Documents for Poland ERP CLOUD Correction Documents for Poland Oracle Financials for EMEA Table of Contents Purpose of the Document... 2 Setup... 3 Security Privilege... 3 Receivables Transaction Sources... 4 Receivables Transaction

More information

Create Individual Membership. This step-by-step guide takes you through the process to create an Individual Membership.

Create Individual Membership. This step-by-step guide takes you through the process to create an Individual Membership. Create Individual Membership This step-by-step guide takes you through the process to create an Individual Membership. Before you start Have you checked the Oracle Academy New Membership Reference Guide

More information

An Oracle White Paper February Combining Siebel IP 2016 and native OPA 12.x Interviews

An Oracle White Paper February Combining Siebel IP 2016 and native OPA 12.x Interviews An Oracle White Paper February 2017 Combining Siebel IP 2016 and native OPA 12.x Interviews Purpose This whitepaper is a guide for Siebel customers that wish to take advantage of OPA 12.x functionality

More information

Frequently Asked Questions Oracle Content Management Integration. An Oracle White Paper June 2007

Frequently Asked Questions Oracle Content Management Integration. An Oracle White Paper June 2007 Frequently Asked Questions Oracle Content Management Integration An Oracle White Paper June 2007 NOTE: The following is intended to outline our general product direction. It is intended for information

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

An Oracle White Paper September Security and the Oracle Database Cloud Service

An Oracle White Paper September Security and the Oracle Database Cloud Service An Oracle White Paper September 2012 Security and the Oracle Database Cloud Service 1 Table of Contents Overview... 3 Security architecture... 4 User areas... 4 Accounts... 4 Identity Domains... 4 Database

More information

Oracle Fusion General Ledger Hierarchies: Recommendations and Best Practices. An Oracle White Paper April, 2012

Oracle Fusion General Ledger Hierarchies: Recommendations and Best Practices. An Oracle White Paper April, 2012 Oracle Fusion General Ledger Hierarchies: Recommendations and Best Practices An Oracle White Paper April, 2012 Oracle Fusion General Ledger Hierarchies: Recommendations and Best Practices INTRODUCTION

More information

An Oracle White Paper December, 3 rd Oracle Metadata Management v New Features Overview

An Oracle White Paper December, 3 rd Oracle Metadata Management v New Features Overview An Oracle White Paper December, 3 rd 2014 Oracle Metadata Management v12.1.3.0.1 Oracle Metadata Management version 12.1.3.0.1 - December, 3 rd 2014 Disclaimer This document is for informational purposes.

More information

Using the Oracle Business Intelligence Publisher Memory Guard Features. August 2013

Using the Oracle Business Intelligence Publisher Memory Guard Features. August 2013 Using the Oracle Business Intelligence Publisher Memory Guard Features August 2013 Contents What Are the Memory Guard Features?... 3 Specify a maximum data sized allowed for online processing... 3 Specify

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Creating Domains Using the Configuration Wizard 11g Release 1 (10.3.4) E14140-04 January 2011 This document describes how to use the Configuration Wizard to create, update, and

More information

Maximum Availability Architecture

Maximum Availability Architecture Best Practices for Oracle WebCenter Custom Portal Apps in an Enterprise Topology Oracle Maximum Availability Architecture White Paper September 2012 Maximum Availability Architecture Oracle Best Practices

More information

An Oracle White Paper May Example Web Listener Deployment for Oracle Application Express

An Oracle White Paper May Example Web Listener Deployment for Oracle Application Express An Oracle White Paper May 2014 Example Web Listener Deployment for Oracle Application Express Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

SETTING UP ORACLE ULTRA SEARCH FOR ORACLE PORTAL 10G (10.1.4)

SETTING UP ORACLE ULTRA SEARCH FOR ORACLE PORTAL 10G (10.1.4) Oracle Application Server Portal Technical Note SETTING UP ORACLE ULTRA SEARCH FOR ORACLE PORTAL 10G (10.1.4) November 2005 INTRODUCTION This Technical Note describes how to setup up and configure Oracle

More information

Advanced Global Intercompany Systems : Transaction Account Definition (TAD) In Release 12

Advanced Global Intercompany Systems : Transaction Account Definition (TAD) In Release 12 Advanced Global Intercompany Systems : Transaction Account Definition (TAD) In Release 12 An Oracle White Paper [May] [2011] TABLE OF CONTENTS Executive Overview... 3 Introduction... 3 Scope... 3 Overview...

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

Oracle FLEXCUBE Direct Banking Release Dashboard Widgets Customer Services User Manual. Part No. E

Oracle FLEXCUBE Direct Banking Release Dashboard Widgets Customer Services User Manual. Part No. E Oracle FLEXCUBE Direct Banking Release 12.0.0 Dashboard Widgets Customer Services User Manual Part No. E52305-01 Dashboard Widgets User Manual Table of Contents 1. Transaction Host Integration Matrix...

More information

Create Faculty Membership Account. This step-by-step guide takes you through the process to create a Faculty Membership Account.

Create Faculty Membership Account. This step-by-step guide takes you through the process to create a Faculty Membership Account. Create Faculty Membership Account This step-by-step guide takes you through the process to create a Faculty Membership Account. Before you start Have you checked the Oracle Academy New Membership Reference

More information

Technical Upgrade Guidance SEA->SIA migration

Technical Upgrade Guidance SEA->SIA migration Technical Upgrade Guidance SEA->SIA migration Oracle Siebel Customer Relationship Management Applications Siebel Industry-Driven CRM November 2011 This document is intended to outline our general product

More information

Bulk Processing with Oracle Application Integration Architecture. An Oracle White Paper January 2009

Bulk Processing with Oracle Application Integration Architecture. An Oracle White Paper January 2009 Bulk Processing with Oracle Application Integration Architecture An Oracle White Paper January 2009 Bulk Processing with Oracle Application Integration Architecture Introduction... 3 Oracle Application

More information

Oracle VM 3: IMPLEMENTING ORACLE VM DR USING SITE GUARD O R A C L E W H I T E P A P E R S E P T E M B E R S N

Oracle VM 3: IMPLEMENTING ORACLE VM DR USING SITE GUARD O R A C L E W H I T E P A P E R S E P T E M B E R S N Oracle VM 3: IMPLEMENTING ORACLE VM DR USING SITE GUARD O R A C L E W H I T E P A P E R S E P T E M B E R 2 0 1 8 S N 2 1 3 0 5 Table of Contents Introduction 1 Overview 2 Understanding the Solution 2

More information

Rapid Bottleneck Identification A Better Way to do Load Testing. An Oracle White Paper June 2008

Rapid Bottleneck Identification A Better Way to do Load Testing. An Oracle White Paper June 2008 Rapid Bottleneck Identification A Better Way to do Load Testing An Oracle White Paper June 2008 Rapid Bottleneck Identification A Better Way to do Load Testing. RBI combines a comprehensive understanding

More information

An Oracle White Paper July Oracle WebCenter Portal: Copying a Runtime-Created Skin to a Portlet Producer

An Oracle White Paper July Oracle WebCenter Portal: Copying a Runtime-Created Skin to a Portlet Producer An Oracle White Paper July 2011 Oracle WebCenter Portal: Copying a Runtime-Created Skin to a Portlet Producer Introduction This white paper describes a method for copying runtime-created skins from a WebCenter

More information

Oracle Forms Services Oracle Traffic Director Configuration

Oracle Forms Services Oracle Traffic Director Configuration An Oracle White Paper January 2014 Oracle Forms Services Oracle Traffic Director Configuration Introduction... 1 What is Oracle Traffic Director... 2 Requirements... 3 WebLogic Server... 3 Oracle Forms

More information

October Oracle Application Express Statement of Direction

October Oracle Application Express Statement of Direction October 2017 Oracle Application Express Statement of Direction Disclaimer This document in any form, software or printed matter, contains proprietary information that is the exclusive property of Oracle.

More information

JD Edwards EnterpriseOne Licensing

JD Edwards EnterpriseOne Licensing JD Edwards EnterpriseOne Licensing Disabling Client Licensing for Various Tools Releases O R A C L E W H I T E P A P E R O C T O B E R 2 0 1 5 Disclaimer The following is intended to outline our general

More information

SOA Cloud Service Automatic Service Migration

SOA Cloud Service Automatic Service Migration SOA Cloud Service Automatic Service Migration SOACS 12.2.1.2 O R A C L E W H I T E P A P E R A U G U S T 2 0 1 8 Table of Contents Introduction 1 Configuring Automatic Service Migration for a 12.2.1.2

More information

Handling Memory Ordering in Multithreaded Applications with Oracle Solaris Studio 12 Update 2: Part 2, Memory Barriers and Memory Fences

Handling Memory Ordering in Multithreaded Applications with Oracle Solaris Studio 12 Update 2: Part 2, Memory Barriers and Memory Fences An Oracle White Paper September 2010 Handling Memory Ordering in Multithreaded Applications with Oracle Solaris Studio 12 Update 2: Part 2, Memory Introduction... 1 What Is Memory Ordering?... 2 More About

More information

Maximum Availability Architecture

Maximum Availability Architecture High Availability Patching for Fusion Middleware Oracle Maximum Availability Architecture White Paper September 2011 Maximum Availability Architecture Oracle Best Practices For High Availability Introduction...1

More information

Fusion Apps Administration: Case Study Utilizing Administration Groups and Target Properties for Efficient Administration

Fusion Apps Administration: Case Study Utilizing Administration Groups and Target Properties for Efficient Administration An Oracle White Paper April, 2014 Fusion Apps Administration: Case Study Utilizing Administration Groups and Target Properties for Efficient Administration Executive Overview... 2 Caveats... 3 Customer

More information

Gateway Application Setup Oracle FLEXCUBE Universal Banking Release [May] [2011]

Gateway Application Setup Oracle FLEXCUBE Universal Banking Release [May] [2011] Gateway Application Setup Oracle FLEXCUBE Universal Banking Release 11.3.0 [May] [2011] Table of Contents 1. SETTING UP GATEWAY FOR ORACLE FLEXCUBE... 1-1 1.1 INTRODUCTION... 1-1 1.2 SETTING UP GATEWAY

More information

Migration Best Practices for Oracle Access Manager 10gR3 deployments O R A C L E W H I T E P A P E R M A R C H 2015

Migration Best Practices for Oracle Access Manager 10gR3 deployments O R A C L E W H I T E P A P E R M A R C H 2015 Migration Best Practices for Oracle Access Manager 10gR3 deployments O R A C L E W H I T E P A P E R M A R C H 2015 Disclaimer The following is intended to outline our general product direction. It is

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 Enterprise Data Quality New Features Overview

Oracle Enterprise Data Quality New Features Overview Oracle Enterprise Data Quality 12.2.1.1 New Features Overview Integrated Profiling, New Data Services, New Processors O R A C L E W H I T E P A P E R J U L Y 2 0 1 6 Table of Contents Executive Overview

More information

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

Achieving High Availability with Oracle Cloud Infrastructure Ravello Service O R A C L E W H I T E P A P E R J U N E

Achieving High Availability with Oracle Cloud Infrastructure Ravello Service O R A C L E W H I T E P A P E R J U N E Achieving High Availability with Oracle Cloud Infrastructure Ravello Service O R A C L E W H I T E P A P E R J U N E 2 0 1 8 Revision History The following revisions have been made to this white paper

More information

Improve Data Integration with Changed Data Capture. An Oracle Data Integrator Technical Brief Updated December 2006

Improve Data Integration with Changed Data Capture. An Oracle Data Integrator Technical Brief Updated December 2006 Improve Data Integration with Changed Data Capture An Oracle Data Integrator Technical Brief Updated December 2006 Improve Data Integration with Changed Data Capture: An Oracle Data Integrator Technical

More information

Siebel CRM Applications on Oracle Ravello Cloud Service ORACLE WHITE PAPER AUGUST 2017

Siebel CRM Applications on Oracle Ravello Cloud Service ORACLE WHITE PAPER AUGUST 2017 Siebel CRM Applications on Oracle Ravello Cloud Service ORACLE WHITE PAPER AUGUST 2017 Oracle Ravello is an overlay cloud that enables enterprises to run their VMware and KVM applications with data-center-like

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 Access Manager Oracle FLEXCUBE Universal Banking Release [May] [2017]

Oracle Access Manager Oracle FLEXCUBE Universal Banking Release [May] [2017] Oracle Access Manager Oracle FLEXCUBE Universal Banking Release 12.4.0.0.0 [May] [2017] Table of Contents 1. INTRODUCTION... 1-1 2. BACKGROUND AND PREREQUISITES... 2-1 2.1 PRE-REQUISITES... 2-1 2.1.1 Software

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 WebCenter Portal 11g Developer Workshop

Oracle WebCenter Portal 11g Developer Workshop Oracle WebCenter Portal 11g Developer Workshop Lab 11 Creating The Patient Chart Task Flow Page 1 of 45 Overview In the previous lab, you developed and deployed a portlet to the portal. In this lab, you

More information

Data Capture Recommended Operating Environments

Data Capture Recommended Operating Environments Oracle Insurance Data Capture Recommended Operating Environments Release 4.5 February 2011 CONTENTS STATEMENT OF PURPOSE... 3 HARDWARE / SOFTWARE REQUIREMENTS... 4 Server Hardware... 4 Server Software...

More information

Oracle WebCenter Portal 11g Developer Workshop

Oracle WebCenter Portal 11g Developer Workshop Oracle WebCenter Portal 11g Developer Workshop Lab 04 Creating a Content Presenter Template Page 1 of 21 Overview In the previous lab, we used out-of-the-box components to publish documents into the portal.

More information

Oracle Data Provider for.net Microsoft.NET Core and Entity Framework Core O R A C L E S T A T E M E N T O F D I R E C T I O N F E B R U A R Y

Oracle Data Provider for.net Microsoft.NET Core and Entity Framework Core O R A C L E S T A T E M E N T O F D I R E C T I O N F E B R U A R Y Oracle Data Provider for.net Microsoft.NET Core and Entity Framework Core O R A C L E S T A T E M E N T O F D I R E C T I O N F E B R U A R Y 2 0 1 8 Disclaimer The following is intended to outline our

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 Revenue Management and Billing Analytics. Version Security Guide. Revision 1.1

Oracle Revenue Management and Billing Analytics. Version Security Guide. Revision 1.1 Oracle Revenue Management and Billing Analytics Version 2.2.1.0.0 Revision 1.1 E63804-04 October, 2016 Oracle Revenue Management and Billing Analytics E63804-04 Copyright Notice Copyright 2016, Oracle

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 Access Manager Integration Oracle FLEXCUBE Payments Release [Feb] [2018]

Oracle Access Manager Integration Oracle FLEXCUBE Payments Release [Feb] [2018] Oracle Access Manager Integration Oracle FLEXCUBE Payments Release 14.0.0.0.0 [Feb] [2018] Table of Contents Oracle Access Manager Integration 1. PREFACE... 1-1 1.1 INTRODUCTION... 1-1 1.2 AUDIENCE...

More information

Best Practice Guide for Implementing VMware vcenter Site Recovery Manager 4.x with Oracle ZFS Storage Appliance

Best Practice Guide for Implementing VMware vcenter Site Recovery Manager 4.x with Oracle ZFS Storage Appliance An Oracle Technical White Paper March 2014; v2.1 Best Practice Guide for Implementing VMware vcenter Site Recovery Manager 4.x with Oracle ZFS Storage Appliance Introduction... 1 Overview... 2 Prerequisites...

More information

Creating Domain Templates Using the Domain Template Builder 11g Release 1 (10.3.6)

Creating Domain Templates Using the Domain Template Builder 11g Release 1 (10.3.6) [1]Oracle Fusion Middleware Creating Domain Templates Using the Domain Template Builder 11g Release 1 (10.3.6) E14139-06 April 2015 This document describes how to use the Domain Template Builder to create

More information

Managing Metadata with Oracle Data Integrator. An Oracle Data Integrator Technical Brief Updated December 2006

Managing Metadata with Oracle Data Integrator. An Oracle Data Integrator Technical Brief Updated December 2006 Managing Metadata with Oracle Data Integrator An Oracle Data Integrator Technical Brief Updated December 2006 Managing Metadata with Oracle Data Integrator: An Oracle Data Integrator Technical Brief Metadata

More information

Profitability Application Pack Installation Guide Release

Profitability Application Pack Installation Guide Release Profitability Application Pack Installation Guide Release 8.0.6.1.0 October 2018 Document Versioning Version Number Revision Date Changes Done 1.0 10 September 2018 Final version released 1.1 5 October

More information

Benefits of an Exclusive Multimaster Deployment of Oracle Directory Server Enterprise Edition

Benefits of an Exclusive Multimaster Deployment of Oracle Directory Server Enterprise Edition An Oracle White Paper February 2012 Benefits of an Exclusive Multimaster Deployment of Oracle Directory Server Enterprise Edition Disclaimer The following is intended to outline our general product direction.

More information

Installing Oracle WebCenter Sites on Oracle Java Cloud Service

Installing Oracle WebCenter Sites on Oracle Java Cloud Service Installing Oracle WebCenter Sites 12.2.1.2 on Oracle Java Cloud Service Setup, configure Oracle WebCenter Sites products on JCS ORACLE WEBCENTER SITES NOVEMBER 2017 Disclaimer The following is intended

More information

Technical White Paper August Recovering from Catastrophic Failures Using Data Replicator Software for Data Replication

Technical White Paper August Recovering from Catastrophic Failures Using Data Replicator Software for Data Replication Technical White Paper August 2010 Recovering from Catastrophic Failures Using Data Replicator Software for Data Replication. Recovering from Catastrophic Failures Using Data Replicator Software for Data

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

Integrating Oracle Application Express with Oracle Application Server 10g. An Oracle White Paper April 2005

Integrating Oracle Application Express with Oracle Application Server 10g. An Oracle White Paper April 2005 Integrating Oracle Application Express with Oracle Application Server 10g An Oracle White Paper April 2005 Integrating Oracle Application Express with Oracle Application Server 10g Introduction... 3 Integration

More information

Oracle Fusion Middleware. 1 Oracle Team Productivity Center Server System Requirements. 2 Installing the Oracle Team Productivity Center Server

Oracle Fusion Middleware. 1 Oracle Team Productivity Center Server System Requirements. 2 Installing the Oracle Team Productivity Center Server Oracle Fusion Middleware Installation Guide for Oracle Team Productivity Center Server 11g Release 1 (11.1.1) E14156-05 June 2010 This document provides information on: Section 1, "Oracle Team Productivity

More information