Sitekit CMS Technical Guide. Authentication Methods. Ian Stewart, Sitekit Solutions Ltd 19/01/2017

Size: px
Start display at page:

Download "Sitekit CMS Technical Guide. Authentication Methods. Ian Stewart, Sitekit Solutions Ltd 19/01/2017"

Transcription

1 Sitekit CMS Technical Guide Authentication Methods Ian Stewart, Sitekit Solutions Ltd 19/01/2017

2 Address Company Department Author Document Type Document Title Version Number 1.4 Approved Version 1.0 Approved By Document Status Operations Centre Bloxham Mill Barford Road Banbury Oxfordshire 0X15 4FF Sitekit Solutions Ltd Development Ian Stewart Manual Authentication Methods Shaun Wilkinson Draft Created 16/06/2006 Last Modified 19/01/2017 Next Review Date Customer Code Job Number Document ID Publisher Rights [Next Review Date] SSS [Job] 2017 Sitekit Solutions Ltd This document is uncontrolled when printed Development Centre Sitekit House Broom Place Portree Isle of Skye IV51 9HL Change Log Version & date By Changes 26/5/2016 IS Substantial update of WIA 18/1/2016 IS Caveat on WIA in section 4.3 in wake of F & G

3 Table of Contents 1.0 Introduction Typical uses Who is this document for? Security Implementing Authentication Prerequisites Example Service Response required Implementing LDAP Authentication Prerequisites Download the LDAP Authentication web service Installing the LDAP Authentication web service Service Response required Configuring a Sitekit CMS site to use LDAP Authentication Sitekit Variables Configuration Notes Windows Integrated Authentication (WIA) Introduction Prerequisites Configuration Testing WIA Defining Trust Application of rights derived from WIA Considerations when using WIA Code sample Further information Disclaimer Copyright... 18

4 1.0 Introduction Sitekit CMS offers the ability to plug in additional authentication providers, enabling users other than Sitekit CMS Users to be authenticated and logged into the Sitekit Control Panel (or an extranet) as a member of a Sitekit CMS User Group. Additional authentication providers are implemented as web services. Sitekit CMS supports any 3 rd party authentication source as long as the right receptor for Sitekit to authenticate against is built. The most common of these is LDAP so it is LDAP that is cited in the examples A common requirement of many customers is for large numbers of their staff to be able to log into Sitekit CMS without them having to create large numbers of corresponding Sitekit CMS Users. To meet this requirement, Sitekit Solutions Ltd has made available an LDAP Authentication web service which can be downloaded and installed on customers servers. The LDAP Authentication web service uses LDAP (Lightweight Directory Access Protocol) to query a customer s Active Directory in order to authenticate a user. When a customer s Sitekit CMS site is configured to use the LDAP Authentication web service, users can log into Sitekit CMS by providing their Windows username and password. Differential levels of access and permission sets can be applied by associating different Sitekit CMS User Groups with corresponding Windows User Groups. This document describes the steps involved in setting up and configuring such authentication. This document comprises part of the Sitekit CMS Extensibility Framework. 1.1 Typical uses Existing system login Sitekit can be authenticated against any 3 rd party receptor section2 LDAP Authentication (Third Party Authentication) The LDAP Authentication web service is primarily used to enable users of a customer organisation to log into Sitekit CMS protected content or Sitekit CMS Admin using their Windows username and password. Login is NOT automatic. Section 3 Windows Integrated Authentication (WIA) Windows Integrated Authentication allows active directory users access to Sitekit CMS content automatically, based on the users current logged on credentials. There is no credential challenge to the user. However, the logged on credentials will not work with Sitekit Admin therefore standard Sitekit based usernames and password must be used for site administration. Section Who is this document for? This document is aimed at technical integration partners who are interested in integrating Sitekit CMS with existing corporate environments. It can also apply to corporate IT staff as it explains how and why the LDAP authentication API is set up this way. Such partners and staff should be experienced in web development as they will need to be familiar with the architectural concepts of web services (which can be written in any language though the examples here are in VB.net) and also familiar with Active Directory syntax and LDAP. 1.3 Security We advise that the authenticating web server should be exposed by SSL and if possible the IP's that can call the server should be restricted to the IP's of the authenticating Sitekit CMS server. Publisher Rights: Sitekit Ltd 2012 This document is uncontrolled when printed Page 4 of 19

5 2.0 Implementing Authentication 2.1 Prerequisites The Sitekit Authentication system requires: An authentication service exposed by a URL (can be webservice) POST is used so the passwords are not logged in the server log on the authenticating web server.) 2.2 Example An example could be the following dummy web service If there are any other parameters hard coded in the POST data collection. then this other parameters will also be added to the This web service itself could be performing and LDAP query or could be authenticating against any 3 rd party database or system. 2.3 Service Response required Sitekit needs to receive the following <authenticated>true</authenticated> False or any other malformed string will not authenticate 3.0 Implementing LDAP Authentication 3.1 Prerequisites The Sitekit LDAP Authentication Web Service requires: Microsoft.Net Framework (v1.1 or 2.0) Microsoft Internet Information Services (IIS) v5 or higher Active Directory Domain Controller 3.2 Download the LDAP Authentication web service The Sitekit LDAP Authentication Web Service is available for download at The download is a single zip file, LDAPAuthv4.zip, which contains: LDAPAuthV4.asmx - a web service file (un-compiled code) web.config - a configuration file Publisher Rights: Sitekit Ltd 2012 This document is uncontrolled when printed Page 5 of 19

6 The class library is a compiled part of the Microsoft.Net Framework, for use with active directories. The other 2 files are in plain text and can be viewed and edited. The source code for the web service (LDAPAuthv4.asmx) is provided so that it may be customised if desired. 3.3 Installing the LDAP Authentication web service To install the LDAP Authentication web service on your web server, follow these steps: 1. Unzip the files & folders in LDAPAuthentication.zip to the web root of IIS, e.g. c:\inetpub\wwwroot 2. Check there are 3 files present as follows: i) c:\inetpub\wwwroot\ldapauthentication\ldapauthv4.asmx ii) c:\inetpub\wwwroot\ldapauthentication\web.config iii) c:\inetpub\wwwroot\ldapauthentication\bin\system.directoryservices.dll 3. Open IIS Manager & navigate to "Web Sites/Default Web Site" 4. Right click on the LDAPAuthentication folder and select "Properties" 5. In the "Directory" tab, click the "Create" button next to the "Application Name" text box 6. Click "OK" 7. Open the "web.config" file in a text editor 8. Edit the 'value' attribute of the element beginning '<add key="ldapserver"' to hold the address of your LDAP server e.g. <add key="ldapserver" value="ldap://myldapserver" /> 9. Edit the 'value' attribute of the element beginning ' <add key="domainprefix"' to hold the domain name associated with the LDAP server set in step 8 e.g. <add key="domainprefix" value="mydomain" /> 10. Check that the LDAP Authentication Web Service has been installed successfully, by right clicking LDAPAuth.asmx in the right-hand pane, and select "Browse". The LDAPAuth web service introduction page should appear. Publisher Rights: Sitekit Ltd 2012 This document is uncontrolled when printed Page 6 of 19

