Expose your Intranet Portal to the Outside World in a Secured Manner (aka. A Secured Inside/Outside Portal) An Oracle White Paper

Size: px
Start display at page:

Download "Expose your Intranet Portal to the Outside World in a Secured Manner (aka. A Secured Inside/Outside Portal) An Oracle White Paper"

Transcription

1 Expose your Intranet Portal to the Outside World in a Secured Manner (aka. A Secured Inside/Outside Portal) An Oracle White Paper

2 Expose your Intranet Portal to the Outside World in a Secure Manner. INTRODUCTION With the introduction of web based technologies, the nature of business and the way employees interact with an organization has significantly changed. More and more users are accessing the applications required to do their jobs via a telecommuting paradigm. As such, the manner and number location from which employees use these applications has also increased. While ubiquitous access to corporate data and applications has significant benefit for employees who are remote from the corporate network, it does introduce some significant security concerns. The granting of access rights to a given employee may be valid, based on their role within the organization, however if there is no ability to constrain how/where that user may accesses the information, how is it possible to prevent the information being, either accidentally or maliciously, exposed to an inappropriate audience. For example, while it is reasonable that an employee access their personal HR data within a secure environment, such as their office, viewing the same information in a public forum, such as a cyber café, raises the possibility of having the information read by those for whom it was not intended. (Such as, simply being read over the user s shoulder or, as is unfortunately becoming more common, the use of a Trojan screen/keyboard reader). This can be as much of an issue for employees who are working in a professional capacity within the secured network of a customer or partner organization. Consultants for example, spend significant portions of their working week out of the office at client offices. The temptation to save time by accessing corporate applications (such as timesheet reporting) is probably extremely high, yet exposes those very applications to employees of the client organization. In these scenarios, the use of a VPN is often not practical as it would not be appropriate to install the client software locally on the machine in question (especially in the case of the Cyber Café). The benefit of a Virtual private Network is that is effective places the user on the corporate network, and hence enables access to the same resources which would be available to the user internally. Hence while useful for Expose your Intranet Portal to the Outside World in a Secured Manner - Page 2

3 a home office, may exacerbate the security issue. As such, for the scenarios given, it is likely that the remote employees will use the organizations external website (public) as the entry point to access their Corporate Portal and associated web applications. Cyber-Café Home Office VPN access Public Network Remote Employees (eg. Professional Services) Corporate Network Figure 1: Ubiquitous Access to the Web introduces the possibility of compromised data. The issue for Portal administrators is therefore, how, given that access permissions are based on an Access Control List (ACL) and the user s unique identity, is it possible to grant the user access to a page, yet limit it to only to the secured intranet environment. This whitepaper will introduce an extension to the OracleAS Portal 10g (R2) security mechanisms, which allows for the definition of a nonsecured access path, and the subsequent ability to block secured requests if they originate via that access path. The default extensions shipped with OracleAS Portal 10g (R2) will cover the following three requested security extensions. Prevent the viewing of specific Portal pages, if the request originated from outside of the Corporate Network. Prevent the editing/customization of specific pages, if the user requesting the page is outside of the Corporate Network. Globally remove the ability for End Users to edit/customize any accessible any page in the system, if the edit request originated from outside of the Corporate Network. Expose your Intranet Portal to the Outside World in a Secured Manner - Page 3

4 INSIDE/OUTSIDE TOPOLOGY The approach taken to secure ages from external access is an extension to the standard OracleAS Portal 10g Inside/OutSide configuration as described in the Oracle Application Server Configuration guide (see Figure 2). In this configuration the two user communities are separated through the use of two distinct middle tier installations, each with it s own Webcache and Application server. Both Middle-tiers however are associated with the same Portal repository, allowing for the same portal and access rights to be used across both the internal and external sites. Note: it is recommended that the two sites do not share the same URL. This not only simplifies the network configuration but also enforces different CacheKeys within the Webcache. By the use of an Invalidation-Only cluster content is not shared between the various cache nodes of the cluster, hence a request that originated from with-in the secured network will only be cached on the Inside while, conversely, a page request from the external network will remain in the external cache. The separation of the application servers to service two different communities further enhances the security of the site by allowing the deployment of executable code to be limited on the publicly accessible application server. External Firewall External Users Reverse Proxy External Application Server (Portal Middle-Tier) On Unsecured Network External Webcache Invalidation-Only Cluster Internal Firewall Internal Users ORA_EXT_REQ CGI variable added to request Internal Application Server (Portal Middle-Tier) On Secure Network Internal Webcache Portal Metadata Repository Figure 2: Extended "Inside/Outside" Topology Check for ORA_EXT_REQ in Request Expose your Intranet Portal to the Outside World in a Secured Manner - Page 4

