Oracle Web Service Manager 11g Field level Encryption (in SOA, WLS) March, 2012

Size: px
Start display at page:

Download "Oracle Web Service Manager 11g Field level Encryption (in SOA, WLS) March, 2012"

Transcription

1 Oracle Web Service Manager 11g Field level Encryption (in SOA, WLS) 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... 3 Scenario... 4 Software Requirements... 5 Prerequisites... 5 Verified Product Version... 5 Potentially Applies to Product Version(s)... 5 Download Main Page... 5 Product URLs... 5 Step by Step Instructions... 6 Create Purchase Order WLS JAX-WS POJO Web Service... 6 Create Custom Policy for Field level Encryption Attach Custom Policy created previously to the Purchase Order WLS JAX-WS Web Service Create Purchase Order Composite App Attach Custom Policy created previously to the Purchase Order Composite App Reference Create Keystore and Credentials in Credential Store Oracle Corporation Field level Encryption Version 1.0 2

3 Use Case Description In this How-To I will demonstrate how one can do field level encryption. By default all the message protection related policies that ship out of the box with OWSM encrypt the entire body of the SOAP message. However in many cases customer s may want to encrypt only certain fields in the SOAP message that are sensitive rather than the entire body of the SOAP message. Ex: a) Customer wants to encrypt the SSN in the SOAP message. b) Customer wants to encrypt the credit card number in the SOAP message. For the purposes of this How To we will build a SOA Composite app which will act as a web service client and a WLS JAX-WS which will act as the backend web service. Objective Show How to create OWSM custom policies in that will encrypt certain fields in a SOAP message and use these custom policies to secure a web service client and web service. Oracle Corporation Field level Encryption Version 1.0 3

4 Scenario Field level Encryption in WLS, SOA using Oracle Web Services Manager 11g Policy Attachment Override Config Find Matching Policy JDeveloper Purchase Order SOA Composite App OWSM Agent SOAP HTTP Purchase Order WLS JAX-WS Service OWSM Agent sample/field_level_encryption_service_policy sample/field_level_encryption_client_policy Policy Manager Policy Authoring Versioning Usage Tracking Violation Metrics Migration Enterprise Manager CRUD OWSM Policy Store This How-To will demonstrate: 1. We will use a simple PurcahseOrder WLS POJO JAX-WS. 2. A PurchaseOrder SOA Composite calling the PurchaseOrder WLS JAX-WS Web Service. 3. Create Field level encryption client and service policy Oracle Corporation Field level Encryption Version 1.0 4

5 4. Secure the PurchaseOrder WLS POJO JAX-WS with OWSM field level encryption service policy 5. Secure the PurchaseOrder SOA Composite Reference with the OWSM field level encryption client policy 6. Set up the Keystore and Credential Store required for encryption. Software Requirements Prerequisites # Product Download URL 1 Install SOA Suite with JDeveloper Verified Product Version # Product Release Version 1 WebLogic SOA JDeveloper Potentially Applies to Product Version(s) # Product Release Version 1 WebLogic , , , SOA , , Download Main Page Product URLs Product URL Login/Password EM Fusion Middle Control User: weblogic Password: welcome1 Oracle Corporation Field level Encryption Version 1.0 5

6 Step by Step Instructions Create Purchase Order WLS JAX-WS POJO Web Service POJO based WLS JAX-WS PurchaseOrder Web Service. Oracle Corporation Field level Encryption Version 1.0 6

7 package sample.purchaseorder; import java.util.date; import public class PurchaseOrder { public PurchaseOrder() { super(); } public int createpurchaseorder(string creditcardnumber, int orderquantity, int orderprice, String itemtype) { int discount = 5; if (itemtype.startswith("book")) { discount = 10; } int purchaseamount = orderprice * orderquantity; if (purchaseamount < 0) { purchaseamount = 0; } if (!creditcardnumber.startswith("1111")) { throw new RuntimeException("Illegal Credit Card Number"); } return purchaseamount; } } The PurchaseOrder sample takes 4 parameters: 1. creditcardnumber this is a sensitive field which we want to encrypt. Oracle Corporation Field level Encryption Version 1.0 7

8 2. orderquantity 3. orderprice 4. itemtype Field level Encryption in WLS, SOA using Oracle Web Services Manager 11g itemtype is used to calculate discount. The createpurchaseoder method basically returns the total amount of the purchased order. Figure 1 shows the Schema for the JAX-WS Web Service. Figure 1. Schema for PurchaseOrder Sample Oracle Corporation Field level Encryption Version 1.0 8

9 Here is a sample message for testing with this Web Service: Field level Encryption in WLS, SOA using Oracle Web Services Manager 11g <soap:envelope xmlns:soap=" <soap:body xmlns:ns1=" <ns1:createpurchaseorder> <arg0> </arg0> <arg1>100</arg1> <arg2>90</arg2> <arg3>book</arg3> </ns1:createpurchaseorder> </soap:body> </soap:envelope> Figure 2. Sample Request Message for PurchaseOrder POJO WLS JAX-WS Web Service You can test the Web Service via the FMWCTL Test page as shown in Figure 3. Oracle Corporation Field level Encryption Version 1.0 9

10 Figure 3. Testing the POJO PurchaseOrder WLS JAX-WS Oracle Corporation Field level Encryption Version

11 Create Custom Policy for Field level Encryption Field level Encryption in WLS, SOA using Oracle Web Services Manager 11g The next step is creating a Policy in OWSM to handle field level encryption/decryption. For this sample we will start with the wss11_message_protection_[client service]_policy. First we will create a field level decryption policy from the wss11_message_protection_service_policy. 1. Search for wss11_message_protection_service_policy and Click on Create Like in FMWCTL as shown in Figure 4. Oracle Corporation Field level Encryption Version

12 Figure 4. Creating a Field level Decryption Policy from wss11_message_protection_service_policy 2. Give the new policy a name we will call it sample/field_level_decryption_service_policy as shown in Figure 5. Oracle Corporation Field level Encryption Version

13 Figure 5. New sample/field_level_decryption_service_policy Oracle Corporation Field level Encryption Version

14 3. Turn off Body Signing and Body Encryption for Request as show in Figure 6. Field level Encryption in WLS, SOA using Oracle Web Services Manager 11g Figure 6. Turn off Body Signing/Encryption for Request Oracle Corporation Field level Encryption Version