7 The first operation, GetActiveDirectoryEntry, accepts the following parameters IsAuthenticated - authenticates a user for a group in Active Directory Parameter UserName Password group Comments The username of the user to be authenticated The password of the user to be authenticated The name of a Windows User Group (defined in Active Directory) Note: If no group name is specified then the built in domain users group is assumed. 1. Click the "GetActiveDirectoryEntry" link and enter a Windows username, password & group and click the "Invoke" button to test the web service. An XML document should be displayed, containing "<authenticated>true</authenticated>" if correct login details were entered. 3.4 Service Response required As before Sitekit needs to receive the following <authenticated>true</authenticated> False or any other malformed string will not authenticate 3.5 Configuring a Sitekit CMS site to use LDAP Authentication Once the LDAP web service has been installed, Sitekit CMS can be configured to use it. This involves associating the LDAP Authentication web service with a Sitekit CMS User Group and a Windows User Group. 1. Login into Sitekit CMS Control Panel 2. Navigate to CMS->User Groups 3. Click "Add a New User Group" or select an existing user group and click "Edit Admin Rights" 4. Edit the "Group Name" and admin rights as appropriate 5. In the "Web Service Authentication URL" field below, enter the address of the LDAP Authentication web service, making sure to include the name of the Windows user group to which this Sitekit CMS user group corresponds, as the value of the "group" parameter, e.g.: Publisher Rights: Sitekit Ltd 2012 This document is uncontrolled when printed Page 7 of 19

8 6. Save the group details 7. Check that it works by logging out and logging into Sitekit CMS admin using a Windows username & password 8. If you wish users in different Windows User Groups to be able to log in with different sets of permissions, configure a separate Sitekit CMS User Group for each corresponding Windows Group. 9. To set the order in which groups are checked to authenticate the user, use the Order User Groups for Alternate Authentication part of the User Group tab in the Control Panel, e.g.: 3.6 Sitekit Variables With the LDAP Authentication web service a number of Sitekit variables can be used. These pull their contents from the user details stored in active directory. They can be useful for personalizing pages where LDAP authentication is in use. Some example data is shown below: <userparam name="fullname">martyn Bradshaw</userparam> <userparam name="telephone"> </userparam> <userparam name="fax"> </userparam> <userparam name=" ">martyn.bradshaw@sitekit.net</ userparam> <userparam name="depart ment ">Sysadmin</userparam> <userparam name="job">systems Manager, MCSE</userparam> In addition it is possible to also map up to 6 additional custom fields to other active directory attributes. For a full list of Sitekit variables please see the Proprietary Sitekit CMS Syntax document. 3.7 Configuration Notes Sitekit CMS doesn't currently support multiple groups for users, so a user can only be logged in as a member of a single Sitekit CMS user group. Therefore, if there are several Sitekit CMS user groups set up, each configured for LDAP authentication with a different Windows user group, the user will be logged in as a member of the first Sitekit CMS user group whose LDAP authentication service returns true. (This only affects users who belong to more than one Windows user group). Extranet login pages feature a Forgot your username/password link. This feature only applies to users that are registered on the Sitekit CMS admin system and will not work when using LDAP authentication. It is possible to add multiple LDAP servers and domains to the LDAP authentication web.config file. In a well connected domain forest this allows the web service to authenticate users in other trusted domains. An example is given below: Publisher Rights: Sitekit Ltd 2012 This document is uncontrolled when printed Page 8 of 19

9 <add key="ldapservers" value="ldap://ldapserver1, LDAP://ldapserver2" /> <add key="domainprefix" value="domain1, domain2" /> The order of the values in the keys above is important. Ldapserver1 is associated with domain1 only, ldapserver2 is associated with domain2 only etc. Publisher Rights: Sitekit Ltd 2012 This document is uncontrolled when printed Page 9 of 19

10 4.0 Windows Integrated Authentication (WIA) 4.1 Introduction The requirement is to enable users logged in to a Windows active directory domain to automatically login to deployed restricted front-end pages on a Sitekit CMS-based Intranet. Back end users (site editors etc) will login using the normal Sitekit CMS login interface. Windows Integrated Authentication (WIA) will not work for Sitekit Admin logins. The feature will work by associating Sitekit CMS User Groups with Windows User Groups, so that an authenticated Windows user is automatically recognised as a member of the associated Sitekit CMS User Group, based on their Windows user credentials. The Windows user will then gain the access rights of that Sitekit User Group, and will be able to access those pages that are accessible to that Sitekit User Group. Note: this feature is only available on deployed Sitekit CMS servers, it is not be available on hosted accounts. WIA is implemented in two different ways in the CMS, the logic is described in a later section a) TryUnchallengedWindowsAuthentication this provides unchallenged WIA access in conjunction with a looks up of the relevant users directory entry via LDAP it then maps the windows user to a local sitekit user b) TryWindowsAuthentication this provides unchallenged WIA in conjunction with a single associated group association Approach 1 is richer approach with more information available on the relevant intranet about the end user. However it depends on reliable local access to the relevant AD OU via an LDAP query. Often it s possible to authenticate via remote domain by mapping users into universal AD groups and setting up one way or two way trust relationships. Such complication will prevent the mapping of filed via LDAP but may still support the simple second option. The first option also supports mapping of users to multiple sitekit groups, the second doesn t The configuration covers both options 4.2 Prerequisites Windows Integrated Authentication requires: Active Directory based network only Web Server must be part of the active directory domain or have trust relationship with the relevant AD domain All users requiring access to the system must be a member of 1 common active directory group (such as domain users) 4.3 Configuration 1. Ensure Windows Authentication is installed and enabled in IIS. For IIS 7 Windows Authentication is not installed by default and so must be added via Server Manager / Add Role Services. Once it is installed it is disabled by default, therefore you must ensure Windows Authentication is enabled for the site in IIS 7 / Authentication settings. (see caveat in 4.3 item 2) Publisher Rights: Sitekit Ltd 2012 This document is uncontrolled when printed Page 10 of 19

11 2. You set up the web.config as shown below approximately. The allow roles is needed if using 8b but not for 8a 3. You add the relevant LDAPServers to the keys here (the domainprefix setting is no longer used). The key will accept comma separated values. This is needed for 8a but not 8b 4. Add the following location blocks to web.config, normally between the CodeSnippetParserSetting and system.net sections. (see caveat in 4.3 item 2) <location path="rss.aspx"> <system.web> <authorization> <allow users="?"/> </authorization> </system.web> </location> <location path="ws"> <system.web> <authorization> <allow users="?"/> </authorization> </system.web> </location> <location path="admin/ws"> <system.web> <authorization> <allow users="?"/> </authorization> </system.web> </location> <location path="directory"> <system.web> <authorization> Publisher Rights: Sitekit Ltd 2012 This document is uncontrolled when printed Page 11 of 19

