Managing Your Workflow System

Size: px
Start display at page:

Download "Managing Your Workflow System"

Transcription

1 SUNGARD SUMMIT 2007 sungardsummit.com 1 Managing Your Workflow System Presented by: Michael Brzycki, SunGard Higher Education March 20, 2007 A Community of Learning

2 Introduction Topic: Learn how to leverage and manage the different technical capabilities of Workflow Agenda: Architecture Access Control Core Integration High Availability Advanced Integration 2

3 SUNGARD SUMMIT 2007 sungardsummit.com 3 Workflow Architecture Requirements Deployment Architecture Key Components A Community of Learning

4 Multi-Tier Architecture Browser Oracle Application Oracle Server Application Oracle Server Application Server HTTP Server HTTP (Apache) Server HTTP (Apache) Server (Apache) Oracle Containers Oracle for Containers J2EE Oracle for Containers J2EE for J2EE OC4J_Workflow OC4J_Workflow OC4J_Workflow Banner SQL Database Luminis Web Portal Web Service Client Workflow Engine Workflow Engine Server 4

5 Oracle Http Server (OHS) Component Apache Web Server Handles http or https requests coming from Web Browser or Web Service before delegating to OC4J_workflow instance. Mod_oc4j Apache Module for delegating requests to OC4J J2EE container Can delegate to multiple OC4J instances if cluster present Oracle Application Server HTTP Server (Apache) mod_oc4j 5

6 Oracle Container For Java (OC4J) J2EE Container Enterprise Java beans Presentation Logic JSPs / Servlets Http Sessions Workflow Administration Logic Automatic Activity Execution Oracle Application Server Oracle Containers for J2EE OC4J_Workflow 6

7 Workflow Engine Polls for External Events Instantiates new Workflows Routes work items to worklists Workflow Engine Performs workflow and work item life cycle changes 7

8 configuration.xml Core configuration file for Workflow Data Sources Server # of connections Port Settings Deployment names Web Protocols Log Settings Gets stored in the database during deployment Need to update configuration upon any changes and restart any running oc4j and workflow engine instances bin\wftool updatesystem 8

9 Bootstrap Files A bootstrap file contains administrative data that is normally stored in the database (such as users, roles, workflow definitions) but can be exported in a convenient file archive Use bin\export and bin\import to create and push workflow administration data from one system to another Use bin\extractwd for extracting a single workflow definition and its dependent objects from an exported bootstrap file 9

10 SUNGARD SUMMIT 2007 sungardsummit.com 10 Access Control Authentication Authorization A Community of Learning

11 Authentication Workflow supports several authentication options to provide Single Sign On (SSO) with key integrations. Workflow Authentication The users and their passwords are stored internally within the Workflow application. External Authentication Allows an external source to be put in place to validate a user password. Can have both Workflow Authenticated and Externally Authenticated Users. 11

12 External Authentication Types of External Authentication LDAP Authentication This method allows the user name and password to be authenticated by an LDAP server. Required for Luminis integration. Disables ability within Workflow to change passwords and puts the ownership of passwords in the LDAP server. Banner Authentication This method of authentication allows the user name and password to be validated against the Banner database. Desirable when using password expiration with Banner and not using Luminis. Disables ability within Workflow to change passwords and puts the ownership of passwords in the Banner database. 12

13 External Authentication Setup cont d A user account that is to be authenticated via an External Authentication source must have External Authentication enabled with the user account name entered below it. By default, the same workflow logon id is used. Example from User Management page: 13

14 Example: Luminis SSO (4.3) Edit the LDAPMappingAuthenticator properties in configuration.xml to map to the LDAP server host location and LDAP configuration <ExternalAuthentication enabled= true > <ClassName>com.sct.workflow.security.LDAPMappingAuthenticator</ClassName> <Properties> <Property name= java.naming.factory.initial value= com.sun.jndi.ldap.ldapctxfactory /> <Property name= java.naming.provider.url value= ldap://myserver.myschool.edu:389 /> <Property name= parent.dn value= ou=people,o=myschool.edu, o=cp /> <Property name= rdn.attribute value= uid /> </Properties> </ExternalAuthentication> Edit the accounts of all workflow users with Luminis accounts to externally authenticate using Luminis ID s 14

15 Authorization Workflow functionality is guarded by Security Groups and Role Assignments. For an end user to view or manipulate a Workflow object, the user must have an effective Role authorized for the Security Group which grants access. Example: ug_admin_bcc Business Component Access ug_admin_events Business Event Access ug_admin_roles Role Management Access New security groups added in Workflow 4.3 release 15

16 Workflow Organizations As of Workflow 4.3, Role assignments carry a required Organization property that restricts the objects which the user has access to Organizations are defined under Workflow System Administration May map to a department or an Institution (under MIF) Organizations allow us fine grain control to share or hide Workflow objects between different sets of users 16

17 Authorization Example For example, Security group ug_admin_modeler_read grants access to view workflow definitions in the Workflow Modeler In order to have access to open the modeler and view workflow definitions in the Admissions department: Ensure role is authorized for the security group In Security Management, add Role Authorization Coordinator to ug_admin_modeler_read Assign the user to the role at the organization In Role Management, add a user assignment for jsmith to the role Coordinator at the organization Admissions 17

18 Authorization Considerations Use wfroot (super user) sparingly Setting up Organizations Command line tools Give users/roles enough privileges to do their job and no more For Multiple Organizations Decide if business processes will be administered by a central team or by local department leads Establish Business Analysts and Administrators for each Banner MIF institution Business Analysts and Administrators need access at Root in order to modify global objects Business Components Business Events Users and Roles 18

19 SUNGARD SUMMIT 2007 sungardsummit.com 19 Core Integrations Event Posting Data Retrieval via Automated Activities A Community of Learning

20 Workflow Events Events are SIGNALS to workflow to do something Table Updates = Workflow Events Events may carry Information Keys for later primary key lookup Data for evaluating event guard conditions Department or MIF codes Names, addresses, etc 20

21 Recipe for Creating an Event Define the Event in Banner Define the Event in Workflow (Event Wizard) Add a database trigger to fire the event to workflow Gokparm.sendParameterList( name, parameters ) DECLARE v_params gokparm.t_parameterlist; BEGIN... Gokparm.Send_Param_List( 'APPLICATION_SUBMITTED', v_params);... END; 21