15 4. Turn off Body Signing and Body Encryption for Response as show in Figure 7. Field level Encryption in WLS, SOA using Oracle Web Services Manager 11g Figure 7 Turn off Body Signing/Encryption for Response Oracle Corporation Field level Encryption Version

16 5. Specify the Xpath expression in Request tab for the field to be decrypted in the payload as shown in Figure 8. This is done by clicking on the Add Button. This will launch a pop-up as shown Figure 8. Enter the namespace for the element and the element name that needs to be decrypted. In this case we want to decrypt the credit card number. This is arg0 in the sample message posted earlier in this document. See Figure 2. Figure 8. Adding specific fields to be decrypted Oracle Corporation Field level Encryption Version

17 6. Figure 9 Shows the end result of adding the XML Element to be decrypted. Field level Encryption in WLS, SOA using Oracle Web Services Manager 11g Figure 9. Policy after adding Xpath Expression for field level encryption Oracle Corporation Field level Encryption Version

18 Next we will create create a field level encryption policy from the wss11_messsage_protection_client_policy. 7. Search for wss11_message_protection_client_policy and Click on Create Like in FMWCTL as shown in Figure 10. Figure 10. Creating a Field level Encryption Policy from wss11_message_protection_client_policy Oracle Corporation Field level Encryption Version

19 8. Give the new policy a name we will call it sample/field_level_encryption_client_policy as shown in Figure 11. Figure 11 Provide a name for the new policy "sample/field_level_encryption_client_policy" Oracle Corporation Field level Encryption Version

20 9. Turn off Body Signing and Body Encryption for Request as show in Figure 12 Field level Encryption in WLS, SOA using Oracle Web Services Manager 11g Figure 12. Turn off Body Signing and Body Encryption for Request Oracle Corporation Field level Encryption Version

21 10. Specify the Xpath expression in Request tab for the field to be decrypted in the payload as shown in Figure 13. This is done by clicking on the Add Button. This will launch a pop-up as shownfigure 13. Enter the namespace for the element and the element name that needs to be decrypted. In this case we want to decrypt the credit card number. This is arg0 in the sample message posted earlier in this document. See Figure 2. Figure 13. Add specific elements to encrypt. Oracle Corporation Field level Encryption Version

22 Attach Custom Policy created previously to the Purchase Order WLS JAX-WS Web Service 11. Attach the new created sample/field_level_decryption_service_policy to the PurchaseOder WLS JAX-WS Web Service. This is shown in Figure 14 - Figure 19. Figure 14. Click on FieldLevelEncryption-Project1-context-root Application Oracle Corporation Field level Encryption Version

23 Figure 15 Navigate to the Web Services in the Application via the Application Deployment Menu Oracle Corporation Field level Encryption Version

24 Figure 16 Click on PurchaseOrderPort to navigate to the Web Service Port Oracle Corporation Field level Encryption Version

25 Figure 17. Click on OWSM Policies tab. Click on Attach/Detach Button to launch the OWSM Policy Attachment Wizard Oracle Corporation Field level Encryption Version

26 Figure 18. Attach "sample/field_level_decryption_service_policy" to PurchaseOrder POJO WLS JAX-WS Web Service Oracle Corporation Field level Encryption Version

27 Figure 19. The PurchaseOrderPort after completion of the OWSM Policy Attachment Check the WSDL of the Service: Oracle Corporation Field level Encryption Version

28 <wsp:policy xmlns:wsp=" xmlns:wsu=" 1.0.xsd" wsu:id="purchaseorderport_input_policy"> <sp:signedparts xmlns:sp=" <sp:header Name="fmw-context" Namespace=" <sp:header Name="" Namespace=" <sp:header Name="" Namespace=" </sp:signedparts> <sp:signedelements xmlns:sp=" <sp:encryptedparts xmlns:sp=" <sp:header Name="fmw-context" Namespace=" </sp:encryptedparts> <sp:encryptedelements xmlns:sp=" <sp:xpath>descendant-or-self::*[namespace-uri()=' and local-name()='arg0']</sp:xpath> </sp:encryptedelements> </wsp:policy> Figure 20. WSDL of the PurchaseOrder POJO WLS JAX-WS after attaching the "sample/field_level_decryption_service_policy" The part highlighted in bold indicates that the service expects arg0 to be encrypted. Now the Purchase Order POJO WLS JAX-WS is secured with sample/field_level_decryption_service_policy Create Purchase Order Composite App Now we will create the PurchaseOrderComposite App. Figure 21 - Figure 32 shows the steps for creating the PurchaseOderComposite app. Oracle Corporation Field level Encryption Version

29 Figure 21. Insert a BPEL Process into an Empty Composite App. Oracle Corporation Field level Encryption Version

30 Figure 22. Create the BPEL Process by choosing the "Base on a WSDL" option. Provide the WSDL of the PurchaseOrder POJO WLS JAX-WS Oracle Corporation Field level Encryption Version

31 Figure 23. Result of creating a BPEL Process using the "Base on a WSDL" option Oracle Corporation Field level Encryption Version

32 Figure 24 In the BPEL Process create a PartnerLink. Again Provide the WSDL of the PurchaseOrder POJO WLS JAX-WS as the WSDL URL Oracle Corporation Field level Encryption Version

33 Figure 25. Walkthrough the PartnerLink creation process Oracle Corporation Field level Encryption Version

34 Figure 26. Completion of the Partner Link creation process Oracle Corporation Field level Encryption Version

35 Figure 27. Add an "Invoke" activity in the BPEL Process and wite it to the PurchaseOrderRefrence PartnerLink created previously Oracle Corporation Field level Encryption Version

36 Figure 28 The Invoke is now wired to the PartnerLink "PurchaseOrderReference" Oracle Corporation Field level Encryption Version

37 Figure 29 Add an Assign activity after the receiveinput and before the Invoke activity. Wire the variables to copy the input on the receive to the input of the Invoke Oracle Corporation Field level Encryption Version

38 Figure 30. Add another assign activity after the "Invoke" to copy the output of the invoke to the output of the replyoutput Oracle Corporation Field level Encryption Version

39 Figure 31. BPEL Process after adding the Assign, Invoke, Assign activities Oracle Corporation Field level Encryption Version