12 <allow users="?"/> </authorization> </system.web> </location> Note: Sitekit may reference back to these locations so anonymous access must be allowed. This will ensure correct functionality of data islands and feeds. See WIA considerations below 5. In Sitekit site setting you check this box 6. You map any stuff in the AD fields below that setting (8a only) 7. The relevant site needs added to the intranet security zone in IE.(see trust section below) 8. Sitekit does the following: a. Looks for the checkbox being ticked in item 4 if it is it uses method TryUnchallengedWindowsAuthentication and takes the windows user and goes to the ldap server in 2 and maps the fields listed in 5 to create a local sitekit user, authenticates them and then accesses the site as that user. In this mode every windows user will create a mapped sitekit user so the relevant sitekit group that matches the identically named AD group will gradually fill up. You d need to create the matching group name beforehand. The test section will then look like this Publisher Rights: Sitekit Ltd 2012 This document is uncontrolled when printed Page 12 of 19

13 b. If the checkbox isn t ticked then it checks that you re not on a sitekit installation ie not *.sitekit.net, if you re not then it authenticates using the windows user via method TryWindowsAuthentication and then allocates the rights based on this box in the relevant group matching the roles name in the web.config as shown in item 1 With the tie in to the group at the bottom of the group admin c. If the latter method is used then there s no fields mapped just a group identified, the test will then show only the windows user and the relevant group id as shown below. Finally, If there s no joy in the windows authentication sequence above the code checks for authenticated users then it has a stab at logging in via IP 4.4 Testing WIA When you re testing and checking this you bear in mind it never works on the machine on which IIS is running. You need to test it on a machine on the same domain that is not the IIS server. Put in a test page with magic words to Publisher Rights: Sitekit Ltd 2012 This document is uncontrolled when printed Page 13 of 19

14 see if stuff states operating. The following is useful to paste in and is the code snippet that the example outputs above use. <h1>welcome to our website</h1> <hr/> Auth method: :::authentication_method::: <br/> Windows user: :::windowsuser::: <br/> Sitekit user: :::username::: <br/> PeopleID: :::peopleid::: <br/> Name: :::firstname::: :::lastname::: <br/> Group: :::usergroupid::: <hr/> 4.5 Defining Trust Ensure the deployed Sitekit CMS site is using a domain which is trusted. An intranet is normally trusted by default using a group policy. If a policy is not set, each user will require to: 1. Navigate to Tools->Internet Options->Security in Internet Explorer 2. Click the Trusted Sites icon and click the Sites button 3. Type in the domain of the deployed Sitekit CMS site and click Add 4. Click Close and OK to save & exit You must ensure front end and admin domains are trusted otherwise repeated windows login prompts will be shown. It may be possible to set up some of these aspect on a corporate network via policies. When WIA is turned on any domains used which should not throw a login box must be set as either trusted sites or preferably, local intranet sites. On big networks this is normally handled by group policy, so we need to ask the customer to make any changes we need. Only once that is done will credentials be handed over to IIS from the browser automatically as different pages are loaded in the CMS. 4.6 Application of rights derived from WIA This is as described on the help site and provided as an example of restricting access rights to only users in a single group 1. Create the relevant asset class Under the configure tab and asset classes add a new asset class in case title WIAtest Add the relevant group to the new asset class via clicking on the asset class name after creation In this example all other user have had their read rights removed and the member group has read rights. The Publisher Rights: Sitekit Ltd 2012 This document is uncontrolled when printed Page 14 of 19