22 Event Guards You may not want to fire a workflow on every update to Student Admissions (SARCHKL) Place a guard (if condition) in the trigger starting the event Fine if only a single workflow is mapped to event Define an Event Guard Condition in Workflow Each workflow to event association may have its own guard condition Sufficient Event Parameters Must Be Provided Check a decision early in the workflow to stop the process if necessary. Not efficient but sometimes necessary 22

23 Working with Events Events may be generated manually via the Simulate Event button in Workflow (useful during modeling) Event Failure may arise when required Event Parameters are omitted or inadequate mapping to an effective Workflow Model Failed events may be Replayed Event processing may be temporarily disabled (useful during maintenance) Configuration.xml (enabled flag) <EventDispatcher> <EventProvider name="banner W-Event Provider #1 classname="com.sct.workflow.engine.externalevent.provider.bannertableexternaleventprovider enabled="true"> 23

24 Data Retrieval via Automated Activities Retrieve Additional Information from the Banner DB or any other DB with internal SQL Automated Activities Fetched data is mapped into context parameters and may be used as part of our notification. 24

25 Automated Activities Three kinds of Automated Activities Automated Stored Procedure Automated SQL Query External Automated Activity (ex. Perl Script ) SQL Database Launch Parameters and Parameter Mappings are used to share information between an activity and a workflow 25

26 Creating the Get_Applicant_Details Activity Formulate your query Register the query as a Business Component Associate the Business Component to Activity Definition Step in the Workflow Model Map the Parameters 26

27 SQL Query vs. Stored Procedure SQL Query Queries only Quick to Make Possibly done by Business Analyst Stored Procedure Pre-compiled Can perform Updates Complex operations Requires IT resource 27

28 Data Sources Configuration Wizard is used to set up the initial Banner Automated Activity Data Source You can add additional Data Sources by editing the configuration.xml and tying to a Product Type <DataSources> <DataSource name= MyDatabase"> <Url>jdbc:oracle:thin:@localhost:1521:mydb</Url> <Username>wombat</Username> <Password>appler0cks23</Password> </DataSource> </DataSources> Data Sources may be used to segregate access, refer to other Oracle databases, and even access non-oracle (ex. SQL Server) databases via JDBC-ODBC driver 28

29 Send notifications with built in Activity Works with any SMTP compliant Mail Server Configuration is defined during installation Configwizard Workflow Context Parameters can be used in any of the parts (to, from, subject, body, etc) Server 29

30 Workflow Modeler: Editor 30

31 Alerts Allow alerts to be raised and processes halted when the system has failed to send a notification in behalf of an activity During workflow modeling, set the failure response to either: Ignore (default) simply log error in workflow log file and continue processing to next activity in workflow Warn to publish an information Alert but continue processing to next activity in workflow Stop to publish an alert and suspend the current workflow thread 31

32 Alerts continued 32

33 Alerts continued Note: An is considered successfully sent if all the recipient addresses are well formed and the server accepts the message. It is not a guarantee that all recipients actually received the message sent. 33

34 SUNGARD SUMMIT 2007 sungardsummit.com 34 High Availability and Failover Clustering Concepts Oracle Application Server Clustering Workflow Engine Clustering A Community of Learning

35 Clustering Cluster: a group of servers and other resources that act like a single system and enable high availability and, in some cases, load balancing and parallel processing Allows for Failover Promotes scalability Both the Oracle Application Server and the Workflow Engine may be clustered 35

36 Managed Clusters in Oracle Application Server Set up cluster using Application Server Control (Enterprise Manager) or command line tools In Oracle (R2), must create Farm first Create cluster Create OC4J instance Deploy workflow ear from application server control interface Configure Load Balancer Cluster configuration storage (R2) File-based or Oracle Infrastructure (R3) (Future support with pending 4.4) Dynamic Discovery (multi-cast) or Discovery Server 36

37 Some Load Balancer Options Hardware Load Balancer More reliable in practice Multiple Http Servers avoids yet another single point of failure Route based on IP address, etc. Software Load Balancer (mod_oc4j) Easy to set up / inexpensive Single Http Server (Apache) dispatching to multiple OC4J instances Route based on server load, affinity, weights, etc. 37

38 Hardware Load Balancer Oracle Application Server HTTP Server (Apache) Browser Oracle Containers for J2EE OC4J_Workflow Hardware Load Balancer Oracle Application Server HTTP Server (Apache) Browser Oracle Containers for J2EE OC4J_Workflow 38

39 Software Load Balancer (mod_oc4j) Browser Cluster / Farm Oracle Application Server HTTP Server (Apache) Oracle Application Server Oracle Containers for J2EE OC4J_Workflow Browser mod_oc4j Oracle Application Server Oracle Containers for J2EE OC4J_Workflow 39

40 Additional Oracle App Server Set-up Tips Do not refer to localhost in Workflow s configuration.xml or configwizard Absolutely keep the time clock on all server nodes synchronized to the exact same time of day!!! Each member of a cluster must be on a common OS (R2) Make changes to cluster and configurations files using Application Server Control (Enterprise Manager) as much as possible Keep OPMN in sync Do not turn on state replication 40

41 Workflow Engine Clustering Increases scalability and failover for areas of the system that deal with core workflow instance and event handling Basic Recipe: Add new engine instance in configuration.xml using configwizard Copy engineinstaller.jar from workflow home to target server and directory location Extract contents (jar xf engineinstaller.jar) Install (java jar engine.jar install) Start new engine (bin/startengine) Workflow Engine Workflow Engine 41

42 Multiple Engine Set-up Tips Possible to run multiple engines on single server Edit configuration.xml to have multiple engine configs For example, main and main2 Use different ports for each engine configuration If you change the Workflow datasource properties, you will need to roll out a new engine installer. Any other changes to configuration.xml, simply require a restart (Again) Absolutely keep the time clock on all server nodes synchronized to the exact same time of day!!! No load balancer engine nodes cooperate with each other 42

43 SUNGARD SUMMIT 2007 sungardsummit.com 43 Advanced Integrations Luminis Integration MIF Enabled Banner Custom or Third Party Integration A Community of Learning

44 Luminis Integration Workflow provides three channels for inclusion in your portal home page Worklist channel for work item notification Shortcuts channel to starting workflows manually Alerts channel for process administration Luminis Web Portal Single Sign On for seamless traversing Luminis Look and Feel 44

45 Workflow Luminis Channels Workflow Channel Suite Worklist Shortcuts Alerts 45