40 Figure 32. Completed PurchaseOrderComposite App Oracle Corporation Field level Encryption Version

41 Attach Custom Policy created previously to the Purchase Order Composite App Reference The next step is to now attach the sample/field_level_encryption_client_policy to the PurchaseOrderReference of PurchaseOrderComposite App. These steps are shown in Figure 33 - Figure 38. Figure 33. Click on the PurchaseOrderComposite App on the left hand side. Oracle Corporation Field level Encryption Version

42 Figure 34. Click on the PurchaseOrderReference shown in the Dashboard of the PurchaseOrderComposite Oracle Corporation Field level Encryption Version

43 Figure 35. On the PurchaseOrderReferece - click on the "Policies" tab Oracle Corporation Field level Encryption Version

44 Figure 36. Click on the "Attach/Detach" Button Oracle Corporation Field level Encryption Version

45 Figure 37. Attach the "sample/field_level_encryption_client_policy" Oracle Corporation Field level Encryption Version

46 Figure 38. The Policy is now attached to the PurchaseOrderReference Oracle Corporation Field level Encryption Version

47 Create Keystore and Credentials in Credential Store Field level Encryption in WLS, SOA using Oracle Web Services Manager 11g Create a Keystore called default-keystore.jks using keytool: $>keytool -genkeypair -keyalg RSA -alias orakey -keypass welcome1 -keystore default-keystore.jks -storepass welcome1 -validity 3600 For complete details on keytool commands please refer to Copy the keystore created into: $FMW_DOMAIN_HOME/config/fmwconfig/ Add the following credentials into the credential store either via EM or using WLST. wls:/defaultdomain/serverconfig> createcred(map="oracle.wsm.security", key="keystore-csf-key", user="owsm", password="welcome1", desc="keystore key") wls:/defaultdomain/serverconfig> createcred(map="oracle.wsm.security", key="enc-csf-key", user="orakey", password="welcome1", desc="encryption key") wls:/defaultdomain/serverconfig> createcred(map="oracle.wsm.security", key="sign-csf-key", user="orakey", password="welcome1", desc="signing key") This assumes that the keystore password is welcome1. Oracle Corporation Field level Encryption Version

48 This will, add a key namely enc-csf-key to map oracle.wsm.security with username as orakey and password as welcome1. This alias should exist in your configured keystore. This will, add a key namely sign-csf-key to map oracle.wsm.security with username as orakey and password as welcome1. This alias should exist in your configured keystore. You can verify the contents of the credential store in FMWCTL as show in Figure 39 and Figure 40. Oracle Corporation Field level Encryption Version

49 Figure 39. View the Credential Store from the Weblogic Domain menu Oracle Corporation Field level Encryption Version

50 Figure 40 Contents of the "oracle.wsm.security" Credential Map Oracle Corporation Field level Encryption 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 Field level Encryption Version

Oracle Fusion Applications Splitting Topology from Single to Multiple Host Servers

Oracle Fusion Applications Splitting Topology from Single to Multiple Host Servers An Oracle Technical Paper July 2012 Oracle Fusion Applications Splitting Topology from Single to Multiple Host Servers Disclaimer The following is intended to outline our general product direction. It

More information

Oracle Business Intelligence ADF Custom Visualizations and Integration. An Oracle White Paper November 2012

Oracle Business Intelligence ADF Custom Visualizations and Integration. An Oracle White Paper November 2012 Oracle Business Intelligence ADF Custom Visualizations and Integration An Oracle White Paper November 2012 Oracle Business Intelligence ADF Custom Visualizations and Integration OVERVIEW Business users

More information

An Oracle White Paper July 2013. Introducing the Oracle Home User in Oracle Database 12c for Microsoft Windows

An Oracle White Paper July 2013. Introducing the Oracle Home User in Oracle Database 12c for Microsoft Windows An Oracle White Paper July 2013 Introducing the Oracle Home User Introduction Starting with Oracle Database 12c Release 1 (12.1), Oracle Database on Microsoft Windows supports the use of an Oracle Home

More information

Microsoft Active Directory Oracle Enterprise Gateway Integration Guide

Microsoft Active Directory Oracle Enterprise Gateway Integration Guide An Oracle White Paper May 2011 Microsoft Active Directory Oracle Enterprise Gateway Integration Guide 1/33 Disclaimer The following is intended to outline our general product direction. It is intended

More information

Configuring Microsoft Active Directory for Oracle Net Naming. An Oracle White Paper April 2014

Configuring Microsoft Active Directory for Oracle Net Naming. An Oracle White Paper April 2014 Configuring Microsoft Active Directory for Oracle Net Naming An Oracle White Paper April 2014 Configuring Microsoft Active Directory for Oracle Net Naming Introduction... 3 Steps to Configure Active Directory...

More information