15 member group is the one set up in section 8b. The member groupid is the one that is detected in the test code using the :::usergroupid::: magic word 2. Apply the asset class to the asset branch of interest via right clicking on the branch and then selecting folder properties. The new asset class is then chose and applied recursively to the assets underneath. This could be done at root level to apply to all or alternatively the permissions below could be applied to the default class at root level. The overall effect is that any windows authenticated user will have unchallenged access to the chose page that the asset class is applied to (in this case a single branch. All other user will get a CMS login prompt Publisher Rights: Sitekit Ltd 2012 This document is uncontrolled when printed Page 15 of 19

16 4.7 Considerations when using WIA 1. Sitekit variables that link to active directory under third party authentication (see section 3.6) will not work with Windows Integrated Authentication. This includes the :::FULLNAME::: variable which can be of use when personalising intranet home pages. 2. When Windows Integrated Authentication is used there may be problems with data islands that consume files located in a site file library. Currently it is best to host these kind of consumed files at xsl.sitekit.net or in a physical folder within the Sitekit CMS application folder. In the past when issues have occurred with this the syptomes are that the page itself loads OK but the data island 401s and causes an error. This is true even when the data island in question is one of the expection outlined in item 4. If this occurs then a solution is to change all the exception in 4 from? to * (eg accepting for anonymous users not just authenticated users). At the same time anonymous authentication shoulds also be enabled (item 1) 3. Calls to items that are grabbed for later use such as MHT files for new broadcast via the channel er and PDF file creation, web services and RSS feeds can be broken by WIA as the relevant code cannot pass over the authentication details. These may be added as exceptions via the web.config edit seen in item 4 The Channel er requests newsletter pages via http and thus needs authentication. This means that the channel er need run as a scheduled task under a user that has access to the relevant pages (ie not a local server admin user). 4. The fields are not re-refreshed over again until the session time elapses. So there's no real-time update from changes to the AD 5. Pages don t index easily for search getting pages to be indexed is more difficult. Pages need created then visited by an authenticated user with read access for that page to be added to indexable content. In addition the visibility needs to be correct and the pages asset class needs to not have a universal read and it needs to be an extranet (all other users barred). Generally its harder to get pages to index in this environment which cause issues in initial population before there's any 'natural visitors'. 6. Multiple AD domains - it's relatively common in AD system to have the same user in more than one domain. This will produce duplicate Sitekit users in the CMS 7. Edit profile and Logout as nav menu item will not be shown to users logged in this way. 4.8 Code sample This is the code that defines the sequence above. Starts with the LDAP windows auth version and then if that s not set tries standard WIA without and LDAP field mapping. If both those are not used it then checks the IP range for access. If allowautoldap Then TryUnchallengedWindowsAuthentication(siteID, windowsuser) ElseIf IsDeployedServer() Then Publisher Rights: Sitekit Ltd 2012 This document is uncontrolled when printed Page 16 of 19

17 End If TryWindowsAuthentication(siteID, windowsuser) If Not _UserAuthentic Then End If TryAutoIPLogin(siteID, IP) IsDeployedServer definition is below Dim regexp As String = "secure([0-9][0-9]*)*\.(dev\. beta\. fix\.)?[0-9]?sitekit\.net" Publisher Rights: Sitekit Ltd 2012 This document is uncontrolled when printed Page 17 of 19

18 5.0 Further information This guide provides an overview of the capabilities of Sitekit CMS API and illustrated how it can be used to transform your website. Sitekit CMS has a range of technical guides detailing the latest features of Sitekit CMS and web management technology. These are available on request and also appear on the website. Sitekit corporate site. Sitekit maintains a knowledge base of articles organised by category in the Sitekit CMS support system. This would also be where registered users can submit support tickets for changes requests or report bugs. An interface to this system is one of the CMS options but you can also access it from the URL below. - Sitekit knowledge base. The Sitekit CMS online help system provides a useful source of information for how specific aspects of the administration system work. - Sitekit help. If you have any questions on functionality or prices please do not hesitate to contact us and we can arrange a visit. England Scotland Bloxham Mill, Sitekit House, Barford Road, Broom Place, Banbury, Portree, Oxfordshire, Isle of Skye, UK UK OX15 4FF IV51 9HL Tel: Tel: Fax: Fax: sales@sitekit.net support@sitekit.net 5.1 Disclaimer Information in this document is subject to change without notice. Sitekit Solutions Limited reserves the right to revise and improve its products as it sees fit. This document describes the state of this product at the time of its publication, and may not reflect the product at all times in the future. The use of this documentation is governed by the terms of a oftware licence agreement made between Sitekit Limited and the Licensee. The liability of Sitekit Limited in respect of the documentation and the licensed programs referred to, are set out in that software licence agreement. Sitekit Solutions Limited accepts no liability whatsoever for any use of the documentation or the licensed programs by any person other than a permitted user under the software licence agreement. 5.2 Copyright All rights reserved. All copyright and other rights in this manual and the licensed programs described in this manual are the property of Sitekit Limited. No part of this manual may be copied, reproduced, translated or reduced to any electronic medium or machine readable form without the written consent of Sitekit Limited. Sitekit Ltd Publisher Rights: Sitekit Ltd 2012 This document is uncontrolled when printed Page 18 of 19

19 Publisher Rights: Sitekit Ltd 2012 This document is uncontrolled when printed Page 19 of 19

Health Professional & ADFS Integration Guide

Health Professional & ADFS Integration Guide Health Professional & ADFS Integration Guide Martyn Bradshaw, Sitekit Ltd 01/10/2014 09:48:23 Registered Office Company Department Author Document Type Document Title Version Number 1.1 Approved By Sitekit

More information

UC for Enterprise (UCE) NEC Centralized Authentication Service (NEC CAS)

UC for Enterprise (UCE) NEC Centralized Authentication Service (NEC CAS) UC for Enterprise (UCE) NEC Centralized Authentication Service (NEC CAS) Installation Guide NEC NEC Corporation October 2010 NDA-30362, Revision 15 Liability Disclaimer NEC Corporation reserves the right

More information

Datasheet - Sitekit CMS Secure Forms

Datasheet - Sitekit CMS Secure Forms Datasheet - Sitekit CMS Secure Forms Registered Office Business Unit Role Document Type Document Author Document Checked by Sitekit Ltd Sitekit House Broom Place Portree Isle of Skye IV51 9HL Sitekit.Solutions

More information

Workspace Administrator Help File

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

More information

Partner Integration Portal (PIP) Installation Guide

Partner Integration Portal (PIP) Installation Guide Partner Integration Portal (PIP) Installation Guide Last Update: 12/3/13 Digital Gateway, Inc. All rights reserved Page 1 TABLE OF CONTENTS INSTALLING PARTNER INTEGRATION PORTAL (PIP)... 3 DOWNLOADING

More information

maxecurity Product Suite

maxecurity Product Suite maxecurity Product Suite Domain Administrator s Manual Firmware v2.2 ii Table of Contents BASICS... 1 Understanding how maxecurity products work in your company... 1 Getting started as a Domain Administrator...

More information

WebAD IISADMPWD. Replacement Tool v2.5. Installation and Configuration Guide. Instructions to Install and Configure IISADMPWD

WebAD IISADMPWD. Replacement Tool v2.5. Installation and Configuration Guide. Instructions to Install and Configure IISADMPWD WebAD IISADMPWD Replacement Tool v2.5 Installation and Configuration Guide Instructions to Install and Configure IISADMPWD Replacement Tool v2.5 Web Active Directory, LLC Contents Overview... 2 Solution

More information

Q-Pulse Document Retrieval Service User Manual

Q-Pulse Document Retrieval Service User Manual Q-Pulse Document Retrieval Service User Manual Contents Introduction to the Q-Pulse Document Retrieval Service... 3 Installation Requirements... 3 Installation Procedure... 3 Configuration on Windows Server

More information

MANAGEMENT AND CONFIGURATION MANUAL

MANAGEMENT AND CONFIGURATION MANUAL MANAGEMENT AND CONFIGURATION MANUAL Table of Contents Overview... 3 SYSTEM REQUIREMENTS... 3 The Administration Console... 3 CHAT DASHBOARD... 4 COMPANY CONFIGS... 4 MANAGE LEARNING... 7 MANAGE TABS...

More information

Visitor Management Host User Guide

Visitor Management Host User Guide Visitor Management Host User Guide PERPETUAL INNOVATION Lenel OnGuard 2010 Visitor Management Host User Guide, product version 6.4 This guide is item number DOC-802, revision 1.038, April 2010 Copyright

More information

INSTALLATION GUIDE Spring 2017

INSTALLATION GUIDE Spring 2017 INSTALLATION GUIDE Spring 2017 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation Agreement and

More information

MANAGEMENT AND CONFIGURATION MANUAL

MANAGEMENT AND CONFIGURATION MANUAL MANAGEMENT AND CONFIGURATION MANUAL Page 1 of 31 Table of Contents Overview... 3 SYSTEM REQUIREMENTS... 3 The Administration Console... 3 CHAT DASHBOARD... 4 COMPANY CONFIGS... 4 MANAGE LEARNING... 7 MANAGE

More information

7.2. Visitor Management Host User Guide

7.2. Visitor Management Host User Guide 7.2 Visitor Management Host User Guide Lenel OnGuard 7.2 Visitor Management Host User Guide This guide is item number DOC-802, revision 6.005, October 2015 2015 United Technologies Corporation. All rights

More information

PxM Proof of Concept Configuration. June 2018 Version 3.1

PxM Proof of Concept Configuration. June 2018 Version 3.1 PxM Proof of Concept Configuration June 2018 Version 3.1 Table of Contents PxM Architecture, Installation & Configuration... 3 PxM Proof of Concept (POC) Guide... 4 Introduction... 4 Prerequisites... 4

More information

Click Studios. Passwordstate. Remote Session Launcher. Installation Instructions

Click Studios. Passwordstate. Remote Session Launcher. Installation Instructions Passwordstate Remote Session Launcher Installation Instructions This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise

More information

Outlook Web Access. Implementation Guide. (Version 5.4) Copyright 2012 Deepnet Security Limited

Outlook Web Access. Implementation Guide. (Version 5.4) Copyright 2012 Deepnet Security Limited Implementation Guide (Version 5.4) Copyright 2012 Deepnet Security Limited Copyright 2012, Deepnet Security. All Rights Reserved. Page 1 Trademarks Deepnet Unified Authentication, MobileID, QuickID, PocketID,

More information

AccuRoute Web Client v2.0 installation and configuration guide

AccuRoute Web Client v2.0 installation and configuration guide AccuRoute Web Client v2.0 installation and configuration guide July 22, 2009 Omtool, Ltd. 6 Riverside Drive Andover, MA 01810 Phone: +1/1 978 327 5700 Toll-free in the US: +1/1 800 886 7845 Fax: +1/1 978

More information

User Guide Published: 08/02/2010

User Guide Published: 08/02/2010 User Guide Published: 08/02/2010 Table of Contents 1 Revision History... 4 2 Introduction... 5 3 Accessing the TRAC Connect System... 5 3.1 Getting Started... 5 3.2 Registration... 8 3.3 Login... 11 3.4

More information

Administration. STILOG IST, all rights reserved

Administration. STILOG IST, all rights reserved 2 Table of Contents I. Admin Center... 1 1. ACCESS... 1 Starting the Admin Center application... 1 2. General Settings... 2 Home page... 3 Client... 4 Application... 5 VPPortal... 6 3. Password Configuration...

More information

SOA Software API Gateway Appliance 6.3 Administration Guide

SOA Software API Gateway Appliance 6.3 Administration Guide SOA Software API Gateway Appliance 6.3 Administration Guide Trademarks SOA Software and the SOA Software logo are either trademarks or registered trademarks of SOA Software, Inc. Other product names, logos,

More information

Installation Guide. 3CX CRM Plugin for ConnectWise. Single Tenant Version

Installation Guide. 3CX CRM Plugin for ConnectWise. Single Tenant Version Installation Guide 3CX CRM Plugin for ConnectWise Single Tenant Version "Copyright VoIPTools, LLC 2011-2016" Information in this document is subject to change without notice. No part of this document may

More information

Visitor Management Host User Guide

Visitor Management Host User Guide Visitor Management Host User Guide Table of Contents CHAPTER 1 Introduction............................................. 5 Conventions Used in this Documentation.............................................5

More information

Oracle Information Rights Management Oracle IRM Windows Authentication Extension Guide 10gR3 August 2008

Oracle Information Rights Management Oracle IRM Windows Authentication Extension Guide 10gR3 August 2008 10gR3 August 2008 ,, 10gR3 Copyright 2007, 2008, Oracle. All rights reserved. Primary Author: Martin Abrahams Contributing Author: Martin Wykes The Programs (which include both the software and documentation)

More information

BMC FootPrints 12 Integration with Remote Support

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

More information

Smart Connection User Guide

Smart Connection User Guide User Guide Issue 1.4 May 2010 0/59 CONTENTS 1. Introduction and Overview...3 1.1 Profiles and Privileges in... 3 1.2 Interactions with Oberthur s Personalisation Systems... 3 Transmission / Input File

More information

Skills Management Automated Install and Upgrade Guide

Skills Management Automated Install and Upgrade Guide Skills Management 8.5.648 Automated Install and Upgrade Guide Information contained herein is proprietary and confidential and cannot be disclosed or duplicated without the prior written consent of Genesys

More information

Nimsoft Service Desk. Single Sign-On Configuration Guide. [assign the version number for your book]

Nimsoft Service Desk. Single Sign-On Configuration Guide. [assign the version number for your book] Nimsoft Service Desk Single Sign-On Configuration Guide [assign the version number for your book] Legal Notices Copyright 2012, CA. All rights reserved. Warranty The material contained in this document

More information

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3 Enterprise Vault.cloud CloudLink Google Account Synchronization Guide CloudLink 4.0.1 to 4.0.3 Enterprise Vault.cloud: CloudLink Google Account Synchronization Guide Last updated: 2018-06-08. Legal Notice

More information

Ektron Advanced. Learning Objectives. Getting Started

Ektron Advanced. Learning Objectives. Getting Started Ektron Advanced 1 Learning Objectives This workshop introduces you beyond the basics of Ektron, the USF web content management system that is being used to modify department web pages. This workshop focuses

More information

XIA Configuration Server

XIA Configuration Server XIA Configuration Server XIA Configuration Server v6 Cloud Services Quick Start Guide Tuesday, 20 May 2014 1 P a g e X I A C o n f i g u r a t i o n C l o u d S e r v i c e s Contents Overview... 3 Creating

More information

CounterACT User Directory Plugin

CounterACT User Directory Plugin Version 6.1.2 and Above Table of Contents About the User Directory Plugin... 3 Endpoint User Details... 3 Verify Endpoint Authentication... 3 User Directory Inventory... 4 HTTP Login Action... 5 HTTP Sign

More information

Using ZENworks with Novell Service Desk

Using ZENworks with Novell Service Desk www.novell.com/documentation Using ZENworks with Novell Service Desk Novell Service Desk 7.1 April 2015 Legal Notices Novell, Inc. makes no representations or warranties with respect to the contents or

More information

VMware Identity Manager Administration

VMware Identity Manager Administration VMware Identity Manager Administration VMware Identity Manager 2.4 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

Teams migration. Admin guide for Office 365 teams/groups to teams/groups migrations

Teams migration. Admin guide for Office 365 teams/groups to teams/groups migrations Teams migration Admin guide for Office 365 teams/groups to teams/groups migrations Copyright 2019 CLOUDIWAY. All rights reserved. Use of any CLOUDIWAY solution is governed by the license agreement included

More information

Content Mirroring Configuration

Content Mirroring Configuration Content Mirroring Configuration Product version: 4.50 Document version: 1.0 Document creation date: 17-05-2005 Purpose This document describes how to configure mirroring in EPiServer and contains information

More information

DIRECTORY MANAGER V1.6 Quick Start Guide

DIRECTORY MANAGER V1.6 Quick Start Guide DIRECTORY MANAGER V1.6 Quick Start Guide Directory Manager is an easy-to-use, customizable, Web-based utility that allows the administrator to delegate the ability to update user s information in the Active

More information

One Identity Starling Two-Factor HTTP Module 2.1. Administration Guide

One Identity Starling Two-Factor HTTP Module 2.1. Administration Guide One Identity Starling Two-Factor HTTP Module 2.1 Administration Guide Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

12d Synergy Server Installation Guide

12d Synergy Server Installation Guide 12d Synergy Server Installation Guide Version 3.0 April 2017 12d Solutions Pty Ltd ACN 101 351 991 PO Box 351 Narrabeen NSW Australia 2101 (02) 9970 7117 (02) 9970 7118 support@12d.com www.12d.com 12d

More information

CounterACT External Classifier Plugin

CounterACT External Classifier Plugin CounterACT External Classifier Plugin Version 2.2.2 and Above Table of Contents About the Plugin... 3 How It Works... 3 Requirements... 4 What to Do... 4 Deployment Considerations... 5 Install the Plugin...

More information

PeoplePassword Documentation v6.0

PeoplePassword Documentation v6.0 PeoplePassword Documentation v6.0 Instructions to Configure and Use PeoplePassword v6.0, LLC Contents Overview... 3 Getting Started... 3 Components of PeoplePassword... 3 Core Components... 3 Optional

More information

Password Reset Server Installation

Password Reset Server Installation Password Reset Server Installation Vista/Server 08 and Windows 7/Server 2008 R2 Table of Contents I. Requirements... 4 A. System Requirements... 4 B. Domain Account Requirements... 5 C. Recommendations...

More information

Cloudiway Google Groups migration. Migrate from Google Groups to Office 365 groups

Cloudiway Google Groups migration. Migrate from Google Groups to Office 365 groups Cloudiway Google Groups migration Migrate from Google Groups to Office 365 groups Copyright 2017 CLOUDIWAY. All right reserved. Use of any CLOUDIWAY solution is governed by the license agreement included

More information

1 Dashboards Administrator's Guide

1 Dashboards Administrator's Guide 1 Dashboards Administrator's Guide Page 1 2 Dashboards Administrator's Guide Table of Contents FAQs... 4 Q: Why does my browser tell me Microsoft Silverlight is required when I am trying to view a Visualization?

More information

SharpSchool Chapter 7 USER MANUAL EXTERNAL LINK PAGE For more information, please visit:

SharpSchool Chapter 7 USER MANUAL EXTERNAL LINK PAGE For more information, please visit: SHARPSCHOOL USER MANUAL CHAPTER 7 EXTERNAL LINK PAGE For more information, please visit: www.customernet.sharpschool.com www.sharpschool.com 0 TABLE OF CONTENTS 1. 2. 3. 4. INTRODUCTION... 1 KEY INFORMATION...

More information

Entropy Software General Administration & Configuration

Entropy Software General Administration & Configuration Entropy Software General Administration & Configuration V1.02 1 of 34 Contents 1. Customising your Entropy system... 4 1.1 Entering or editing your Organisation s name into Entropy... 4 1.2 Adding a Watermark...

More information

Causeway ECM Team Notifications. Online Help. Online Help Documentation. Production Release. February 2016

Causeway ECM Team Notifications. Online Help. Online Help Documentation. Production Release. February 2016 Causeway ECM Team Notifications Online Help Production Release February 2016 Causeway Technologies Ltd Comino House, Furlong Road, Bourne End, Buckinghamshire SL8 5AQ Phone: +44 (0)1628 552000, Fax: +44

More information

VII. Corente Services SSL Client

VII. Corente Services SSL Client VII. Corente Services SSL Client Corente Release 9.1 Manual 9.1.1 Copyright 2014, Oracle and/or its affiliates. All rights reserved. Table of Contents Preface... 5 I. Introduction... 6 Chapter 1. Requirements...

More information

Inmagic Genie 2.10 Installation Notes, Revision 3, for New and Upgrade Installations

Inmagic Genie 2.10 Installation Notes, Revision 3, for New and Upgrade Installations Inmagic Genie 2.10 Installation Notes, Revision 3, for New and Upgrade Installations Thank you for purchasing Inmagic Genie. This document is intended for the following installations: New Genie installations

More information

XIA Links. Administrator's Guide. Version: 3.0. Copyright 2017, CENTREL Solutions

XIA Links. Administrator's Guide. Version: 3.0. Copyright 2017, CENTREL Solutions Administrator's Guide Version: 3.0 Copyright 2017, CENTREL Solutions Table of contents About... 4 Installation... 6 Installation Requirements (Server)... 7 Prerequisites (Windows Server 2016)... 9 Prerequisites

More information

External Authentication with Checkpoint R77.20 Authenticating Users Using SecurAccess Server by SecurEnvoy

External Authentication with Checkpoint R77.20 Authenticating Users Using SecurAccess Server by SecurEnvoy External Authentication with Checkpoint R77.20 Authenticating Users Using SecurAccess Server by SecurEnvoy Contact information SecurEnvoy www.securenvoy.com 0845 2600010 Merlin House Brunel Road Theale

More information

Avaya Event Processor Release 2.2 Operations, Administration, and Maintenance Interface

Avaya Event Processor Release 2.2 Operations, Administration, and Maintenance Interface Avaya Event Processor Release 2.2 Operations, Administration, and Maintenance Interface Document ID: 13-603114 Release 2.2 July 2008 Issue No.1 2008 Avaya Inc. All Rights Reserved. Notice While reasonable

More information

One Identity Starling Two-Factor Desktop Login 1.0. Administration Guide

One Identity Starling Two-Factor Desktop Login 1.0. Administration Guide One Identity Starling Two-Factor Desktop Login 1.0 Administration Guide Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

GlobalCapture OSA with QuickSearch Guide

GlobalCapture OSA with QuickSearch Guide GlobalCapture OSA with QuickSearch Guide Sharp Equipment Integration 127 Church Street, New Haven, CT 06510 O: (203) 789-0889 E: education@square-9.com www.square-9.com Square 9 Softworks Inc. 127 Church

More information

Self-Service Portal & estore Guide. Your complete guide to installing, administering and using the 1CRM Self-Service Portal and estore.

Self-Service Portal & estore Guide. Your complete guide to installing, administering and using the 1CRM Self-Service Portal and estore. Self-Service Portal & estore Guide Your complete guide to installing, administering and using the 1CRM Self-Service Portal and estore. Version 4.2, October, 2017. This document is subject to change without

More information

5.0 Admin Guide. Remote Request System Admin Guide. Toll Free Phone:

5.0 Admin Guide. Remote Request System Admin Guide.     Toll Free Phone: 5.0 Admin Guide Remote Request System Admin Guide www.goteamworks.com Email: support@goteamworks.com Toll Free Phone: 866-892-0034 Copyright 2012-2013 by TeamWORKS Solutions, Inc. All Rights Reserved Table

More information

Release Note RM Neon. Contents

Release Note RM Neon. Contents RM Neon Contents About this Release Note... 2 About RM Neon... 2 What it does... 2 Components... 2 Data protection... 3 Requirements... 4 RM Unify... 4 Server... 4 Before you start... 5 Back up your servers...

More information

Data Automator Installation and Getting Started Guide

Data Automator Installation and Getting Started Guide Data Automator Installation and Getting Started Guide Contents Introduction... 3 Minimum Requirements... 4 Supported Operating Systems... 4 Other requirements... 4 Installation... 5 Configuration Folder

More information

The Connector. Version 1.2 Microsoft Project to Atlassian JIRA Connectivity. User Manual

The Connector.  Version 1.2 Microsoft Project to Atlassian JIRA Connectivity. User Manual The Connector Version 1.2 Microsoft Project to Atlassian JIRA Connectivity User Manual Ecliptic Technologies, Inc. Copyright 2008 www.the-connector.com Page 1 of 86 Copyright and Disclaimer All rights

More information

Online Backup Manager v7 Quick Start Guide for Synology NAS

Online Backup Manager v7 Quick Start Guide for Synology NAS Online Backup Manager v7 Quick Start Guide for Synology NAS Copyright Notice The use and copying of this product is subject to a license agreement. Any other use is prohibited. No part of this publication

More information

Online CDC service. HowTo guide for certifying organisations

Online CDC service. HowTo guide for certifying organisations Online CDC service HowTo guide for certifying organisations Disclaimer While every reasonable effort has been made to ensure that this document is correct at the time of printing, the State of NSW, its

More information

Dell Storage Compellent Integration Tools for VMware

Dell Storage Compellent Integration Tools for VMware Dell Storage Compellent Integration Tools for VMware Version 4.0 Administrator s Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your

More information

IQSweb Installation Instructions Version 5.0

IQSweb Installation Instructions Version 5.0 IQSweb Installation Instructions Version 5.0 Contents Additional References... 3 IQSweb ROSS Connection... 3 IQSweb V5.0 Install/Upgrade Scenarios... 4 IQSweb Configuration Options... 5 A. Single Computer/Server

More information

Exchange Manager Admin Guide

Exchange Manager Admin Guide Version 4.3 March 14, 2018 Copyright 2013, 2017, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions

More information

User Manual RouteSms SmsPlus Desktop. Version 1.0

User Manual RouteSms SmsPlus Desktop. Version 1.0 User Manual RouteSms SmsPlus Desktop Version 1.0 1. Content : 1 INTRODUCTION...... 3 2 LOGIN... 4 3 WELCOME PAGE...... 5 4 SEND SMS...... 6 4.1 SINGLE SMS:... 6 4.2 BULK SMS:... 7 4.3 PERSONALIZED BULK

More information

GlobalCapture EIP with QuickSearch Guide

GlobalCapture EIP with QuickSearch Guide GlobalCapture EIP with QuickSearch Guide Xerox Equipment Integration 127 Church Street, New Haven, CT 06510 O: (203) 789-0889 E: education@square-9.com Square 9 Softworks Inc. 127 Church Street New Haven,

More information

INTRODUCTION 1.1 ABOUT THIS GUIDE What is Mission Control. Business Online POP Mail Who this Guide is For What s in This Guide

INTRODUCTION 1.1 ABOUT THIS GUIDE What is Mission Control. Business Online POP Mail Who this Guide is For What s in This Guide 1.1 About this Guide 01 INTRODUCTION Business Online POP Mail Business Online POP Mailboxes must not be selected unless the Business Online Extra or Standalone offer has been activated against the domain

More information

umapps Using umapps 6/14/2017 Brought to you by: umtech & The Center for Teaching & Learning

umapps Using umapps 6/14/2017 Brought to you by: umtech & The Center for Teaching & Learning umapps Using umapps Center for Teaching and Learning (CTL) 100 Administration Bldg., Memphis, TN 38152 Phone: 901.678.8888 Email: itstrainers@memphis.edu Center for Teaching and Learning Website 6/14/2017

More information

Joomla Website User Guide

Joomla Website User Guide Joomla Website User Guide www.ardengemcsu.nhs.uk Table of Contents Introduction... 3 Editing pages... 4 Styling content... 5 Hyperlinks... 6 Inserting an image... 7 DOCman... 11 Glossary of terms... 14

More information

User Management in Resource Manager

User Management in Resource Manager CHAPTER 8 This section describes how to manage user profiles. Topics in this section include: Overview of User Management, page 8-1 Using User Management, page 8-1 Overview of User Management In Resource

More information

TOP Server Version 6 Security Settings

TOP Server Version 6 Security Settings TOP Server 1 (10) TOP Server Version 6 TOP Server 2 (10) Contents Security Built In... 3 User Manager Configuration... 3 New User Accounts... 5 New User Group and Properties... 5 Configuration Security...

More information

How does it look like?

How does it look like? EasyAdmin Windows Authentication KB4031b 1 The OpenLM EasyAdmin administrative web interface incorporates a role-based security access scheme, facilitating different levels of access to different role

More information

Workday Deployment Guide Version 4.0

Workday Deployment Guide Version 4.0 Workday Deployment Guide Version 4.0 Deployment Guide Overview SAML Configuration Workday Driven IT Provisioning Overview Basic Provisioning Configuration Workday Provisioning Groups Real Time Sync Attribute

More information

VMware AirWatch Integration with RSA PKI Guide

VMware AirWatch Integration with RSA PKI Guide VMware AirWatch Integration with RSA PKI Guide For VMware AirWatch Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com. This product

More information

Development Workbench Getting Started Oracle FLEXCUBE Universal Banking Release

Development Workbench Getting Started Oracle FLEXCUBE Universal Banking Release Development Workbench Getting Started Oracle FLEXCUBE Universal Banking Release 12.3.0.0.0 Contents 1 Preface... 2 1.1 Audience... 2 1.2 Related Documents... 2 2 Introduction... 2 3 Explanation of Some

More information

Development Workbench Getting Started Oracle FLEXCUBE Universal Banking Release

Development Workbench Getting Started Oracle FLEXCUBE Universal Banking Release Development Workbench Getting Started Oracle FLEXCUBE Universal Banking Release 14.0.0.0.0 Contents 1 Preface... 2 1.1 Audience... 2 1.2 Related Documents... 2 2 Introduction... 3 3 Explanation of Some

More information

Using the vrealize Orchestrator Operations Client. vrealize Orchestrator 7.5

Using the vrealize Orchestrator Operations Client. vrealize Orchestrator 7.5 Using the vrealize Orchestrator Operations Client vrealize Orchestrator 7.5 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

More information

PASSPORTAL PLUGIN DOCUMENTATION

PASSPORTAL PLUGIN DOCUMENTATION Contents Requirements... 2 Install or Update Passportal Plugin Solution Center... 3 Configuring Passportal Plugin... 5 Client mapping... 6 User Class Configuration... 7 About the Screens... 8 Passportal

More information

FastStats Integration

FastStats Integration Guide Improving results together 1 Contents Introduction... 2 How a campaign is conducted... 3-5 Configuring the integration with PureResponse... 4-17 Using Cascade with the PureResponse platform... 17-10

More information

User Guide Online Backup

User Guide Online Backup User Guide Online Backup Table of contents Table of contents... 1 Introduction... 2 Getting Started with the Online Backup Software... 2 Installing the Online Backup Software... 2 Configuring a Device...

More information

ZENworks Service Desk 8.0 Using ZENworks with ZENworks Service Desk. November 2018

ZENworks Service Desk 8.0 Using ZENworks with ZENworks Service Desk. November 2018 ZENworks Service Desk 8.0 Using ZENworks with ZENworks Service Desk November 2018 Legal Notices For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions,

More information

Installation Guide. Mobile Print for Business version 1.0. July 2014 Issue 1.0

Installation Guide. Mobile Print for Business version 1.0. July 2014 Issue 1.0 Installation Guide Mobile Print for Business version 1.0 July 2014 Issue 1.0 Fuji Xerox Australia 101 Waterloo Road North Ryde NSW 2113 For technical queries please contact the Fuji Xerox Australia Customer

More information

Administration Guide. Lavastorm Analytics Engine 6.1.1

Administration Guide. Lavastorm Analytics Engine 6.1.1 Administration Guide Lavastorm Analytics Engine 6.1.1 Lavastorm Analytics Engine 6.1.1: Administration Guide Legal notice Copyright THE CONTENTS OF THIS DOCUMENT ARE THE COPYRIGHT OF LIMITED. ALL RIGHTS

More information

Trusted Login Connector (Hosted SSO)

Trusted Login Connector (Hosted SSO) Trusted Login Connector (Hosted SSO) Table of Contents Summary... 3 Frequently Asked Questions... 3 Architecture... 5 Installation/configuration... 5 2 Summary New functionality allows SelectHR users to

More information

Episerver CMS. Editor User Guide

Episerver CMS. Editor User Guide Episerver CMS Editor User Guide Episerver CMS Editor User Guide 17-2 Release date 2017-03-13 Table of Contents 3 Table of contents Table of contents 3 Introduction 11 Features, licenses and releases 11

More information

EMC ApplicationXtender Web Access.NET eroom Integration 6.0

EMC ApplicationXtender Web Access.NET eroom Integration 6.0 EMC ApplicationXtender Web Access.NET eroom Integration 6.0 Administrator s Guide 300-008-282 REV A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright

More information

REPORTING Copyright Framework Private Equity Investment Data Management Ltd

REPORTING Copyright Framework Private Equity Investment Data Management Ltd REPORTING Copyright Framework Private Equity Investment Data Management Ltd - 2016 Table of Contents Standard Reports... 3 Standard Report Pack... 4 General Data Protection and Framework... 7 Partner Bank

More information

Managing WCS User Accounts

Managing WCS User Accounts 7 CHAPTER This chapter describes how to configure global email parameters and manage WCS user accounts. It contains these sections: Adding WCS User Accounts, page 7-2 Viewing or Editing User Information,

More information

Secure Transfer Site (STS) User Manual

Secure Transfer Site (STS) User Manual Secure Transfer Site (STS) User Manual (Revised 3/1/12) Table of Contents Basic System Display Information... 3 Command Buttons with Text... 3 Data Entry Boxes Required / Enabled... 3 Connecting to the

More information

Active Directory Integration. Documentation. v1.00. making your facilities work for you!

Active Directory Integration. Documentation.  v1.00. making your facilities work for you! Documentation http://mid.as/ldap v1.00 making your facilities work for you! Table of Contents Table of Contents... 1 Overview... 2 Pre-Requisites... 2 MIDAS... 2 Server... 2 End Users... 3 Configuration...

More information

Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Primavera Portfolio Management 9.0 What s New Copyright 1999-2011, Oracle and/or its affiliates. The Programs (which include both the software and documentation) contain proprietary information; they are

More information

Skills Management Automated Install and Upgrade Guide

Skills Management Automated Install and Upgrade Guide Skills Management 9.0.0 Automated Install and Upgrade Guide Information contained herein is proprietary and confidential and cannot be disclosed or duplicated without the prior written consent of Genesys

More information

Equitrac Embedded for Sharp OSA. Setup Guide Equitrac Corporation

Equitrac Embedded for Sharp OSA. Setup Guide Equitrac Corporation Equitrac Embedded for Sharp OSA 1.4 Setup Guide 2012 Equitrac Corporation Equitrac Embedded for Sharp OSA Setup Guide Revision Date Revision List November 1, 2012 Updated for Equitrac Office/Express 4.2.5

More information

NBC-IG Installation Guide. Version 7.2

NBC-IG Installation Guide. Version 7.2 Installation Guide Version 7.2 2017 Nuance Business Connect 7.2 Installation Guide Document Revision History Revision Date August 8, 2017 Revision List Updated supported SQL Server versions June 14, 2017

More information

Microsoft Windows Server 2003 or Microsoft Windows Server 2008 Windows SharePoint Services 3.0 or Microsoft Office SharePoint Server 2007

Microsoft Windows Server 2003 or Microsoft Windows Server 2008 Windows SharePoint Services 3.0 or Microsoft Office SharePoint Server 2007 README SAS Web Parts 1.1 for Microsoft SharePoint Description The SAS Web Parts for Microsoft SharePoint allow you to bring the power of SAS dashboards and SAS analytics to your SharePoint pages. This

More information

Introduction. Automatic gate opening no more swiping

Introduction. Automatic gate opening no more swiping Introduction This user guide is intended for companies and drivers to use the functionality available in the TAMS System Manage your entire Auckland Airport access account via the internet! One simple

More information

User Manual. MDWorkflow. Web Application from Midrange Dynamics

User Manual. MDWorkflow. Web Application from Midrange Dynamics User Manual MDWorkflow Web Application from Midrange Dynamics (Version 7.1) Tel. +41 (41) 710 27 77, Fax +41 (41) 710 95 87, www.midrangedynamics.com 1 / 36 MDWorkflow - Table of Contents 1 INTRODUCTION...

More information

Technical Intro Part 1

Technical Intro Part 1 Technical Intro Part 1 Learn how to create, manage, and publish content with users and groups Hannon Hill Corporation 950 East Paces Ferry Rd Suite 2440, 24 th Floor Atlanta, GA 30326 Tel: 800.407.3540

More information

Setting Up Resources in VMware Identity Manager (On Premises) Modified on 30 AUG 2017 VMware AirWatch 9.1.1

Setting Up Resources in VMware Identity Manager (On Premises) Modified on 30 AUG 2017 VMware AirWatch 9.1.1 Setting Up Resources in VMware Identity Manager (On Premises) Modified on 30 AUG 2017 VMware AirWatch 9.1.1 Setting Up Resources in VMware Identity Manager (On Premises) You can find the most up-to-date

More information

Quick guide to the SmartSimple on-line portal (making an application)

Quick guide to the SmartSimple on-line portal (making an application) EPA Research Programme 2014-2020 Quick guide to the SmartSimple on-line portal (making an application) POWERED BY SMARTSIMPLE Disclaimer Please read this document carefully prior to using the on-line portal.

More information

Healthcare Database Connector

Healthcare Database Connector Healthcare Database Connector Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: September 2016 2015 Lexmark International Technology, S.A. All rights reserved. Lexmark

More information