46 Integrated Workflow-Luminis Tab Full Product immersion via Tabbed Interface Single Sign On Luminis Look and Feel 46

47 Connecting Workflow and Luminis Enable Luminis Integration and External Authentication configuration.xml Luminis ldap server Deploy the Workflow Channel stub wftool car Copy workflow.car to Luminis cars directory Register the workflow system with Luminis configman i workflowcar.properties Publish the channels using Luminis Channel Admin 47

48 One more thing on setting up Luminis SSO Edit the LDAPMappingAuthenticator properties in configuration.xml to map to the LDAP server host location and LDAP configuration Point to same LDAP server (internal or external) that Luminis uses Define search.user and search.password if not accessing LDAP server anonymously <ExternalAuthentication enabled= true > <ClassName>com.sct.workflow.security.LDAPMappingAuthenticator</ClassName> <Properties> <Property name= java.naming.factory.initial value= com.sun.jndi.ldap.ldapctxfactory /> <Property name= java.naming.provider.url value= ldap://myserver.myschool.edu:389 /> <Property name= search.user value= uid=wfsearcher,o=myschool /> <Property name= search.password value= password /> <Property name= parent.dn value= ou=people,o=myschool.edu, o=cp /> <Property name= rdn.attribute value= uid /> </Properties> </ExternalAuthentication> Most support calls fall under the parent distinguished name or search user authentication to LDAP server not set correctly Configuration properties will change slightly in pending 4.4 to accommodate changes with Luminis IV 48

49 MIF Enabled Banner MIF architecture uses Oracle Virtual Private Database (VPD) to segregate data among institutions in a single database Each institution is given a unique MIF code (or rather VPDI_CODE) Any MIF enabled tables (or modules) will contain an additional VPDI_CODE column. When a MIF enabled table is queried, the architecture applies the current MIF code as an invisible Where clause against the VPDI_CODE column MIF code is set by calling a stored procedure before making the query 49

50 How Workflow Handles MIF Workflow uses Organizations to get same benefits and to communicate with MIF enabled Banner Cost efficiency of managing a single deployment But with the Data separation similar to multiple deployments Organization represents a MIF institution rather than simply a department in this scenario Each Organization may be assigned a MIF code Required when launching or querying an object in Banner that is using MIF Workflow will look up the MIF code for the current workflow instance when communicating with Banner Do not set MIF code If the Banner object is not using MIF 50

51 Setting the MIF Code Assign the MIF Code for each child organization to corresponding VPDI_CODE being used in MIF Banner 51

52 Launching MIF Banner from Workflow Workflow and Banner target must be kept synchronized. If the workflow instance has a MIF code assigned, then the target Banner system must be MIF enabled. Launched Banner session will be locked to the MIF code associated with the workflow instance VPD selector in Banner will be disabled Subsequent launches will reuse existing Banner session if the MIF code is the same. If a Banner work item for a different MIF code is launched, a new Banner session will be opened to service the launch request. 52

53 Querying the MIF Banner Database Two new MIF-aware (automated activity) Technology Types have been added to Workflow 4.3 to handle a SQL query or calling a stored procedure against the Banner database. MIF-aware SQL Query MIF-aware Stored Procedures Define just like regular (non-mif) automated activities. The MIF code will be set automatically in Banner before performing the database operation Workflow Alert if the MIF code is not assigned. Separate Bootstrap MifTypes.xml (provided with Banner Seed Data & Examples) 53

54 Custom or Third Party Integration Workflow has long supported launching of desktop applications, access to external databases, and fire-and-forget launching of server side scripts. For increased custom integration or simply to extend the capabilities of the Workflow product, Workflow now offers a Web Service API for communicating back and forth between workflow. Custom Scripts 54

55 Workflow Web Service A web service allows different machines to communicate over a network using existing web technologies. The Workflow Web Service adheres to the WS-I Basic Profile 1.1 specification which is well supported among both Microsoft and Java development kits. Specifies a Web Services Description Language (WSDL) file for describing operations and messages. Developer Friendly Based on SOAP and XML 55

56 Workflow Web Service Messages The Workflow Web Service provides a set of messages (operations) that can be passed between your custom application and Workflow Event Creation: postexternalevent Data Passing: getworkitemcontext setworkitemcontext State Manipulation completeworkitem releaseworkitem 56

57 workflow.wsdl 57

58 Workflow Bundled Examples Found in \examples\ws Full source code and bootstrap data Transfer Student example is a scenario for posting events from the command line perhaps to call from a batch or shell script or even the windows scheduler. Get Stock Quote example demonstrates using a business component to call out to another web service. In this example, it obtains a delayed stock quote from a public service. The value is returned to workflow via a setworkitemcontext xml message to the workflow web service. 58

59 postexternalevent Request (TCPMON) 59

60 Developing and Deploying Custom Applications When developing/testing new components, write tracer messages to an application log to monitor if the application performed correctly Do not assume environment or path variables are correct the first time Automated Activity Scripts need to be accessible from the same Oracle Application Server that is calling out to them Desktop applications need to be accessible from user s client machine No SSO mechanism for external web interfaces at this time 60

61 Summary Architecture Modern tiered design accessing business objects in an Oracle Application Server Access Control Banner and Luminis SSO Security Group authorization Core Integration Event, SQL, and Oh my! High Availability Clustering for Failover and Scalability Advanced Integration Luminis Set-up MIF Banner Third party integration via Web Services 61

62 Questions & Answers 62

63 Thank You! Michael Brzycki Please complete the online class evaluation form SunGard, the SunGard logo, Banner, Campus Pipeline, Luminis, PowerCAMPUS, Matrix, and Plus are trademarks or registered trademarks of SunGard Data Systems Inc. or its subsidiaries in the U.S. and other countries. Third-party names and marks referenced herein are trademarks or registered trademarks of their respective owners SunGard. All rights reserved. 63

BlackBerry Enterprise Service 10. Version: 10.2. Configuration Guide

BlackBerry Enterprise Service 10. Version: 10.2. Configuration Guide BlackBerry Enterprise Service 10 Version: 10.2 Configuration Guide Published: 2015-02-27 SWD-20150227164548686 Contents 1 Introduction...7 About this guide...8 What is BlackBerry Enterprise Service 10?...9

More information

Oracle9i Application Server: Options for Running Active Server Pages. An Oracle White Paper July 2001