How To Customize An Org Bee 11G With A Custom Skin On A Windows 7.5 (Oracle) 11G (Orca) 11Ge (Orora) 11Gh (Orroboro) 11E (Ororro

How To Customize An Org Bee 11G With A Custom Skin On A Windows 7.5 (Oracle) 11G (Orca) 11Ge (Orora) 11Gh (Orroboro) 11E (Ororro Customizing Oracle Business Intelligence Enterprise Edition 11g An Oracle White Paper August, 2010 Customizing Oracle Business Intelligence Enterprise Edition 11g OVERVIEW In order to best deliver an intuitive

More information

An Oracle White Paper November 2010. Oracle Business Intelligence Standard Edition One 11g

An Oracle White Paper November 2010. Oracle Business Intelligence Standard Edition One 11g An Oracle White Paper November 2010 Oracle Business Intelligence Standard Edition One 11g Introduction Oracle Business Intelligence Standard Edition One is a complete, integrated BI system designed for

More information

An Oracle White Paper Dec 2013. Oracle Access Management Security Token Service

An Oracle White Paper Dec 2013. Oracle Access Management Security Token Service An Oracle White Paper Dec 2013 Oracle Access Management Security Token Service Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only,

More information

Deliver Oracle BI Publisher documents to Microsoft Office SharePoint Server 2007. An Oracle White Paper July 2008

Deliver Oracle BI Publisher documents to Microsoft Office SharePoint Server 2007. An Oracle White Paper July 2008 Deliver Oracle BI Publisher documents to Microsoft Office SharePoint Server 2007 An Oracle White Paper July 2008 Deliver Oracle BI Publisher documents to Microsoft Office SharePoint Server 2007 To create

More information

Configuring Microsoft Active Directory 2003 for Net Naming. An Oracle White Paper September 2008

Configuring Microsoft Active Directory 2003 for Net Naming. An Oracle White Paper September 2008 Configuring Microsoft Active Directory 2003 for Net Naming An Oracle White Paper September 2008 NOTE: The following is intended to outline our general product direction. It is intended for information

More information

OpenLDAP Oracle Enterprise Gateway Integration Guide

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

More information

An Oracle White Paper January 2013. Integrating Oracle Application Express with Oracle Access Manager. Revision 1

An Oracle White Paper January 2013. Integrating Oracle Application Express with Oracle Access Manager. Revision 1 An Oracle White Paper January 2013 Integrating Oracle Application Express with Oracle Access Manager Revision 1 Disclaimer The following is intended to outline our general product direction. It is intended

More information

Oracle FLEXCUBE Direct Banking Release 12.0.0 Retail Credit Card User Manual. Part No. E52305-01

Oracle FLEXCUBE Direct Banking Release 12.0.0 Retail Credit Card User Manual. Part No. E52305-01 Oracle FLEXCUBE Direct Banking Release 12.0.0 Retail Credit Card User Manual Part No. E52305-01 Retails Credit Card User Manual Table of Contents 1. Transaction Host Integration Matrix... 3 2. Credit Card

More information

An Oracle White Paper September 2013. Oracle WebLogic Server 12c on Microsoft Windows Azure

An Oracle White Paper September 2013. Oracle WebLogic Server 12c on Microsoft Windows Azure An Oracle White Paper September 2013 Oracle WebLogic Server 12c on Microsoft Windows Azure Table of Contents Introduction... 1 Getting Started: Creating a Single Virtual Machine... 2 Before You Begin...

More information

How To Load Data Into An Org Database Cloud Service - Multitenant Edition

How To Load Data Into An Org Database Cloud Service - Multitenant Edition An Oracle White Paper June 2014 Data Movement and the Oracle Database Cloud Service Multitenant Edition 1 Table of Contents Introduction to data loading... 3 Data loading options... 4 Application Express...

More information

An Oracle White Paper June, 2012. Provisioning & Patching Oracle Database using Enterprise Manager 12c.

An Oracle White Paper June, 2012. Provisioning & Patching Oracle Database using Enterprise Manager 12c. An Oracle White Paper June, 2012 Provisioning & Patching Oracle Database using Enterprise Manager 12c. Table of Contents Executive Overview... 2 Introduction... 2 EM Readiness:... 3 Installing Agent...

More information

An Oracle White Paper September 2011. Oracle Team Productivity Center

An Oracle White Paper September 2011. Oracle Team Productivity Center Oracle Team Productivity Center Overview An Oracle White Paper September 2011 Oracle Team Productivity Center Overview Oracle Team Productivity Center Overview Introduction... 1 Installation... 2 Architecture...

More information

Oracle Easy Connect Naming. An Oracle White Paper October 2007

Oracle Easy Connect Naming. An Oracle White Paper October 2007 Oracle Easy Connect Naming An Oracle White Paper October 2007 NOTE: The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

Siebel CRM On Demand Single Sign-On. An Oracle White Paper December 2006

Siebel CRM On Demand Single Sign-On. An Oracle White Paper December 2006 Siebel CRM On Demand Single Sign-On An Oracle White Paper December 2006 Siebel CRM On Demand Single Sign-On Introduction... 3 Single Sign-On with Siebel CRM On Demand... 4 Customer Requirements... 4 SSO

More information

An Oracle White Paper January, 2015. Enterprise Manager Cloud Control 12c: Configuring External User Authentication Using Microsoft Active Directory

An Oracle White Paper January, 2015. Enterprise Manager Cloud Control 12c: Configuring External User Authentication Using Microsoft Active Directory An Oracle White Paper January, 2015 Enterprise Manager Cloud Control 12c: Configuring External User Authentication Using Microsoft Active Directory Table of Contents Executive Overview... 3 Introduction...

More information

An Oracle White Paper June 2014. Security and the Oracle Database Cloud Service

An Oracle White Paper June 2014. Security and the Oracle Database Cloud Service An Oracle White Paper June 2014 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 Business Intelligence Enterprise Edition Plus and Microsoft Office SharePoint Server. An Oracle White Paper October 2008

Oracle Business Intelligence Enterprise Edition Plus and Microsoft Office SharePoint Server. An Oracle White Paper October 2008 Oracle Business Intelligence Enterprise Edition Plus and Microsoft Office SharePoint Server An Oracle White Paper October 2008 Oracle Business Intelligence Enterprise Edition Plus and Microsoft Office

More information

DEVELOPING CONTRACT - DRIVEN WEB SERVICES USING JDEVELOPER. The purpose of this tutorial is to develop a java web service using a top-down approach.

DEVELOPING CONTRACT - DRIVEN WEB SERVICES USING JDEVELOPER. The purpose of this tutorial is to develop a java web service using a top-down approach. DEVELOPING CONTRACT - DRIVEN WEB SERVICES USING JDEVELOPER Purpose: The purpose of this tutorial is to develop a java web service using a top-down approach. Topics: This tutorial covers the following topics:

More information

Ensuring Web Service Quality for Service-Oriented Architectures. An Oracle White Paper June 2008

Ensuring Web Service Quality for Service-Oriented Architectures. An Oracle White Paper June 2008 Ensuring Web Service Quality for Service-Oriented Architectures An Oracle White Paper June 2008 Ensuring Web Service Quality for Service-Oriented Architectures WEB SERVICES OFFER NEW OPPORTUNITIES AND

More information

An Oracle White Paper May 2013. Creating Custom PDF Reports with Oracle Application Express and the APEX Listener

An Oracle White Paper May 2013. Creating Custom PDF Reports with Oracle Application Express and the APEX Listener An Oracle White Paper May 2013 Creating Custom PDF Reports with Oracle Application Express and the APEX Listener Disclaimer The following is intended to outline our general product direction. It is intended

More information

Manage Oracle Database Users and Roles Centrally in Active Directory or Sun Directory. Overview August 2008

Manage Oracle Database Users and Roles Centrally in Active Directory or Sun Directory. Overview August 2008 Manage Oracle Database Users and Roles Centrally in Active Directory or Sun Directory Overview August 2008 Introduction... 3 Centralizing DataBase Account Management using Existing Directories with OVD...

More information

Oracle FLEXCUBE Direct Banking Release 12.0.0 Corporate E-Factoring User Manual. Part No. E52305-01

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

More information

An Oracle White Paper March 2011. Integrating the SharePoint 2007 Adapter with WebCenter Spaces (11.1.1.3.0 & 11.1.1.4.0)

An Oracle White Paper March 2011. Integrating the SharePoint 2007 Adapter with WebCenter Spaces (11.1.1.3.0 & 11.1.1.4.0) An Oracle White Paper March 2011 Integrating the SharePoint 2007 Adapter with WebCenter Spaces (11.1.1.3.0 & 11.1.1.4.0) Table of Contents Introduction... 2 Overview... 2 Adding WebCenter Adapter for

More information

An Oracle White Paper May 2011. Distributed Development Using Oracle Secure Global Desktop

An Oracle White Paper May 2011. Distributed Development Using Oracle Secure Global Desktop An Oracle White Paper May 2011 Distributed Development Using Oracle Secure Global Desktop Introduction One of the biggest challenges software development organizations face today is how to provide software

More information

Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c

Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c This document describes how to set up Oracle Enterprise Manager 12c to monitor

More information

An Oracle White Paper March 2009. Integrating Microsoft SharePoint Server With Oracle Virtual Directory

An Oracle White Paper March 2009. Integrating Microsoft SharePoint Server With Oracle Virtual Directory An Oracle White Paper March 2009 Integrating Microsoft SharePoint Server With Oracle Virtual Directory Oracle White Paper Integrating Microsoft SharePoint Server With Oracle Virtual Directory Disclaimer

More information

Oracle Primavera Gateway

Oracle Primavera Gateway Oracle Primavera Gateway Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Getting Started with Oracle Data Integrator 12c Virtual Machine Installation Guide December 2014 Oracle Fusion Middleware Getting Started with Oracle Data Integrator, 12c Copyright

More information

An Oracle White Paper February 2013. Integration with Oracle Fusion Financials Cloud Service

An Oracle White Paper February 2013. Integration with Oracle Fusion Financials Cloud Service An Oracle White Paper February 2013 Integration with Oracle Fusion Financials Cloud Service Executive Overview Cloud computing is a vision that is increasingly turning to reality for many companies. Enterprises,

More information

1 What Are Web Services?

1 What Are Web Services? Oracle Fusion Middleware Introducing Web Services 11g Release 1 (11.1.1) E14294-04 January 2011 This document provides an overview of Web services in Oracle Fusion Middleware 11g. Sections include: What

More information

An Oracle White Paper October 2011. BI Publisher 11g Scheduling & Apache ActiveMQ as JMS Provider

An Oracle White Paper October 2011. BI Publisher 11g Scheduling & Apache ActiveMQ as JMS Provider An Oracle White Paper October 2011 BI Publisher 11g Scheduling & Apache ActiveMQ as JMS Provider Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

An Oracle White Paper June 2014. RESTful Web Services for the Oracle Database Cloud - Multitenant Edition

An Oracle White Paper June 2014. RESTful Web Services for the Oracle Database Cloud - Multitenant Edition An Oracle White Paper June 2014 RESTful Web Services for the Oracle Database Cloud - Multitenant Edition 1 Table of Contents Introduction to RESTful Web Services... 3 Architecture of Oracle Database Cloud

More information

WebSphere MQ Oracle Enterprise Gateway Integration Guide

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

More information

Setting up the integration between Oracle Social Engagement & Monitoring Cloud Service and Oracle RightNow Cloud Service

Setting up the integration between Oracle Social Engagement & Monitoring Cloud Service and Oracle RightNow Cloud Service An Oracle Best Practice Guide November 2013 Setting up the integration between Oracle Social Engagement & Monitoring Cloud Service and Oracle RightNow Cloud Service Introduction Creation of the custom

More information

1 What Are Web Services?

1 What Are Web Services? Oracle Fusion Middleware Introducing Web Services 11g Release 1 (11.1.1.6) E14294-06 November 2011 This document provides an overview of Web services in Oracle Fusion Middleware 11g. Sections include:

More information

A Comprehensive Solution for API Management

A Comprehensive Solution for API Management An Oracle White Paper March 2015 A Comprehensive Solution for API Management Executive Summary... 3 What is API Management?... 4 Defining an API Management Strategy... 5 API Management Solutions from Oracle...

More information

ORACLE MANAGED FILE TRANSFER

ORACLE MANAGED FILE TRANSFER ORACLE MANAGED FILE TRANSFER ENTERPRISE FILE EXCHANGE FAST AND FLEXIBLE LARGE FILE HANDLING KEY FEATURES End to End Auditability, Control and Reporting Built-in Security, Identity management, LDAP and

More information

Oracle Managed File Getting Started - Transfer FTP Server to File Table of Contents

Oracle Managed File Getting Started - Transfer FTP Server to File Table of Contents Oracle Managed File Getting Started - Transfer FTP Server to File Table of Contents Goals... 3 High- Level Steps... 4 Basic FTP to File with Compression... 4 Steps in Detail... 4 MFT Console: Login and

More information

Virtual Contact Center. Release Notes. Version 7.0.0.18. Revision 1.0

Virtual Contact Center. Release Notes. Version 7.0.0.18. Revision 1.0 Virtual Contact Center Release Notes Version 7.0.0.18 Revision 1.0 Copyright 2012, 8x8, Inc. All rights reserved. This document is provided for information purposes only and the contents hereof are subject

More information

Next Generation Siebel Monitoring: A Real World Customer Experience. An Oracle White Paper June 2010

Next Generation Siebel Monitoring: A Real World Customer Experience. An Oracle White Paper June 2010 Next Generation Siebel Monitoring: A Real World Customer Experience An Oracle White Paper June 2010 Next Generation Siebel Monitoring: A Real World Customer Experience Table of Contents Introduction...

More information

How to Use Microsoft Active Directory as an LDAP Source with the Oracle ZFS Storage Appliance

How to Use Microsoft Active Directory as an LDAP Source with the Oracle ZFS Storage Appliance An Oracle Technical White Paper November 2014 How to Use Microsoft Active Directory as an LDAP Source with the Oracle ZFS Storage Appliance Table of Contents Introduction...3 Active Directory LDAP Services...4

More information

JD Edwards EnterpriseOne 9.1 Clustering Best Practices with Oracle WebLogic Server

JD Edwards EnterpriseOne 9.1 Clustering Best Practices with Oracle WebLogic Server JD Edwards EnterpriseOne 9.1 Clustering Best Practices with Oracle WebLogic Server An Oracle JD Edwards EnterpriseOne Red Paper December 2012 PURPOSE STATEMENT AND DISCLAIMER This document provides considerations

More information

How to Implement Two-Way SSL Authentication in a Web Service

How to Implement Two-Way SSL Authentication in a Web Service How to Implement Two-Way SSL Authentication in a Web Service 2011 Informatica Abstract You can configure two-way SSL authentication between a web service client and a web service provider. This article

More information

New 11g Features in Oracle Developer Tools for Visual Studio. An Oracle White Paper January 2008

New 11g Features in Oracle Developer Tools for Visual Studio. An Oracle White Paper January 2008 New 11g Features in Oracle Developer Tools for Visual Studio An Oracle White Paper January 2008 New 11g Features in Oracle Developer Tools for Visual Studio Introduction... 3 Integration with Visual Studio

More information

An Oracle White Paper June 2009. Integration Technologies for Primavera Solutions

An Oracle White Paper June 2009. Integration Technologies for Primavera Solutions An Oracle White Paper June 2009 Integration Technologies for Primavera Solutions Introduction... 1 The Integration Challenge... 2 Integration Methods for Primavera Solutions... 2 Integration Application

More information

How To Configure An Orgaa Cloud Control On A Bigip (Cloud Control) On An Orga Cloud Control (Oms) On A Microsoft Cloud Control 2.5 (Cloud) On Microsoft Powerbook (Cloudcontrol) On The

How To Configure An Orgaa Cloud Control On A Bigip (Cloud Control) On An Orga Cloud Control (Oms) On A Microsoft Cloud Control 2.5 (Cloud) On Microsoft Powerbook (Cloudcontrol) On The An Oracle White Paper March, 2012 Enterprise Manager 12c Cloud Control: Configuring OMS High Availability with F5 BIG- IP Local Traffic Manager Executive Overview... 2 About F5 BIG-IP and Oracle Enterprise

More information

One View Report Samples Financials

One View Report Samples Financials One View Report Samples Financials Introduction... 1 Application: One View Customer Ledger Inquiry Accounts Receivable P03B2022... 2 Report: Open Invoices... 2 Report: Customer Balance... 4 Report: Open

More information

Virtual Contact Center

Virtual Contact Center Virtual Contact Center Zendesk Integration with 8x8 Contact Center Agent Guide Revision 1.0 Copyright 2014, 8x8, Inc. All rights reserved. This document is provided for information purposes only and the

More information

Oracle FLEXCUBE Direct Banking Release 12.0.0 Retail Mutual Funds User Manual. Part No. E52305-01

Oracle FLEXCUBE Direct Banking Release 12.0.0 Retail Mutual Funds User Manual. Part No. E52305-01 Oracle FLEXCUBE Direct Banking Release 12.0.0 Retail Mutual Funds User Manual Part No. E52305-01 Retails Mutual Funds User Manual Table of Contents 1. Transaction Host Integration Matrix... 3 2. Fund Information...

More information

One View Report Samples Warehouse Management

One View Report Samples Warehouse Management One View Report Samples Warehouse Management Introduction... 1 Application: One View Warehouse Request Inquiry P46270... 2 Report: Warehouse Pick Request Analysis... 2 Report: Warehouse Putaway Request

More information

An Oracle White Paper January 2011. Using Oracle's StorageTek Search Accelerator

An Oracle White Paper January 2011. Using Oracle's StorageTek Search Accelerator An Oracle White Paper January 2011 Using Oracle's StorageTek Search Accelerator Executive Summary...2 Introduction...2 The Problem with Searching Large Data Sets...3 The StorageTek Search Accelerator Solution...3

More information

Query JD Edwards EnterpriseOne Customer Credit using Oracle BPEL Process Manager

Query JD Edwards EnterpriseOne Customer Credit using Oracle BPEL Process Manager Query JD Edwards EnterpriseOne Customer Credit using Oracle BPEL Process Manager 1 Overview In this tutorial you will be querying JD Edwards EnterpriseOne for Customer Credit information. This is a two

More information

An Oracle White Paper June 2010. How to Install and Configure a Two-Node Cluster

An Oracle White Paper June 2010. How to Install and Configure a Two-Node Cluster An Oracle White Paper June 2010 How to Install and Configure a Two-Node Cluster Table of Contents Introduction... 3 Two-Node Cluster: Overview... 4 Prerequisites, Assumptions, and Defaults... 4 Configuration

More information

An Oracle White Paper November 2009. Oracle Primavera P6 EPPM Integrations with Web Services and Events

An Oracle White Paper November 2009. Oracle Primavera P6 EPPM Integrations with Web Services and Events An Oracle White Paper November 2009 Oracle Primavera P6 EPPM Integrations with Web Services and Events 1 INTRODUCTION Primavera Web Services is an integration technology that extends P6 functionality and

More information

Business Intelligence and Service Oriented Architectures. An Oracle White Paper May 2007

Business Intelligence and Service Oriented Architectures. An Oracle White Paper May 2007 Business Intelligence and Service Oriented Architectures An Oracle White Paper May 2007 Note: The following is intended to outline our general product direction. It is intended for information purposes

More information

Oracle Enterprise Manager. Description. Versions Supported

Oracle Enterprise Manager. Description. Versions Supported Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Microsoft Active Directory 10g Release 2 (10.2.0.2) B28044-02 June 2006 This document provides a brief description about the Oracle

More information

Achieving Sarbanes-Oxley Compliance with Oracle Identity Management. An Oracle White Paper September 2005

Achieving Sarbanes-Oxley Compliance with Oracle Identity Management. An Oracle White Paper September 2005 Achieving Sarbanes-Oxley Compliance with Oracle Identity Management An Oracle White Paper September 2005 Achieving Sarbanes-Oxley Compliance with Oracle Identity Management INTRODUCTION The Sarbanes-Oxley

More information

Load Testing Hyperion Applications Using Oracle Load Testing 9.1

Load Testing Hyperion Applications Using Oracle Load Testing 9.1 Oracle White Paper Load Testing Hyperion System 9 HFM An Oracle White Paper May 2010 Load Testing Hyperion Applications Using Oracle Load Testing 9.1 Oracle White Paper Load Testing Hyperion System 9 HFM

More information

SSL Configuration on Weblogic Oracle FLEXCUBE Universal Banking Release 12.0.87.01.0 [August] [2014]

SSL Configuration on Weblogic Oracle FLEXCUBE Universal Banking Release 12.0.87.01.0 [August] [2014] SSL Configuration on Weblogic Oracle FLEXCUBE Universal Banking Release 12.0.87.01.0 [August] [2014] Table of Contents 1. CONFIGURING SSL ON ORACLE WEBLOGIC... 1-1 1.1 INTRODUCTION... 1-1 1.2 SETTING UP

More information

Oracle Enterprise Manager. Description. Versions Supported. Prerequisites

Oracle Enterprise Manager. Description. Versions Supported. Prerequisites Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Microsoft SQL Server 10g Release 2 (10.2) B28049-01 January 2006 This document provides a brief description about the Oracle System

More information

Oracle FLEXCUBE Direct Banking Release 12.0.0 Corporate Foreign Exchange User Manual. Part No. E52305-01

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

More information

USING TIME MACHINE AND MICROSOFT SQL SERVER

USING TIME MACHINE AND MICROSOFT SQL SERVER USING TIME MACHINE AND MICROSOFT SQL SERVER The following guide is intended as a basic outline for using Time Machine with Microsoft SQL Server for performing date and time based software tests, time-lapsed

More information

Oracle SQL Developer Migration. An Oracle White Paper September 2008

Oracle SQL Developer Migration. An Oracle White Paper September 2008 Oracle SQL Developer Migration An Oracle White Paper September 2008 Oracle SQL Developer Migration Overview... 3 Introduction... 3 Supported Databases... 4 Architecture... 4 Migration... 4 Standard Migrate...

More information

DIGIPASS as a Service. Google Apps Integration

DIGIPASS as a Service. Google Apps Integration DIGIPASS as a Service Google Apps Integration April 2011 Table of Contents 1. Introduction 1.1. Audience and Purpose of this Document 1.2. Available Guides 1.3. What is DIGIPASS as a Service? 1.4. About

More information

An Oracle White Paper February 2014. Oracle Data Integrator 12c Architecture Overview

An Oracle White Paper February 2014. Oracle Data Integrator 12c Architecture Overview An Oracle White Paper February 2014 Oracle Data Integrator 12c Introduction Oracle Data Integrator (ODI) 12c is built on several components all working together around a centralized metadata repository.

More information

Oracle Enterprise Manager

Oracle Enterprise Manager Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Microsoft Internet Information Services Release 12.1.0.2.0 E28547-05 February 2014 This document provides a brief description

More information

MANAGING A SMOOTH MARKETING AUTOMATION SOFTWARE IMPLEMENTATION

MANAGING A SMOOTH MARKETING AUTOMATION SOFTWARE IMPLEMENTATION MANAGING A SMOOTH MARKETING AUTOMATION SOFTWARE IMPLEMENTATION If you ve neglected the advantages of marketing automation software because you think implementation will be complex, read on... MANAGING

More information

An Oracle Technical White Paper June 2010. Oracle VM Windows Paravirtual (PV) Drivers 2.0: New Features

An Oracle Technical White Paper June 2010. Oracle VM Windows Paravirtual (PV) Drivers 2.0: New Features An Oracle Technical White Paper June 2010 Oracle VM Windows Paravirtual (PV) Drivers 2.0: New Features Introduction... 2 Windows Paravirtual Drivers 2.0 Release... 2 Live Migration... 3 Hibernation...

More information

HPSM Integration Guide

HPSM Integration Guide HPSM Integration Guide 2015 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their respective

More information

March 2014. Oracle Business Intelligence Discoverer Statement of Direction

March 2014. Oracle Business Intelligence Discoverer Statement of Direction March 2014 Oracle Business Intelligence Discoverer Statement of Direction Oracle Statement of Direction Oracle Business Intelligence Discoverer Disclaimer This document in any form, software or printed

More information

Oracle Enterprise Manager

Oracle Enterprise Manager Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Microsoft Active Directory Release 12.1.0.1.0 E28548-04 February 2014 Microsoft Active Directory, which is included with Microsoft

More information

Virtual Contact Center

Virtual Contact Center Virtual Contact Center MS Dynamics CRM Integration Configuration Guide Version 7.0 Revision 1.0 Copyright 2012, 8x8, Inc. All rights reserved. This document is provided for information purposes only and

More information

Oracle Directory Services Integration with Database Enterprise User Security 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 5

Oracle Directory Services Integration with Database Enterprise User Security 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 5 Oracle Directory Services Integration with Database Enterprise User Security 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 5 Disclaimer The following is intended to outline our general product

More information

SIMPLIFY MICROSOFT CRM AND QUICKBOOKS INTEGRATION Microsoft Dynamics CRM Online to QuickBooks Bidirectional

SIMPLIFY MICROSOFT CRM AND QUICKBOOKS INTEGRATION Microsoft Dynamics CRM Online to QuickBooks Bidirectional SIMPLIFY MICROSOFT CRM AND QUICKBOOKS INTEGRATION Microsoft Dynamics CRM Online to QuickBooks Bidirectional Requirements: Microsoft CRM Adapter QuickBooks Adapter Provider: DBSync for QuickBooks Microsoft

More information

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

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 OTM and SOA Mark Hagan Principal Software Engineer Oracle Product Development Content What is SOA? What is Web Services Security? Web Services Security in OTM Futures 3 PARADIGM 4 Content What is SOA?

More information

An Oracle White Paper December 2013. Advanced Network Compression

An Oracle White Paper December 2013. Advanced Network Compression An Oracle White Paper December 2013 Advanced Network Compression Disclaimer 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 11g: Essential Concepts Student Guide

Oracle SOA Suite 11g: Essential Concepts Student Guide Oracle SOA Suite 11g: Essential Concepts Student Guide D58786GC20 Edition 2.0 August 2011 D73588 Author Iris Li Technical Contributors and Reviewers Gary Barg Pete Daly Joe Greenwald David Mills David

More information

An Oracle Technical Article October 2014. Certification with Oracle Linux 5

An Oracle Technical Article October 2014. Certification with Oracle Linux 5 An Oracle Technical Article October 2014 Certification with Oracle Linux 5 Introduction... 1 Comparing Oracle Linux 5 and Red Hat Enterprise Linux (RHEL) 5.. 2 Checking the /etc/ File... 2 Checking for

More information

Oracle Insurance General Agent Hardware and Software Requirements. Version 8.0

Oracle Insurance General Agent Hardware and Software Requirements. Version 8.0 Oracle Insurance General Agent Hardware and Software Requirements Version 8.0 April 2009 Table of Contents OIGA Hardware and Software Requirements... 3 OIGA Installation Configurations... 3 Oracle Insurance

More information

An Oracle White Paper May 2012. Oracle Database Cloud Service

An Oracle White Paper May 2012. Oracle Database Cloud Service An Oracle White Paper May 2012 Oracle Database Cloud Service Executive Overview The Oracle Database Cloud Service provides a unique combination of the simplicity and ease of use promised by Cloud computing

More information

CA Nimsoft Service Desk

CA Nimsoft Service Desk CA Nimsoft Service Desk Configure Outbound Web Services 7.13.7 Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject

More information

Using Symantec NetBackup with VSS Snapshot to Perform a Backup of SAN LUNs in the Oracle ZFS Storage Appliance

Using Symantec NetBackup with VSS Snapshot to Perform a Backup of SAN LUNs in the Oracle ZFS Storage Appliance An Oracle Technical White Paper March 2014 Using Symantec NetBackup with VSS Snapshot to Perform a Backup of SAN LUNs in the Oracle ZFS Storage Appliance Introduction... 2 Overview... 3 Oracle ZFS Storage

More information

Oracle FLEXCUBE Direct Banking Release 12.0.0 Retail Loans User Manual. Part No. E52305-01

Oracle FLEXCUBE Direct Banking Release 12.0.0 Retail Loans User Manual. Part No. E52305-01 Oracle FLEXCUBE Direct Banking Release 12.0.0 Retail Loans User Manual Part No. E52305-01 Loans-User Manual Table of Contents 1. Transaction Host Integration Matrix... 3 2. Introduction... 5 3. Loan Details...

More information

Oracle Application Server 10g Web Services Frequently Asked Questions Oct, 2006

Oracle Application Server 10g Web Services Frequently Asked Questions Oct, 2006 Oracle Application Server 10g Web Services Frequently Asked Questions Oct, 2006 This FAQ addresses frequently asked questions relating to Oracle Application Server 10g Release 3 (10.1.3.1) Web Services

More information

Load Balancing Oracle Web Applications. An Oracle White Paper November 2004

Load Balancing Oracle Web Applications. An Oracle White Paper November 2004 Load Balancing Oracle Web Applications An Oracle White Paper November 2004 Load Balancing Oracle Web Applications Introduction... 3 Load Balancing Implementation... 3 Architecture Overview... 3 Architecture

More information

An Oracle White Paper October 2009. Frequently Asked Questions for Oracle Forms 11g

An Oracle White Paper October 2009. Frequently Asked Questions for Oracle Forms 11g An Oracle White Paper October 2009 Frequently Asked Questions for Oracle Forms 11g Disclaimer The following is intended to outline our general product direction. It is intended for information purposes

More information

An Oracle White Paper September 2013. Directory Services Integration with Database Enterprise User Security

An Oracle White Paper September 2013. Directory Services Integration with Database Enterprise User Security An Oracle White Paper September 2013 Directory Services Integration with Database Enterprise User Security Disclaimer The following is intended to outline our general product direction. It is intended

More information

Oracle Cloud E66791-05

Oracle Cloud E66791-05 Oracle Cloud Using Oracle Managed File Transfer Cloud Service 16.2.5 E66791-05 June 2016 Oracle Managed File Transfer (MFT) is a standards-based, endto-end managed file gateway. Security is maintained

More information

C O N F I G U R I N G O P E N L D A P F O R S S L / T L S C O M M U N I C A T I O N

C O N F I G U R I N G O P E N L D A P F O R S S L / T L S C O M M U N I C A T I O N H Y P E R I O N S H A R E D S E R V I C E S R E L E A S E 9. 3. 1. 1 C O N F I G U R I N G O P E N L D A P F O R S S L / T L S C O M M U N I C A T I O N CONTENTS IN BRIEF About this Document... 2 About

More information

Migration Best Practices for OpenSSO 8 and SAM 7.1 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 OpenSSO 8 and SAM 7.1 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 OpenSSO 8 and SAM 7.1 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 intended

More information

An Oracle White Paper October 2013. Oracle Database and IPv6 Statement of Direction

An Oracle White Paper October 2013. Oracle Database and IPv6 Statement of Direction An Oracle White Paper October 2013 Oracle Database and IPv6 Statement of Direction Disclaimer The following is intended to outline our general product direction. It is intended for information purposes

More information

Virtual Contact Center

Virtual Contact Center Virtual Contact Center Zendesk CTI Integration Configuration Guide Version 8.0 Revision 1.0 Copyright 2013, 8x8, Inc. All rights reserved. This document is provided for information purposes only and the

More information

Primavera Unifier Integration Overview: A Web Services Integration Approach 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 6

Primavera Unifier Integration Overview: A Web Services Integration Approach 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 6 Primavera Unifier Integration Overview: A Web Services Integration Approach 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 6 Introduction Oracle s Primavera Unifier offers an extensible interface

More information

ADF Mobile Overview and Frequently Asked Questions

ADF Mobile Overview and Frequently Asked Questions ADF Mobile Overview and Frequently Asked Questions Oracle ADF Mobile Overview Oracle ADF Mobile is a Java and HTML5-based mobile application development framework that enables developers to build and extend

More information

Long User ID and Password Support In JD Edwards EnterpriseOne

Long User ID and Password Support In JD Edwards EnterpriseOne Long User ID and Password Support In JD Edwards EnterpriseOne An Oracle JD Edwards EnterpriseOne Red Paper November 2007 PURPOSE STATEMENT This document outlines the steps that existing JD Edwards EnterpriseOne

More information