5 While the use of disparate mid-tiers allows for the separation of content for the two logical communities it does not enforce which community is which (simply that they are exposing independent content). If an individual user may access the Portal from either site it is necessary to physically differentiate the path used for the user s page request. In order to determine which community is Outside the middle-tier servicing the page request is flagged as an external service. Hence requests received via this server may be assumed to have originated from the external public network. The approach used to flag the external requests is via the addition of a Common Gateway Interface (CGI) variable to the request as it executes on the server that has be designated as outside. As the page request is forwarded to the OracleAS Portal 10g repository for verification of access privileges, the addition of the CGI variable (ORA_EXT_REQ) to the request allows the security authorization code to differentiate between the origins of a page request. That is, a request from an internal server would not carry the ORA_EXT_REQ variable. In order to utilize the path information to further secure pages, an Access Control List (ACL) modifier package is installed into the Portal Repository to check for the existence of the CGI variable before performing the standard permissions checks. This ACL modifier package will be discussed later in this paper. Note: The ORA_EXT_REQ variable has no specific value to control the ability to access a page externally. The modifier package simply checks for the existence of the variable, not the value contained within it. As such, if the external server was compromised and a malicious user was able to set this value, they would succeed only in decreasing the amount of content available to them. Configuration Steps The high level steps for configuring the prescribed Inside/Outside topology are as follows; 1. Install the Product Metadata Repository on the internal Database server (either in a custom database or using the Seed Meta-Data Repository which is installed with the infrastructure install) 2. Install Portal & Wireless Mid-tier on the external mid-tier server, associate this installation with the Metadata repository configured in step 1, however DO NOT configure the portal during this installation process (Note: uncheck to configure portal check-box) 3. Setup an Invalidation-only Web Cache Cluster between the two mid-tiers configured above. (Refer to the Oracle Application Server Expose your Intranet Portal to the Outside World in a Secured Manner - Page 5

6 Web Cache Administrator's Guide for steps on Configuring Administration and Invalidation-Only Clusters) 4. Using the Advance Server Properties page from within the Oracle Application Server Console edit the Oracle HTTP server and mod_plsql configuration on the External mid-tier to flag this server as unsecured (ie that which services the external requests) Farm > Application Server Instance > HTTP_Server > Admininstration > Advanced Server Properties a) Edit the httpd.conf configuration file. Add a line as follows in the main section: SetEnv ORA_EXT_REQ (this is the environment variable which denotes an externally initiated request). b) Edit the dads.conf mod_plsql configuration file, add a line under the configuration entry for the Portal DAD as follows: PlsqlCGIEnvironmentList ORA_EXT_REQ c) Restart the HTTP Server: 5. Register both the Internal and external Portal URLs as separate Partner Applications in the Oracle SSO environment 6. Setup Portal to Send Invalidation Requests to Internal Middle Tier WebCache invalidation port. Note: These steps are described in detail within the Configuring a Dedicated Intranet and Extranet for OracleAS Portal chapter of the Oracle Application Server Enterprise Deployment Guide. Please refer to this document for further information on how to configure the Enterprise Inside/Outside topology. Authorization Modification In the basic installation of OracleAS Portal 10g, the determination of a user s ability to view or edit a page, is based on the definition of an ACL policy, which references the page and the user (and/or any roles to which they belong). In other words the user s privileges are defined by her as a named individual identity, rather than based on a specific business rule (such as from whence the request originated). To allow for extensions to this security model the OracleAS Portal 10g authorization routines have been extended by the introduction of an Authorization Modifier Package. This package is executed prior to the standard ACL check, and enables additional rules to be evaluated before interrogating the ACL itself. If the Authorization Modifier succeeds (returns true) then the authorization check falls through to the default ACL based mechanism in order to determine if the user has the Expose your Intranet Portal to the Outside World in a Secured Manner - Page 6

7 appropriate access rights. Conversely, if the Authorization Modifier denies access (returns false) the ACL is not even interrogated, and the behavior is to act as if the user did not have appropriate privileges for the operation, even if the ACL would have allowed it. By default, the installed Authorization Modification Package always returns true, and hence the functionality is effectively disabled. Thus the determination of access privileges is based solely on the evaluation of the security ACL s. To switch on the Authorization modifier it is necessary to replace the default package body with one that implements the desired business rule. Secure Network Aware Authorization Modifiers OracleAS Portal 10g is shipped with three predefined Modifier packages which allow for the implementation of a Secure Network Aware Portal environment. That is, one which is able to implement security policies based not only on an ACL, but also on the origin of the Portal page request. Script File cfgamyes.pkb cfgampev.pkb cfgamno.pkb Description The default ConFiGuration Authorization Modifier disables ALL page Editing or Customization functionality for requests which originate outside of the secured network The ConFiGuration Authorization Modifier for Page Edit and View, allows for the securing of individual pages outside of the Secured Network. That is, the ability to prevent the viewing or editing of specific pages when the request originated from outside the secure network environment. Returns the Authorization modifier to the default disabled state. Table 1: Authorization modifiers supplied The Modifier packages may be found in the $ORACLE_HOME/portal/admin/plsql/wwc directory of the Metadata Repository Upgrade Assistant (MRUA) To implement the desired function; 1. Connect via SQL*Plus to Database containing the OracleAS Portal 10g Metadata Repository. 2. Login as the Portal schema 3. Execute the appropriate package body script file to over-write the current Authorization Modifier installed. Expose your Intranet Portal to the Outside World in a Secured Manner - Page 7

8 Default Authorization Modifier This implementation of the Authorization Modifier package uses the existence of the ORA_EXT_REQ CGI environment variable described above to recognize that the request has been received on a server that has been designated as publicly accessible, and hence should be considered outside of the Secure Network environment. Once compiled into the Authorization packages, any request from outside of the network which involves an Edit request is automatically disabled. That is, all customize and Edit links are removed from the page and direct edit URL references are disallowed. The effect of the default modifier can be seen in Figure 3 below. A Local Network request with Edit Privileges Allowed An External Network request with all Edit Privileges Blocked Ability to edit page is globally blocked for ALL users. Both Edit & Customize removed from the page. Figure 3: The effect of applying the Default Modifier on a user s ability to Edit/Customize the portal externally. Page View and Edit Authorization Modifier Securing Specific Pages The more specific Authorization Modifier (cfgampev) also uses the CGI variable to determine an external request. It however uses it in conjunction with defined page meta-data, in the form of a custom page attribute, to localize the desired inside/outside security to a subset of pages within the portal. Hence the ability to have externally available view and/or edit privileges on a specific page is determined on whether one or both named attributes are defined in the page in question. Expose your Intranet Portal to the Outside World in a Secured Manner - Page 8

9 Preventing External Viewing of a Specific Page The ability to view a page externally is determined by the 'isviewrestricted' named custom attribute. Once defined as part of the page description (through the use of a custom page template - see below) the setting of this attribute will determine dynamically if the page is to be viewable, or not. That is, when set to 'On' external viewing of the page is prevented, while a value of 'Off' (the default) indicates it is to be available externally. From the perspective of the end user, the activation of this rule has the effect of removing any links which reference the page as well as preventing any direct URLs to it (such as via a browser bookmark). An example of the effect of the View Restricted modifier may be seen in Figure 4. A Local Network request to view a secured page An External Network request by the same user A Network Secured Page is NOT exposed, if the request originates from outside of the Local Network! Figure 4: The effect of the "ViewRestricted" modifier is to remove evidence of the secured page from external requests Preventing External Edits and Customization for a Specific Page In a similar manner, the use of another named attribute, 'iseditrestricted' will dictate whether a specific page may be edited from outside of the secured network. Note: This is different to the Default Modifier which globally turns off the ability to perform any edit function on any page within the Portal. When the value of this attribute is set to On the ability to edit/customize the page is revoked, while setting it to 'Off' indicates edits from outside are to be allowed. As can be seen from figure 5, the effect of setting this attribute is to not only remove the page level Expose your Intranet Portal to the Outside World in a Secured Manner - Page 9

10 edit links, but also revoke the edit/customize capability of the Portlets embedded within the page. A Local Network request to view a secured page An External Network request by the same user The ability to edit a specific Network Secured Page may be revoked if the page request originated from outside of the Local Network Figure 5: The effect of the "EditRestricted" modifier is to remove the ability to Edit/Customize the secured page externally Defining Required Page Attributes for use with Authorization Modifiers While the attributes described above are not currently part of the standard page meta-data, the extensible page model allows us to add them in the form of Custom Attributes to our page definition. By the creation of a custom page type to be used as the basis of the inside/outside secureable pages it is a simple process to allow a page designer to define declaratively whether the page is to be internally secured or accessable both from with-in and with-out the secured network. The following section documents the steps required to create the appropriate page type used to secure a page via the Authorization Modifier functions decribed above. 1. From within the Portal Navigator, drill into the Shared Objects node to define both the custom Attribute and Page types. It is recommended that these be defined as Shared Objects rather than scoped to a specific Page Group, as it allows for their reuse across multiple Page Groups. Expose your Intranet Portal to the Outside World in a Secured Manner - Page 10

11 Figure 6 : Portal Navigator "Shared Objects" node 2. Selecting the Attribute link, define a custom attribute with the specific name of either isviewrestricted or iseditrestricted depending on the functionality desired. Take special care to match the case structure of the name, as the Authorization modifier rule is CASE sensitive. Set the data-type of the attribute to BOOLEAN. Note: In order to simplify the use of custom meta-data the Oracle Portal Create Attribute page no longer allows for the separate definition of the attribute s name. Instead this is generated from the user supplied display name (truncating any spaces). As such, it is easiest to create the attribute with an initial display name matching the required attribute name (in this case isviewrestricted ) thus creating an attribute of the same name. Having created the initial attribute definition, edit the Display name to reflect the function of the attribute. (See figure 7) Figure 7 : Custom Attribute Definition Expose your Intranet Portal to the Outside World in a Secured Manner - Page 11

12 3. Once the required custom attribute is defined it needs to be made part of the meta-data of the page. a. Create a Custom Page Type to define a Network Securable Page based on the Standard Base Page type. Note: As with the creation of the Custom Attribute Oracle Portal initially generates the Type name from the user supplied display name (truncating any spaces). As the physical type name is not used by the Authorization modifier, it should be set to something that is meaningful, as it will be exposed in the Page Design UI. b. Edit the new Page Type and define the attributes associated with it by selecting the Attributes tab. c. Within the Shuttle Picker highlight the new custom attributes and move them to the right hand side. Click the Apply button, which will associate the attributes with the new page type and expose their Properties in the Page Type Attributes tab. d. Set the default value of the attribute to either ON or OFF depending on your security requirements. e. Check the Required Check Box in order for the Attribute (and display name) to be exposed in the Page Type and subsequently Page Designer user interfaces. Figure 8: Define Custom Page type on which to build "Network Securable" pages Expose your Intranet Portal to the Outside World in a Secured Manner - Page 12

13 Figure 9: Associate the network security attributes with the custom Page Type. 4. Configure the Page Group to expose the new Page Type. Note: Given the Network Securable page is based on the Standard Base type you may wish to remove the standard type and expose the new secured version in it s place Figure 10: Defining the Page Types to be available within page group Expose your Intranet Portal to the Outside World in a Secured Manner - Page 13

14 Defining a Network Secured page Having defined the Network Secured page type and associated it with the page group, it is a simple task for the Page Designer to select the appropriate page type and check which network security rule are to be enforced. That is, whether the page they are designing should be constrained to the Local network, or be exposed to a less secure environment. Figure 11 : Page designers can now declaratively define if their page should be Network Securable Restrictions on Authorization Modifiers The techniques described in this white paper rely on the fact that the page request in question would, under normal circumstances, be defined by a security policy, and as such; access control would be applied. Consequently there are a number of caveats that should be taken into account for this functionality to perform as expected. 1. The Page in question must be a Secured Page and may not be defined as a PUBLIC page. Based on the fact that public pages are available to all users, regardless of whether they have authenticated or not, they are not scrutinized for access control, and hence the authorization code, and subsequent modifier, is not called prior to displaying the page. Expose your Intranet Portal to the Outside World in a Secured Manner - Page 14

15 Therefore it is a minimum requirement that privilege be granted to the AUTHENTICATED_USERS group for the page. 2. User cannot be defined as a SITE Owner. Site Owners are assumed to have MANAGE privilege over any page in the Site owned by them. As such, they effectively have super-user privileges and there is no requirement to perform an authorization check. In this case the authorization code is again not called prior to displaying the page. 3. User should not have Global Edit Privileges As with the user being defined as the SITE Owner, the granting of the Global EDIT ANY PAGE privilege indicates that the user in question should have the right to edit any page in the system, regardless of the ACL s defined. As such, the page level authorization is ignored and the Authorization Modifier not executed. 4. Page Security Should be defined at the Page Level In many cases it is more convenient to define the access control privilege at the Page Group Level and allow the individual page to inherit the privilege. In the case of the Authorization Modifier this would then restrict all pages in the Page group rather than only those pages requiring the external restriction. Conclusion As the web makes ubiquitous access to corporate data possible and as more employees take advantage of the flexibility of tele-commuting ; the onus is on systems administrators to secure their environment, such that information is not inadvertently exposed to those for whom it was not intended. Increasingly, it has become necessary to treat as possibly hostile, any request that has not originated from within the physical confines of the local network. As such, these external requests should be limited to the minimum possible functionality. This white paper has introduced the concept and techniques for implementing a secured Inside/Outside topology for OracleAS Portal 10g which allows a users access privileges to be determined not only by their identity but also by the path used to access the Portal. Expose your Intranet Portal to the Outside World in a Secured Manner - Page 15

16 Appendix Object level functions allowed by the default Authorization Modifier. Object Privilege Allowed? ADCALEND ADCHART ADFORM ADFORMPR ANY_APPLICATION ANY_ITEM ANY_LOG ANY_PAGE ANY_PORTLET ANY_SCHEMA ANY_SITE ANY_STYLE APPLICATION AREPORT CHART DATACELL DATAPTL DOCUMENT DRIVER DYNAMIC FOP FOT HIERARCH IMGCHART ITEM LINK LOV MDF ACCESS Expose your Intranet Portal to the Outside World in a Secured Manner - Page 16

17 MDFORM MENU PAGE PORTLET PORTLET_NON_LOCAL QBEFORM REPORT RWCAL RWCPC RWPRN RWREP RWSVR SCHEMA SITE UIFORM URLPTL XMLPTL ACCESS ACCESS Expose your Intranet Portal to the Outside World in a Secured Manner - Page 17

18 Expose your Intranet Portal to the Outside World in a Secure Manner Author: Barry Hiern Contributing Authors: Paul Encarnación, Sunil Marya, Peter Lubbers Oracle Corporation World Headquarters 500 Oracle Parkway Redwood Shores, CA U.S.A. Worldwide Inquiries: Phone: Fax: 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, JD Edwards, and PeopleSoft are registered trademarks of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

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

Implementing a Custom Search Interface with SES - a case study with search.oracle.com. An Oracle White Paper June 2006

Implementing a Custom Search Interface with SES - a case study with search.oracle.com. An Oracle White Paper June 2006 Implementing a Custom Search Interface with SES - a case study with search.oracle.com An Oracle White Paper June 2006 Implementing a Custom Search Interface with SES - a case study with search.oracle.com

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 Identity Management Concepts and Architecture. An Oracle White Paper December 2003

Oracle Identity Management Concepts and Architecture. An Oracle White Paper December 2003 Oracle Identity Management Concepts and Architecture An Oracle White Paper December 2003 Oracle Identity Management Concepts and Architecture Introduction... 3 Identity management... 3 What is Identity

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

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

Oracle Net Services for Oracle10g. An Oracle White Paper May 2005

Oracle Net Services for Oracle10g. An Oracle White Paper May 2005 Oracle Net Services for Oracle10g An Oracle White Paper May 2005 Oracle Net Services INTRODUCTION Oracle Database 10g is the first database designed for enterprise grid computing, the most flexible and

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

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

How to Effectively Measure and Monitor Activity in Your Portal Environment. An Oracle White Paper December 2004

How to Effectively Measure and Monitor Activity in Your Portal Environment. An Oracle White Paper December 2004 How to Effectively Measure and Monitor Activity in Your Portal Environment An Oracle White Paper December 2004 How to Effectively Measure and Monitor Activity in Your Portal Environment Executive Overview...

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

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

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 Technical White Paper May 2015. How to Configure Kaspersky Anti-Virus Software for the Oracle ZFS Storage Appliance

An Oracle Technical White Paper May 2015. How to Configure Kaspersky Anti-Virus Software for the Oracle ZFS Storage Appliance An Oracle Technical White Paper May 2015 How to Configure Kaspersky Anti-Virus Software for the Oracle ZFS Storage Appliance Table of Contents Introduction... 2 How VSCAN Works... 3 Installing Kaspersky

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

Maximum Availability Architecture. Oracle Best Practices For High Availability. Backup and Recovery Scenarios for Oracle WebLogic Server: 10.

Maximum Availability Architecture. Oracle Best Practices For High Availability. Backup and Recovery Scenarios for Oracle WebLogic Server: 10. Backup and Recovery Scenarios for Oracle WebLogic Server: 10.3 An Oracle White Paper January, 2009 Maximum Availability Architecture Oracle Best Practices For High Availability Backup and Recovery Scenarios

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

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

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

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

P R O V I S I O N I N G O R A C L E H Y P E R I O N F I N A N C I A L M A N A G E M E N T

P R O V I S I O N I N G O R A C L E H Y P E R I O N F I N A N C I A L M A N A G E M E N T O R A C L E H Y P E R I O N F I N A N C I A L M A N A G E M E N T, F U S I O N E D I T I O N R E L E A S E 1 1. 1. 1.x P R O V I S I O N I N G O R A C L E H Y P E R I O N F I N A N C I A L M A N A G E

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

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

Setting up an OracleAS myportal Enterprise Deployment Architecture with the CAI Networks, Inc WebMux Load Balancer. A Step-by-Step Guide Version 1.

Setting up an OracleAS myportal Enterprise Deployment Architecture with the CAI Networks, Inc WebMux Load Balancer. A Step-by-Step Guide Version 1. Setting up an OracleAS myportal Enterprise Deployment Architecture with the CAI Networks, Inc WebMux Load Balancer A Step-by-Step Guide Version 1.2 Oracle Corporation CAI Networks, Inc. Updated Feb. 7

More information

Oracle BI Publisher Enterprise Cluster Deployment. An Oracle White Paper August 2007

Oracle BI Publisher Enterprise Cluster Deployment. An Oracle White Paper August 2007 Oracle BI Publisher Enterprise Cluster Deployment An Oracle White Paper August 2007 Oracle BI Publisher Enterprise INTRODUCTION This paper covers Oracle BI Publisher cluster and high availability deployment.

More information

Highmark Unifies Identity Data With Oracle Virtual Directory. An Oracle White Paper January 2009

Highmark Unifies Identity Data With Oracle Virtual Directory. An Oracle White Paper January 2009 Highmark Unifies Identity Data With Oracle Virtual Directory An Oracle White Paper January 2009 Highmark Unifies Identity Data With Oracle Virtual Directory Executive Summary... 3 The Challenge: A Single

More information

Oracle Identity Management: Integration with Windows. An Oracle White Paper December. 2004

Oracle Identity Management: Integration with Windows. An Oracle White Paper December. 2004 Oracle Identity Management: Integration with Windows An Oracle White Paper December. 2004 Oracle Identity Management: Integration with Windows Introduction... 3 Goals for Windows Integration... 4 Directory

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

Revision ORACLE CORPORATION. Application Server Deployment Architecture Series. Using Web Cache as Reverse Proxy

Revision ORACLE CORPORATION. Application Server Deployment Architecture Series. Using Web Cache as Reverse Proxy Revision 1 ORACLE CORPORATION Application Server Deployment Architecture Series Using Web Cache as Reverse Proxy Table of Contents Document Version 1.1 AUTHOR... 2 OBJECTIVES... 3 BACKGROUND... 4 CACHE

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

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

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

Oracle Hyperion Financial Management Virtualization Whitepaper

Oracle Hyperion Financial Management Virtualization Whitepaper Oracle Hyperion Financial Management Virtualization Whitepaper Oracle Hyperion Financial Management Virtualization Whitepaper TABLE OF CONTENTS Overview... 3 Benefits... 4 HFM Virtualization testing...

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

An Oracle White Paper May 2011. Oracle Tuxedo: An Enterprise Platform for Dynamic Languages

An Oracle White Paper May 2011. Oracle Tuxedo: An Enterprise Platform for Dynamic Languages An Oracle White Paper May 2011 Oracle Tuxedo: An Enterprise Platform for Dynamic Languages Introduction Dynamic languages, also sometimes known as scripting languages, have been in existence for a long

More information

An Oracle White Paper October 2013. Oracle Data Integrator 12c New Features Overview

An Oracle White Paper October 2013. Oracle Data Integrator 12c New Features Overview An Oracle White Paper October 2013 Oracle Data Integrator 12c Disclaimer This document is for informational purposes. It is not a commitment to deliver any material, code, or functionality, and should

More information

Oracle On Demand Infrastructure: Virtualization with Oracle VM. An Oracle White Paper November 2007

Oracle On Demand Infrastructure: Virtualization with Oracle VM. An Oracle White Paper November 2007 Oracle On Demand Infrastructure: Virtualization with Oracle VM An Oracle White Paper November 2007 Oracle On Demand Infrastructure: Virtualization with Oracle VM INTRODUCTION Oracle On Demand Infrastructure

More information

An Oracle White Paper March 2012. Managing Metadata with Oracle Data Integrator

An Oracle White Paper March 2012. Managing Metadata with Oracle Data Integrator An Oracle White Paper March 2012 Managing Metadata with Oracle Data Integrator Introduction Metadata information that describes data is the foundation of all information management initiatives aimed at

More information

IIS Reverse Proxy Implementation

IIS Reverse Proxy Implementation IIS Reverse Proxy Implementation for OXI/OEDS Servers V E R S I O N : 1. 1 M A Y 2 9, 2 0 1 5 Table of Contents Intended Audience 3 About this Document 3 Advisories and Known Issues 3 Additional Considerations

More information

An Oracle White Paper Released Sept 2008

An Oracle White Paper Released Sept 2008 Performance and Scalability Benchmark: Siebel CRM Release 8.0 Industry Applications on HP BL460c/BL680c Servers running Microsoft Windows Server 2008 Enterprise Edition and SQL Server 2008 (x64) An Oracle

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

An Oracle White Paper July 2011. Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide

An Oracle White Paper July 2011. Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide An Oracle White Paper July 2011 1 Disclaimer The following is intended to outline our general product direction.

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

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

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

An Oracle White Paper March 2013. Oracle s Single Server Solution for VDI

An Oracle White Paper March 2013. Oracle s Single Server Solution for VDI An Oracle White Paper March 2013 Oracle s Single Server Solution for VDI Introduction The concept of running corporate desktops in virtual machines hosted on servers is a compelling proposition. In contrast

More information

Oracle VM Manager Template. An Oracle White Paper February 2009

Oracle VM Manager Template. An Oracle White Paper February 2009 Oracle VM Manager Template An Oracle White Paper February 2009 Oracle VM Manager Template Using the Oracle VM Manager Template to manage Oracle VM servers. Oracle VM is Oracle's own x86/x86-64 server virtualization

More information

CA Technologies SiteMinder

CA Technologies SiteMinder CA Technologies SiteMinder Agent for Microsoft SharePoint r12.0 Second Edition This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to

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

An Oracle Technical White Paper January 2014. How to Configure the Trend Micro IWSA Virus Scanner for the Oracle ZFS Storage Appliance

An Oracle Technical White Paper January 2014. How to Configure the Trend Micro IWSA Virus Scanner for the Oracle ZFS Storage Appliance An Oracle Technical White Paper January 2014 How to Configure the Trend Micro IWSA Virus Scanner for the Oracle ZFS Storage Appliance Table of Contents Introduction... 2 How VSCAN Works... 3 Installing

More information

Oracle Financial Services Data Integration Hub Foundation Pack Extension for Data Relationship Management Interface

Oracle Financial Services Data Integration Hub Foundation Pack Extension for Data Relationship Management Interface Oracle Financial Services Data Integration Hub Foundation Pack Extension for Data Relationship Management Interface User Manual 8.0.1.0.0 Page i Table of Contents TABLE OF CONTENTS PREFACE... 4 Audience...

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

Oracle Application Development Framework Overview

Oracle Application Development Framework Overview An Oracle White Paper June 2011 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

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

Deploying Oracle Business Intelligence Publisher in J2EE Application Servers Release 10.1.3.2.0

Deploying Oracle Business Intelligence Publisher in J2EE Application Servers Release 10.1.3.2.0 Oracle Business Intelligence Publisher Deploying Oracle Business Intelligence Publisher in J2EE Application Servers Release 10.1.3.2.0 Part No. B32481-01 December 2006 Introduction Oracle BI Publisher

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

Monitoring and Diagnosing Production Applications Using Oracle Application Diagnostics for Java. An Oracle White Paper December 2007

Monitoring and Diagnosing Production Applications Using Oracle Application Diagnostics for Java. An Oracle White Paper December 2007 Monitoring and Diagnosing Production Applications Using Oracle Application Diagnostics for Java An Oracle White Paper December 2007 Monitoring and Diagnosing Production Applications Using Oracle Application

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

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 Identity Analytics Architecture. An Oracle White Paper July 2010

Oracle Identity Analytics Architecture. An Oracle White Paper July 2010 Oracle Identity Analytics Architecture An Oracle White Paper July 2010 Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and may

More information

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

Integrating Tutor and UPK Content: A Complete User Documentation Solution. An Oracle White Paper April 2008

Integrating Tutor and UPK Content: A Complete User Documentation Solution. An Oracle White Paper April 2008 Integrating Tutor and UPK Content: A Complete User Documentation Solution An Oracle White Paper April 2008 Integrating Tutor and UPK Content: A Complete User Documentation Solution TUTOR OR UPK? Oracle

More information

How to Configure Symantec Protection Engine for Network Attached Storage for the Oracle ZFS Storage Appliance

How to Configure Symantec Protection Engine for Network Attached Storage for the Oracle ZFS Storage Appliance An Oracle Technical White Paper January 2014 How to Configure Symantec Protection Engine for Network Attached Storage for the Oracle ZFS Storage Appliance Table of Contents Introduction... 3 How VSCAN

More information

JD Edwards EnterpriseOne Tools. 1 Understanding JD Edwards EnterpriseOne Business Intelligence Integration. 1.1 Oracle Business Intelligence

JD Edwards EnterpriseOne Tools. 1 Understanding JD Edwards EnterpriseOne Business Intelligence Integration. 1.1 Oracle Business Intelligence JD Edwards EnterpriseOne Tools Embedded Business Intelligence for JD Edwards EnterpriseOne Release 8.98 Update 4 E21426-02 March 2011 This document provides instructions for using Form Design Aid to create

More information

An Oracle White Paper September 2012. Oracle Database and the Oracle Database Cloud

An Oracle White Paper September 2012. Oracle Database and the Oracle Database Cloud An Oracle White Paper September 2012 Oracle Database and the Oracle Database Cloud 1 Table of Contents Overview... 3 Cloud taxonomy... 4 The Cloud stack... 4 Differences between Cloud computing categories...

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

June, 2015 Oracle s Siebel CRM Statement of Direction Client Platform Support

June, 2015 Oracle s Siebel CRM Statement of Direction Client Platform Support June, 2015 Oracle s Siebel CRM Statement of Direction Client Platform Support Oracle s Siebel CRM Statement of Direction IP2016 Client Platform Support Disclaimer This document in any form, software or

More information

Oracle Database 10g: Building GIS Applications Using the Oracle Spatial Network Data Model. An Oracle Technical White Paper May 2005

Oracle Database 10g: Building GIS Applications Using the Oracle Spatial Network Data Model. An Oracle Technical White Paper May 2005 Oracle Database 10g: Building GIS Applications Using the Oracle Spatial Network Data Model An Oracle Technical White Paper May 2005 Building GIS Applications Using the Oracle Spatial Network Data Model

More information

Oracle Access Manager. An Oracle White Paper

Oracle Access Manager. An Oracle White Paper Oracle Access Manager An Oracle White Paper NOTE: The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any

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

Oracle Data Integrator and Oracle Warehouse Builder Statement of Direction

Oracle Data Integrator and Oracle Warehouse Builder Statement of Direction First Published January 2010 Updated October 2013 Oracle Data Integrator and Oracle Warehouse Builder Statement of Direction Disclaimer This document in any form, software or printed matter, contains proprietary

More information

ios Deployment Simplified FileMaker How To Guide

ios Deployment Simplified FileMaker How To Guide ios Deployment Simplified FileMaker How To Guide Table of Contents FileMaker How To Guide Introduction... 3 Deployment Options... 3 Option 1 Transfer to the ios device... 3 Option 2 - Host with FileMaker

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

An Oracle White Paper March 2009. Oracle Label Security in Government and Defense Environments

An Oracle White Paper March 2009. Oracle Label Security in Government and Defense Environments An Oracle White Paper March 2009 Oracle Label Security in Government and Defense Environments Protecting Sensitive Information... 2 Oracle Label Security Overview... 2 Getting Started with Oracle Label

More information

An Oracle White Paper August 2010. Oracle OpenSSO Fedlet

An Oracle White Paper August 2010. Oracle OpenSSO Fedlet An Oracle White Paper August 2010 Oracle OpenSSO Fedlet Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

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

Oracle Enterprise Single Sign-on Technical Guide An Oracle White Paper June 2009

Oracle Enterprise Single Sign-on Technical Guide An Oracle White Paper June 2009 Oracle Enterprise Single Sign-on Technical Guide An Oracle White Paper June 2009 EXECUTIVE OVERVIEW Enterprises these days generally have Microsoft Windows desktop users accessing diverse enterprise applications

More information

Oracle WebCenter Content Service for Microsoft Exchange

Oracle WebCenter Content Service for Microsoft Exchange Oracle WebCenter Content Service for Microsoft Exchange Installation and Upgrade Guide 10g Release 3 (10.3) November 2008 Oracle WebCenter Content Service for Microsoft Exchange Installation and Upgrade

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

Oracle Application Server 10g: Administer High Availability

Oracle Application Server 10g: Administer High Availability Oracle Application Server 10g: Administer High Availability Student Guide D21855GC10 Production 1.0 July 2006 D46705 Author Shankar Raman Technical Contributors and Reviewers Shankar Raman Fermin Castro

More information

Integrating Oracle Sales Cloud, Release 9 with JD Edwards EnterpriseOne release 9.1 Implementation Guide

Integrating Oracle Sales Cloud, Release 9 with JD Edwards EnterpriseOne release 9.1 Implementation Guide December 2014 Integrating Oracle Sales Cloud, Release 9 with JD Edwards EnterpriseOne release 9.1 Implementation Guide Doc version 1.0 Copyright 2005, 2014 Oracle and/or its affiliates. All rights reserved.

More information

ORACLE PROJECT MANAGEMENT

ORACLE PROJECT MANAGEMENT ORACLE PROJECT MANAGEMENT KEY FEATURES Oracle Project Management provides project managers the WORK MANAGEMENT Define the workplan and associated resources; publish and maintain versions View your schedule,

More information

Evolution from the Traditional Data Center to Exalogic: An Operational Perspective

Evolution from the Traditional Data Center to Exalogic: An Operational Perspective An Oracle White Paper July, 2012 Evolution from the Traditional Data Center to Exalogic: 1 Disclaimer The following is intended to outline our general product capabilities. It is intended for information

More information

Sun ZFS Storage Appliance Rule-Based Identity Mapping Between Active Directory and Network Information Services Implementation Guide

Sun ZFS Storage Appliance Rule-Based Identity Mapping Between Active Directory and Network Information Services Implementation Guide An Oracle White Paper February 2011 Sun ZFS Storage Appliance Rule-Based Identity Mapping Between Active Directory and Network Information Services Implementation Guide Introduction... 4 Overview and Prerequisites...

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

How To Develop A Mobile Application On An Android Device

How To Develop A Mobile Application On An Android Device 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 not a commitment to deliver

More information

Oracle SQL Developer for Database Developers. An Oracle White Paper June 2007

Oracle SQL Developer for Database Developers. An Oracle White Paper June 2007 Oracle SQL Developer for Database Developers An Oracle White Paper June 2007 Oracle SQL Developer for Database Developers Introduction...3 Audience...3 Key Benefits...3 Architecture...4 Key Features...4

More information

Oracle Enterprise Single Sign-on Logon Manager How-To: Configuring ESSO-LM Event Logging with Microsoft SQL Server 2005 Release 11.1.1.2.

Oracle Enterprise Single Sign-on Logon Manager How-To: Configuring ESSO-LM Event Logging with Microsoft SQL Server 2005 Release 11.1.1.2. Oracle Enterprise Single Sign-on Logon Manager How-To: Configuring ESSO-LM Event Logging with Microsoft SQL Server 2005 Release 11.1.1.2.0 20413-01 December 2010 8B Oracle Enterprise Single Sign-on Logon

More information

Oracle Role Manager. An Oracle White Paper Updated June 2009

Oracle Role Manager. An Oracle White Paper Updated June 2009 Oracle Role Manager An Oracle White Paper Updated June 2009 Oracle Role Manager Introduction... 3 Key Benefits... 3 Features... 5 Enterprise Role Lifecycle Management... 5 Organization and Relationship

More information

Symantec AntiVirus Corporate Edition Patch Update

Symantec AntiVirus Corporate Edition Patch Update Symantec AntiVirus Corporate Edition Patch Update Symantec AntiVirus Corporate Edition Update Documentation version 10.0.1.1007 Copyright 2005 Symantec Corporation. All rights reserved. Symantec, the Symantec

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 November 2011. Upgrade Best Practices - Using the Oracle Upgrade Factory for Siebel Customer Relationship Management

An Oracle White Paper November 2011. Upgrade Best Practices - Using the Oracle Upgrade Factory for Siebel Customer Relationship Management An Oracle White Paper November 2011 Upgrade Best Practices - Using the Oracle Upgrade Factory for Siebel Customer Relationship Management Executive Overview... 1 Introduction... 1 Standard Siebel CRM Upgrade

More information

An Oracle White Paper February, 2015. Oracle Database In-Memory Advisor Best Practices

An Oracle White Paper February, 2015. Oracle Database In-Memory Advisor Best Practices An Oracle White Paper February, 2015 Oracle Database In-Memory Advisor Best Practices Disclaimer The following is intended to outline our general product direction. It is intended for information purposes

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

Guide to Database as a Service (DBaaS) Part 2 Delivering Database as a Service to Your Organization

Guide to Database as a Service (DBaaS) Part 2 Delivering Database as a Service to Your Organization Guide to Database as a Service (DBaaS) Part 2 Delivering Database as a Service to Your Organization Introduction There are often situations in which you need to spin up a new database. But in a traditional

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