Oracle9i Application Server: Options for Running Active Server Pages. An Oracle White Paper July 2001 Oracle9i Application Server: Options for Running Active Server Pages An Oracle White Paper July 2001 Oracle9i Application Server: Options for Running Active Server Pages PROBLEM SUMMARY...3 INTRODUCTION...3

More information

Product Manual. MDM On Premise Installation Version 8.1. Last Updated: 06/07/15

Product Manual. MDM On Premise Installation Version 8.1. Last Updated: 06/07/15 Product Manual MDM On Premise Installation Version 8.1 Last Updated: 06/07/15 Parallels IP Holdings GmbH Vordergasse 59 8200 Schaffhausen Switzerland Tel: + 41 52 632 0411 Fax: + 41 52 672 2010 www.parallels.com

More information

Luminis to Banner Single Sign-On

Luminis to Banner Single Sign-On SUNGARD SUMMIT 2007 sungardsummit.com 1 Luminis to Banner Single Sign-On Presented by: Rajesh Kumar Les von Holstein SunGard Higher Education Tuesday 8:30 AM March 20, 2007 A Community of Learning Session

More information

High-Availability and Scalability

High-Availability and Scalability SUNGARD SUMMIT 2007 sungardsummit.com 1 High-Availability and Scalability Presented by: Gary Fitzgerald SunGard Higher Education March 21, 2007 A Community of Learning Introduction Session goal: To understand

More information

Netwrix Auditor. Administrator's Guide. Version: 7.1 10/30/2015

Netwrix Auditor. Administrator's Guide. Version: 7.1 10/30/2015 Netwrix Auditor Administrator's Guide Version: 7.1 10/30/2015 Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment from Netwrix Corporation

More information

PowerCAMPUS Portal and Active Directory

PowerCAMPUS Portal and Active Directory SUNGARD SUMMIT 2007 sungardsummit.com 1 PowerCAMPUS Portal and Active Directory Presented by: Chad Sexton PowerCAMPUS Portal Development March 21, 2007 A Community of Learning Overview SunGard Higher Education

More information

fsaatlas Case Management And Communication

fsaatlas Case Management And Communication SUNGARD SUMMIT 2007 sungardsummit.com 1 fsaatlas Case Management And Communication Presented by: Henky Erawan, SunGard Higher Education - fsaatlas March 20 th, 2007 A Community of Learning Session Rules

More information

BusinessObjects Enterprise XI Release 2 Administrator s Guide

BusinessObjects Enterprise XI Release 2 Administrator s Guide BusinessObjects Enterprise XI Release 2 Administrator s Guide BusinessObjects Enterprise XI Release 2 1 Patents Trademarks Copyright Third-party contributors Business Objects owns the following U.S. patents,

More information

Mobile Device Management Version 8. Last updated: 17-10-14

Mobile Device Management Version 8. Last updated: 17-10-14 Mobile Device Management Version 8 Last updated: 17-10-14 Copyright 2013, 2X Ltd. http://www.2x.com E mail: info@2x.com Information in this document is subject to change without notice. Companies names

More information

User Guide. Version R91. English

User Guide. Version R91. English AuthAnvil User Guide Version R91 English August 25, 2015 Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULATOS as updated from

More information

FileMaker Server 14. FileMaker Server Help

FileMaker Server 14. FileMaker Server Help FileMaker Server 14 FileMaker Server Help 2007 2015 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks

More information

PeopleAdmin and Banner HR Interface

PeopleAdmin and Banner HR Interface SUNGARD SUMMIT 2007 sungardsummit.com 1 PeopleAdmin and Banner HR Interface Presented by: Carrie Silliman and Laura Weathersby SunGard Higher Education March 20, 2007 A Community of Learning Session Rules

More information

NTP Software VFM Administration Web Site for EMC Atmos

NTP Software VFM Administration Web Site for EMC Atmos NTP Software VFM Administration Web Site for EMC Atmos User Manual Revision 1.1 - July 2015 This guide details the method for using NTP Software VFM Administration Web Site, from an administrator s perspective.

More information

FileMaker Server 13. FileMaker Server Help

FileMaker Server 13. FileMaker Server Help FileMaker Server 13 FileMaker Server Help 2010-2013 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks of FileMaker,

More information

Web Services Integration Case Study - Housing

Web Services Integration Case Study - Housing SUNGARD SUMMIT 2007 sungardsummit.com 1 Web Services Integration Case Study - Housing Presented by: Tom Chamberlin, Suresh Chellapilla, Richard Moon SunGard Higher Education March 21, 2007 A Community

More information

Setup Guide Access Manager 3.2 SP3

Setup Guide Access Manager 3.2 SP3 Setup Guide Access Manager 3.2 SP3 August 2014 www.netiq.com/documentation Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS OF A LICENSE

More information

Setup Guide for AD FS 3.0 on the Apprenda Platform

Setup Guide for AD FS 3.0 on the Apprenda Platform Setup Guide for AD FS 3.0 on the Apprenda Platform Last Updated for Apprenda 6.0.3 The Apprenda Platform leverages Active Directory Federation Services (AD FS) to support identity federation. AD FS and

More information

ArcGIS for Server Deployment Scenarios An ArcGIS Server s architecture tour

ArcGIS for Server Deployment Scenarios An ArcGIS Server s architecture tour ArcGIS for Server Deployment Scenarios An Arc s architecture tour Ismael Chivite Product Manager at Esri Concepts Single Machine Configurations Basic Basic with Proxy Fail-Over Load Balanced or Siloed

More information

IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3 April 8, 2016. Integration Guide IBM

IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3 April 8, 2016. Integration Guide IBM IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3 April 8, 2016 Integration Guide IBM Note Before using this information and the product it supports, read the information

More information

FileMaker Server 11. FileMaker Server Help

FileMaker Server 11. FileMaker Server Help FileMaker Server 11 FileMaker Server Help 2010 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc. registered

More information

www.novell.com/documentation Jobs Guide Identity Manager 4.0.1 February 10, 2012

www.novell.com/documentation Jobs Guide Identity Manager 4.0.1 February 10, 2012 www.novell.com/documentation Jobs Guide Identity Manager 4.0.1 February 10, 2012 Legal Notices Novell, Inc. makes no representations or warranties with respect to the contents or use of this documentation,

More information

Learn Oracle WebLogic Server 12c Administration For Middleware Administrators

Learn Oracle WebLogic Server 12c Administration For Middleware Administrators Wednesday, November 18,2015 1:15-2:10 pm VT425 Learn Oracle WebLogic Server 12c Administration For Middleware Administrators Raastech, Inc. 2201 Cooperative Way, Suite 600 Herndon, VA 20171 +1-703-884-2223

More information

Enterprise Manager. Version 6.2. Installation Guide

Enterprise Manager. Version 6.2. Installation Guide Enterprise Manager Version 6.2 Installation Guide Enterprise Manager 6.2 Installation Guide Document Number 680-028-014 Revision Date Description A August 2012 Initial release to support version 6.2.1

More information

TIBCO Administrator User s Guide. Software Release 5.7.1 March 2012

TIBCO Administrator User s Guide. Software Release 5.7.1 March 2012 TIBCO Administrator User s Guide Software Release 5.7.1 March 2012 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE IS SOLELY

More information

Oracle EXAM - 1Z0-102. Oracle Weblogic Server 11g: System Administration I. Buy Full Product. http://www.examskey.com/1z0-102.html

Oracle EXAM - 1Z0-102. Oracle Weblogic Server 11g: System Administration I. Buy Full Product. http://www.examskey.com/1z0-102.html Oracle EXAM - 1Z0-102 Oracle Weblogic Server 11g: System Administration I Buy Full Product http://www.examskey.com/1z0-102.html Examskey Oracle 1Z0-102 exam demo product is here for you to test the quality

More information

Enabling Kerberos SSO in IBM Cognos Express on Windows Server 2008

Enabling Kerberos SSO in IBM Cognos Express on Windows Server 2008 Enabling Kerberos SSO in IBM Cognos Express on Windows Server 2008 Nature of Document: Guideline Product(s): IBM Cognos Express Area of Interest: Infrastructure 2 Copyright and Trademarks Licensed Materials

More information

Informatica Corporation Proactive Monitoring for PowerCenter Operations Version 3.0 Release Notes May 2014

Informatica Corporation Proactive Monitoring for PowerCenter Operations Version 3.0 Release Notes May 2014 Contents Informatica Corporation Proactive Monitoring for PowerCenter Operations Version 3.0 Release Notes May 2014 Copyright (c) 2012-2014 Informatica Corporation. All rights reserved. Installation...

More information

TIBCO Spotfire Platform IT Brief

TIBCO Spotfire Platform IT Brief Platform IT Brief This IT brief outlines features of the system: Communication security, load balancing and failover, authentication options, and recommended practices for licenses and access. It primarily

More information

Instant Chime for IBM Sametime For IBM Websphere and IBM DB2 Installation Guide

Instant Chime for IBM Sametime For IBM Websphere and IBM DB2 Installation Guide Instant Chime for IBM Sametime For IBM Websphere and IBM DB2 Installation Guide Fall 2014 Page 1 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license

More information

Sophos Mobile Control Installation guide

Sophos Mobile Control Installation guide Sophos Mobile Control Installation guide Product version: 2.5 Document date: July 2012 Contents 1 Introduction... 3 2 The Sophos Mobile Control server... 4 3 Set up Sophos Mobile Control... 13 4 Running

More information

HP Asset Manager. Software version: 5.20. Integration with software distribution and configuration management tools

HP Asset Manager. Software version: 5.20. Integration with software distribution and configuration management tools HP Asset Manager Software version: 5.20 Integration with software distribution and configuration management tools Document Release Date: 01 October 2009 Software Release Date: October 2009 Legal Notices

More information

Netwrix Auditor for SQL Server

Netwrix Auditor for SQL Server Netwrix Auditor for SQL Server Quick-Start Guide Version: 7.1 10/26/2015 Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment from

More information

Netwrix Auditor for Active Directory

Netwrix Auditor for Active Directory Netwrix Auditor for Active Directory Quick-Start Guide Version: 7.1 10/26/2015 Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment

More information

Netwrix Auditor for Windows Server

Netwrix Auditor for Windows Server Netwrix Auditor for Windows Server Quick-Start Guide Version: 7.0 7/7/2015 Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment from

More information

Installation and Configuration Manual

Installation and Configuration Manual Beacon Office Installation and Configuration Manual Version - 2.5(1) Radianta Inc. September 2008 Radianta, Inc. Beacon Office Page 2 Table of Contents Introduction... 4 What is Beacon Office... 4 How

More information

StreamServe Persuasion SP5 StreamStudio

StreamServe Persuasion SP5 StreamStudio StreamServe Persuasion SP5 StreamStudio Administrator s Guide Rev B StreamServe Persuasion SP5 StreamStudio Administrator s Guide Rev B OPEN TEXT CORPORATION ALL RIGHTS RESERVED United States and other

More information

Troubleshooting BlackBerry Enterprise Service 10 version 10.1.1 726-08745-123. Instructor Manual

Troubleshooting BlackBerry Enterprise Service 10 version 10.1.1 726-08745-123. Instructor Manual Troubleshooting BlackBerry Enterprise Service 10 version 10.1.1 726-08745-123 Instructor Manual Published: 2013-07-02 SWD-20130702091645092 Contents Advance preparation...7 Required materials...7 Topics

More information

FileMaker Server 15. Getting Started Guide

FileMaker Server 15. Getting Started Guide FileMaker Server 15 Getting Started Guide 2007 2016 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks

More information

Release Notes. CTERA Portal 4.0. November 2013. CTERA Portal 4.0 Release Notes 1

Release Notes. CTERA Portal 4.0. November 2013. CTERA Portal 4.0 Release Notes 1 Release Notes CTERA Portal 4.0 November 2013 CTERA Portal 4.0 Release Notes 1 1 Release Contents Copyright 2009-2013 CTERA Networks Ltd. All rights reserved. No part of this document may be reproduced

More information

Brocade Virtual Traffic Manager and Oracle EBS 12.1 Deployment Guide

Brocade Virtual Traffic Manager and Oracle EBS 12.1 Deployment Guide September 2015 Brocade Virtual Traffic Manager and Oracle EBS 12.1 Deployment Guide 2015 Brocade Communications Systems, Inc. All Rights Reserved. ADX, Brocade, Brocade Assurance, the B-wing symbol, DCX,

More information

Single Sign On. Configuration Checklist for Single Sign On CHAPTER

Single Sign On. Configuration Checklist for Single Sign On CHAPTER CHAPTER 39 The single sign on feature allows end users to log into a Windows client machine on a Windows domain, then use certain Cisco Unified Communications Manager applications without signing on again.

More information

Sophos Mobile Control Technical guide

Sophos Mobile Control Technical guide Sophos Mobile Control Technical guide Product version: 2 Document date: December 2011 Contents 1. About Sophos Mobile Control... 3 2. Integration... 4 3. Architecture... 6 4. Workflow... 12 5. Directory

More information

LifeSize Control Installation Guide

LifeSize Control Installation Guide LifeSize Control Installation Guide April 2005 Part Number 132-00001-001, Version 1.0 Copyright Notice Copyright 2005 LifeSize Communications. All rights reserved. LifeSize Communications has made every

More information

Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0

Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0 Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0 Third edition (May 2012). Copyright International Business Machines Corporation 2012. US Government Users Restricted

More information

ActiveVOS Clustering with JBoss

ActiveVOS Clustering with JBoss Clustering with JBoss Technical Note Version 1.2 29 December 2011 2011 Active Endpoints Inc. is a trademark of Active Endpoints, Inc. All other company and product names are the property of their respective

More information

LDAP User Guide PowerSchool Premier 5.1 Student Information System

LDAP User Guide PowerSchool Premier 5.1 Student Information System PowerSchool Premier 5.1 Student Information System Document Properties Copyright Owner Copyright 2007 Pearson Education, Inc. or its affiliates. All rights reserved. This document is the property of Pearson

More information

Deploying System Center 2012 R2 Configuration Manager

Deploying System Center 2012 R2 Configuration Manager Deploying System Center 2012 R2 Configuration Manager This document is for informational purposes only. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED, OR STATUTORY, AS TO THE INFORMATION IN THIS DOCUMENT.

More information

Application Note. ShoreTel 9: Active Directory Integration. Integration checklist. AN-10233 June 2009

Application Note. ShoreTel 9: Active Directory Integration. Integration checklist. AN-10233 June 2009 Application Note AN-10233 June 2009 ShoreTel 9: Active Directory Integration This application note outlines the configuration required to prepare a customer s Microsoft Active Directory environment for

More information

NSi Mobile Installation Guide. Version 6.2

NSi Mobile Installation Guide. Version 6.2 NSi Mobile Installation Guide Version 6.2 Revision History Version Date 1.0 October 2, 2012 2.0 September 18, 2013 2 CONTENTS TABLE OF CONTENTS PREFACE... 5 Purpose of this Document... 5 Version Compatibility...

More information

Architecture and Data Flow Overview. BlackBerry Enterprise Service 10 721-08877-123 Version: 10.2. Quick Reference

Architecture and Data Flow Overview. BlackBerry Enterprise Service 10 721-08877-123 Version: 10.2. Quick Reference Architecture and Data Flow Overview BlackBerry Enterprise Service 10 721-08877-123 Version: Quick Reference Published: 2013-11-28 SWD-20131128130321045 Contents Key components of BlackBerry Enterprise

More information

NETWRIX EVENT LOG MANAGER

NETWRIX EVENT LOG MANAGER NETWRIX EVENT LOG MANAGER QUICK-START GUIDE FOR THE ENTERPRISE EDITION Product Version: 4.0 July/2012. Legal Notice The information in this publication is furnished for information use only, and does not

More information

StreamServe Persuasion SP5 Control Center

StreamServe Persuasion SP5 Control Center StreamServe Persuasion SP5 Control Center User Guide Rev C StreamServe Persuasion SP5 Control Center User Guide Rev C OPEN TEXT CORPORATION ALL RIGHTS RESERVED United States and other international patents

More information

Deltek Costpoint 7.1.1. New Installation Guide for Microsoft SQL Server

Deltek Costpoint 7.1.1. New Installation Guide for Microsoft SQL Server Deltek Costpoint 7.1.1 New Installation Guide for Microsoft SQL Server March 28, 2016 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical

More information

Copyright 2014 Jaspersoft Corporation. All rights reserved. Printed in the U.S.A. Jaspersoft, the Jaspersoft

Copyright 2014 Jaspersoft Corporation. All rights reserved. Printed in the U.S.A. Jaspersoft, the Jaspersoft 5.6 Copyright 2014 Jaspersoft Corporation. All rights reserved. Printed in the U.S.A. Jaspersoft, the Jaspersoft logo, Jaspersoft ireport Designer, JasperReports Library, JasperReports Server, Jaspersoft

More information

EVALUATION ONLY. WA2088 WebSphere Application Server 8.5 Administration on Windows. Student Labs. Web Age Solutions Inc.

EVALUATION ONLY. WA2088 WebSphere Application Server 8.5 Administration on Windows. Student Labs. Web Age Solutions Inc. WA2088 WebSphere Application Server 8.5 Administration on Windows Student Labs Web Age Solutions Inc. Copyright 2013 Web Age Solutions Inc. 1 Table of Contents Directory Paths Used in Labs...3 Lab Notes...4

More information

Contents About the Contract Management Post Installation Administrator's Guide... 5 Viewing and Modifying Contract Management Settings...

Contents About the Contract Management Post Installation Administrator's Guide... 5 Viewing and Modifying Contract Management Settings... Post Installation Guide for Primavera Contract Management 14.1 July 2014 Contents About the Contract Management Post Installation Administrator's Guide... 5 Viewing and Modifying Contract Management Settings...

More information

Oracle Virtual Desktop Infrastructure. VDI Demo (Microsoft Remote Desktop Services) for Version 3.2

Oracle Virtual Desktop Infrastructure. VDI Demo (Microsoft Remote Desktop Services) for Version 3.2 Oracle Virtual Desktop Infrastructure VDI Demo (Microsoft Remote Desktop Services) for Version 2 April 2011 Copyright 2011, Oracle and/or its affiliates. All rights reserved. This software and related

More information

Novell Identity Manager

Novell Identity Manager Password Management Guide AUTHORIZED DOCUMENTATION Novell Identity Manager 3.6.1 June 05, 2009 www.novell.com Identity Manager 3.6.1 Password Management Guide Legal Notices Novell, Inc. makes no representations

More information

docs.hortonworks.com

docs.hortonworks.com docs.hortonworks.com Hortonworks Data Platform: Administering Ambari Copyright 2012-2015 Hortonworks, Inc. Some rights reserved. The Hortonworks Data Platform, powered by Apache Hadoop, is a massively

More information

Tutorial: BlackBerry Object API Application Development. Sybase Unwired Platform 2.2 SP04

Tutorial: BlackBerry Object API Application Development. Sybase Unwired Platform 2.2 SP04 Tutorial: BlackBerry Object API Application Development Sybase Unwired Platform 2.2 SP04 DOCUMENT ID: DC01214-01-0224-01 LAST REVISED: May 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This

More information

http://www.trendmicro.com/download

http://www.trendmicro.com/download Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the software, please review the readme files,

More information

Installation Guide. Tech Excel January 2009

Installation Guide. Tech Excel January 2009 Installation Guide Tech Excel January 2009 Copyright 1998-2009 TechExcel, Inc. All Rights Reserved. TechExcel, Inc., TechExcel, ServiceWise, AssetWise, FormWise, KnowledgeWise, ProjectPlan, DownloadPlus,

More information

Server Deployment and Configuration. Qlik Sense 1.1 Copyright 1993-2015 QlikTech International AB. All rights reserved.

Server Deployment and Configuration. Qlik Sense 1.1 Copyright 1993-2015 QlikTech International AB. All rights reserved. Server Deployment and Configuration Qlik Sense 1.1 Copyright 1993-2015 QlikTech International AB. All rights reserved. Copyright 1993-2015 QlikTech International AB. All rights reserved. Qlik, QlikTech,

More information

Install guide for Websphere 7.0

Install guide for Websphere 7.0 DOCUMENTATION Install guide for Websphere 7.0 Jahia EE v6.6.1.0 Jahia s next-generation, open source CMS stems from a widely acknowledged vision of enterprise application convergence web, document, search,

More information

RSA Authentication Manager 8.1 Virtual Appliance Getting Started

RSA Authentication Manager 8.1 Virtual Appliance Getting Started RSA Authentication Manager 8.1 Virtual Appliance Getting Started Thank you for purchasing RSA Authentication Manager 8.1, the world s leading two-factor authentication solution. This document provides

More information

Configuration Guide. BES12 Cloud

Configuration Guide. BES12 Cloud Configuration Guide BES12 Cloud Published: 2016-04-08 SWD-20160408113328879 Contents About this guide... 6 Getting started... 7 Configuring BES12 for the first time...7 Administrator permissions you need

More information

Application Discovery Manager User s Guide vcenter Application Discovery Manager 6.2.1

Application Discovery Manager User s Guide vcenter Application Discovery Manager 6.2.1 Application Discovery Manager User s Guide vcenter Application Discovery Manager 6.2.1 This document supports the version of each product listed and supports all subsequent versions until the document

More information

Deploying Cisco Unified Contact Center Express Volume 1

Deploying Cisco Unified Contact Center Express Volume 1 Deploying Cisco Unified Contact Center Express Volume 1 Course Introduction Learner Skills and Knowledge Course Goal and Course Flow Additional References Your Training Curriculum General Administration

More information

Okta/Dropbox Active Directory Integration Guide

Okta/Dropbox Active Directory Integration Guide Okta/Dropbox Active Directory Integration Guide Okta Inc. 301 Brannan Street, 3rd Floor San Francisco CA, 94107 info@okta.com 1-888- 722-7871 1 Table of Contents 1 Okta Directory Integration Edition for

More information

TIBCO Silver Fabric Continuity User s Guide

TIBCO Silver Fabric Continuity User s Guide TIBCO Silver Fabric Continuity User s Guide Software Release 1.0 November 2014 Two-Second Advantage Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED

More information

Sophos Mobile Control Installation guide. Product version: 3.5

Sophos Mobile Control Installation guide. Product version: 3.5 Sophos Mobile Control Installation guide Product version: 3.5 Document date: July 2013 Contents 1 Introduction...3 2 The Sophos Mobile Control server...4 3 Set up Sophos Mobile Control...10 4 External

More information

Installing and Configuring DB2 10, WebSphere Application Server v8 & Maximo Asset Management

Installing and Configuring DB2 10, WebSphere Application Server v8 & Maximo Asset Management IBM Tivoli Software Maximo Asset Management Installing and Configuring DB2 10, WebSphere Application Server v8 & Maximo Asset Management Document version 1.0 Rick McGovern Staff Software Engineer IBM Maximo

More information

Office 365 deployment checklists

Office 365 deployment checklists Chapter 128 Office 365 deployment checklists This document provides some checklists to help you make sure that you install and configure your Office 365 deployment correctly and with a minimum of issues.

More information

How To Use Gfi Mailarchiver On A Pc Or Macbook With Gfi Email From A Windows 7.5 (Windows 7) On A Microsoft Mail Server On A Gfi Server On An Ipod Or Gfi.Org (

How To Use Gfi Mailarchiver On A Pc Or Macbook With Gfi Email From A Windows 7.5 (Windows 7) On A Microsoft Mail Server On A Gfi Server On An Ipod Or Gfi.Org ( GFI MailArchiver for Exchange 4 Manual By GFI Software http://www.gfi.com Email: info@gfi.com Information in this document is subject to change without notice. Companies, names, and data used in examples

More information

Dell SupportAssist Version 2.0 for Dell OpenManage Essentials Quick Start Guide

Dell SupportAssist Version 2.0 for Dell OpenManage Essentials Quick Start Guide Dell SupportAssist Version 2.0 for Dell OpenManage Essentials Quick Start Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your computer.

More information

NetBeans IDE Field Guide

NetBeans IDE Field Guide NetBeans IDE Field Guide Copyright 2005 Sun Microsystems, Inc. All rights reserved. Table of Contents Introduction to J2EE Development in NetBeans IDE...1 Configuring the IDE for J2EE Development...2 Getting

More information

E-mail Listeners. E-mail Formats. Free Form. Formatted

E-mail Listeners. E-mail Formats. Free Form. Formatted E-mail Listeners 6 E-mail Formats You use the E-mail Listeners application to receive and process Service Requests and other types of tickets through e-mail in the form of e-mail messages. Using E- mail

More information

IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015. Integration Guide IBM

IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015. Integration Guide IBM IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015 Integration Guide IBM Note Before using this information and the product it supports, read the information in Notices on page 93.

More information

BlackBerry Enterprise Server for Microsoft Exchange Version: 5.0 Service Pack: 2. Feature and Technical Overview

BlackBerry Enterprise Server for Microsoft Exchange Version: 5.0 Service Pack: 2. Feature and Technical Overview BlackBerry Enterprise Server for Microsoft Exchange Version: 5.0 Service Pack: 2 Feature and Technical Overview Published: 2010-06-16 SWDT305802-1108946-0615123042-001 Contents 1 Overview: BlackBerry Enterprise

More information

Management Center. Installation and Upgrade Guide. Version 8 FR4

Management Center. Installation and Upgrade Guide. Version 8 FR4 Management Center Installation and Upgrade Guide Version 8 FR4 APPSENSE MANAGEMENT CENTER INSTALLATION AND UPGRADE GUIDE ii AppSense Limited, 2012 All rights reserved. part of this document may be produced

More information

Kony MobileFabric. Sync Windows Installation Manual - WebSphere. On-Premises. Release 6.5. Document Relevance and Accuracy

Kony MobileFabric. Sync Windows Installation Manual - WebSphere. On-Premises. Release 6.5. Document Relevance and Accuracy Kony MobileFabric Sync Windows Installation Manual - WebSphere On-Premises Release 6.5 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and

More information

Only LDAP-synchronized users can access SAML SSO-enabled web applications. Local end users and applications users cannot access them.

Only LDAP-synchronized users can access SAML SSO-enabled web applications. Local end users and applications users cannot access them. This chapter provides information about the Security Assertion Markup Language (SAML) Single Sign-On feature, which allows administrative users to access certain Cisco Unified Communications Manager and

More information

FileMaker Server 13. Getting Started Guide

FileMaker Server 13. Getting Started Guide FileMaker Server 13 Getting Started Guide 2007 2013 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks of FileMaker,

More information

Ensure that your environment meets the requirements. Provision the OpenAM server in Active Directory, then generate keytab files.

Ensure that your environment meets the requirements. Provision the OpenAM server in Active Directory, then generate keytab files. This chapter provides information about the feature which allows end users to log into a Windows client machine on a Windows domain, then use certain Cisco Unified Communications Manager applications without

More information

Installation and configuration of Real-Time Monitoring Tool (RTMT)

Installation and configuration of Real-Time Monitoring Tool (RTMT) Installation and configuration of Real-Time Monitoring Tool (RTMT) How to install and upgrade RTMT, page 1 Services, servlets, and service parameters on server, page 5 Navigation of RTMT, page 6 Nonconfigurable

More information

Installing CaseMap Server User Guide

Installing CaseMap Server User Guide Installing CaseMap Server User Guide CaseMap Server, Version 1.8 System Requirements Installing CaseMap Server Installing the CaseMap Admin Console Installing the CaseMap SQL Import Utility Testing Installation

More information

vcenter Chargeback User s Guide vcenter Chargeback 1.0 EN-000186-00

vcenter Chargeback User s Guide vcenter Chargeback 1.0 EN-000186-00 vcenter Chargeback 1.0 EN-000186-00 You can find the most up-to-date technical documentation on the VMware Web site at: http://www.vmware.com/support/ The VMware Web site also provides the latest product

More information

How To Login To The Mft Internet Server (Mft) On A Pc Or Macbook Or Macintosh (Macintosh) With A Password Protected (Macbook) Or Ipad (Macro) (For Macintosh) (Macros

How To Login To The Mft Internet Server (Mft) On A Pc Or Macbook Or Macintosh (Macintosh) With A Password Protected (Macbook) Or Ipad (Macro) (For Macintosh) (Macros TIBCO MFT Internet Server User Guide Software Release 7.2.4 October 2014 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE

More information

Enabling single sign-on for Cognos 8/10 with Active Directory

Enabling single sign-on for Cognos 8/10 with Active Directory Enabling single sign-on for Cognos 8/10 with Active Directory Overview QueryVision Note: Overview This document pulls together information from a number of QueryVision and IBM/Cognos material that are

More information

Active-Active ImageNow Server

Active-Active ImageNow Server Active-Active ImageNow Server Getting Started Guide ImageNow Version: 6.7. x Written by: Product Documentation, R&D Date: March 2014 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow,

More information

Single Sign On. Configuration Checklist for Single Sign On CHAPTER

Single Sign On. Configuration Checklist for Single Sign On CHAPTER CHAPTER 39 The single sign on feature allows end users to log into a Windows client machine on a Windows domain, then use certain Cisco Unified Communications Manager applications without signing on again.

More information

DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER

DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER White Paper DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER Abstract This white paper describes the process of deploying EMC Documentum Business Activity

More information

OnCommand Performance Manager 1.1

OnCommand Performance Manager 1.1 OnCommand Performance Manager 1.1 Installation and Setup Guide For Red Hat Enterprise Linux NetApp, Inc. 495 East Java Drive Sunnyvale, CA 94089 U.S. Telephone: +1 (408) 822-6000 Fax: +1 (408) 822-4501

More information

WhatsUp Gold v16.2 Installation and Configuration Guide

WhatsUp Gold v16.2 Installation and Configuration Guide WhatsUp Gold v16.2 Installation and Configuration Guide Contents Installing and Configuring Ipswitch WhatsUp Gold v16.2 using WhatsUp Setup Installing WhatsUp Gold using WhatsUp Setup... 1 Security guidelines

More information

FileMaker Server 10 Help

FileMaker Server 10 Help FileMaker Server 10 Help 2007-2009 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker, the file folder logo, Bento and the Bento logo

More information

Sophos Mobile Control Installation guide. Product version: 3

Sophos Mobile Control Installation guide. Product version: 3 Sophos Mobile Control Installation guide Product version: 3 Document date: January 2013 Contents 1 Introduction...3 2 The Sophos Mobile Control server...4 3 Set up Sophos Mobile Control...16 4 External

More information

Embarcadero Performance Center 2.7 Installation Guide

Embarcadero Performance Center 2.7 Installation Guide Embarcadero Performance Center 2.7 Installation Guide Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A.

More information

Copyright 2013, 3CX Ltd. http://www.3cx.com E-mail: info@3cx.com

Copyright 2013, 3CX Ltd. http://www.3cx.com E-mail: info@3cx.com Manual Copyright 2013, 3CX Ltd. http://www.3cx.com E-mail: info@3cx.com Information in this document is subject to change without notice. Companies names and data used in examples herein are fictitious

More information

OTM Performance OTM Users Conference 2015. Jim Mooney Vice President, Product Development August 11, 2015

OTM Performance OTM Users Conference 2015. Jim Mooney Vice President, Product Development August 11, 2015 OTM Performance OTM Users Conference 2015 Jim Mooney Vice President, Product Development August 11, 2015 1 Program Agenda 1 2 3 4 5 Scalability Refresher General Performance Tips Targeted Tips by Product

More information