How To Add a Borrower Via Web Services API

Size: px
Start display at page:

Download "How To Add a Borrower Via Web Services API"

Transcription

1 How To Add a Borrower Via Web Services API Summary This document outlines the use of the Web Services API available in the version 5(v5) knowledge content and library management (KCLM) solution for adding, querying, updating and viewing borrower records. It is intended to be read by system integration developers (Analyst/Programmers) familiar with Web Services in any application language. A registration module is required to access Web Services features. The Web Services offering has four main components: Generic entity API (since v4.2 build 7) OPAC specific API (since v4.2 build 6.0 RC 1) Federated Search specific API (since v5 build 1) An implementation of the Open Search API (since v4.2 build 6.0 patch 9) The generic entity API allows you to query or perform create, read, update and delete operations on any system entity. A system entity is defined as a record type in the v5 solution. Examples of these include but are not limited to Borrowers, resources, loans, orders and reservations. For the purposes of this document, the Borrower record is defined in the 'Client' entity. Requirements General Analyst/Programmer skills A Licenced v5 solution with the Web Services Module included A current Softlink Support Agreement Consultation time with Softlink Technical Support Analysts is strongly recommended. This time can be used assist you to troubleshoot and to determine SOAP request parameters to suit your requirements Administrative access to the v5 solution Administrative access to the v5 Application server for the purpose of reviewing system log files Access to the SQL database where the v5 database is installed. This will include the ability to run queries on the database Configuring the Web Services API in the v5 Solution To utilise the Softlink Web Services API the v5 solution must have the Web Services API module included in its registration. Please contact Softlink Sales to arrange for the inclusion of this module in the v5 registration code. Web Services APIs cannot be accessed without this module. The Web Services username and password is required to be RSA encrypted by default in the v5 solution. This is configurable by setting the System Parameter No webservicesencryptcredentials which is controlled by Softlink Support. Please have Softlink Support set this parameter to false to allow the Username and Password to be sent as plain text for the purpose of troubleshooting the Web Services API during configuration

2 and setup. The parameter can then be reset to true after configuration and testing of Web Services API integration with your third party system (e.g. Moodle, MS SharePoint, Student Admin Systems or web-based portals) as is suitable for the security configuration of your implementation. With webservicesencryptcredentials turned on, the clientaliasenc and clientpasswordenc must have their values encrypted independently by your implementation to ensure the security of these credentials. Information required to generate encrypted Alias and Password values is provided in the Security section of this document. For further assistance with encryption of web services credentials please contact Softlink. The built-in Web Services Borrower record is provided for accessing the Web Services API. The account is pre-configured with the Web Services User Role. The role is linked to a set of User Privileges allowing the availability of API operations to be controlled. When deploying web services, you should modify the privilege settings to only allow operations you intend to use. For the purposes of adding a Borrower record enable the User Privileges for browse, create, delete, query, and update. Click on each of the blue text privilege groups in the /webservices/entity/ /* groups to expand them and disable features in each group that you do not wish to allow through API calls (e.g. creating, deleting, updating catalogue entity elements). Figure 1 - webservices User Privileges settings Note: If you do not wish to allow OPAC queries through the Web Services API the User Privilege 'Must be enabled for OPAC Web Services API function calls' or its component items can be disabled. While this function is not used when adding a Borrower record, it can be left on if desired. The Web Services API is now configured in the v5 solution. You can logout of v5. Testing the Web Services API A method of sending API requests and receiving responses for testing and troubleshooting purposes now and in the future will be needed. Use a tool you are familiar with that can send SOAP requests and receive the responses. There are a number of utilities and test suites available including the open source tool, SoapUI 1 ( If you prefer, a PHP script or other method can be used to test SOAP requests and replies. This will require that you are familiar with preparing and 1 Softlink does not endorse or support this product.

3 sending SOAP requests. Softlink does not support configuration of scripting languages or third party tools for testing/troubleshooting SOAP requests. Now that the v5 solution is configured for the Web Services API it can be tested to confirm that API calls are being received and responded to correctly. To test and troubleshoot the web service you must have access to the v5 server.log file located on the application server in the v5 installation directory, for example: /softlink international/server/sahara/log/server.log). To test that the API is functioning prepare a simple SOAP request to query the Borrower records in the v5 solution (there should be 5 default Borrower records already present). Enter the following URL in a browser that can access the v5 solution: * Replace Oliver with Liberty for a Liberty system. This should return a browser page with the XML formatted definition of the elements of the Web Services API that are accessible using the EntityAccess API. If your browser does not return this type of page, contact Softlink Support for assistance. Figure 2 - Sample output of /EntityAccess?wsdl definition Follow the instructions in the following sections of this guide to find a Borrower, browse a Borrower and add a Borrower record. Once you have this successfully working with your third party product you can systematically remove 'webservices' User Privileges that you do not require to be accessible through the API. If you are unable to successfully query or browse the v5 solution, check the Troubleshooting guide at the end of this document or contact Softlink to arrange for a consultant to assist you. Note: The following sections assume that Parameter 1390 'webservicesencryptcredentials' is set to false and the Web Services borrower credentials can be sent as plain text. Accessing Borrower Data with the API To access a Borrowers information using the API, you will need to use two of the EntityAccess?wsdl functions called 'Query' and 'Browse'. The Query request allows you to search for a field value contained in an entity. The entity type for Borrower records in v5 is 'Client'. This request will return a list of the Universally Unique Identifiers (UUID values) of the Borrower records matching your search. The Browse request returns the contents of the records contained in an entity type. It must contain the UUID of each record whose details you wish to view.

4 Finding a Borrower To find a Borrower record s UUID value you must send a Web Services API request containing a valid Borrower record search. This means a search that will return the required result when searched in the "any words" search field in the product s Borrower search screen. For example to find a borrower whose Surname is 'Bloggs' the search query Familyname = "Bloggs" will return the UUIDs of all Borrower records with a Family name of "Bloggs". This query can therefore be used in a SOAP request. The SOAP request to perform this search looks like this: <soapenv:envelope xmlns:soapenv=" xmlns:ent=" <soapenv:header/> <soapenv:body> <ent:query> <corpalias>corporationalias</corpalias> <clientaliasenc>webservices</clientaliasenc> <clientpasswordenc>password</clientpasswordenc> <entityname>client</entityname> <search>familyname = "bloggs"</search> <maxresultcount>100</maxresultcount> </ent:query> </soapenv:body> </soapenv:envelope> The fields highlighted in yellow define the v5 Web Services details and the query to be performed. <corpalias> can be found by navigating in v5 (Build or greater) to the Management > About screen. The Alias is displayed at the top of this page. If you are unable to locate it contact Softlink Support for assistance. <clientaliasenc> is the Web Services borrowers alias. The default is 'webservices' <clientpasswordenc> is the password for the webservices borrower record. The default is 'password' but this can be changed if you prefer. <entityname> defines the v5 entity type. In this case the Borrower records have an entity type of 'Client' <search> defines the search to be performed you can use any valid v5 "any words" search here that will return the Borrower UUIDs that you wish to view the details of. A blank search will return all borrower records. <maxresultcount> determines the maximum number of results to be returned. Setting this number too high can negatively impact performance and response times on the v5 solution. Submitting this SOAP request to the v5 solution should return a SOAP reply similar to the following: <S:Envelope xmlns:s=" <S:Body> <ns2:queryresponse xmlns:ns2=" <return>d44585e6c0a8145a b8dc</return> <return>d4491b94c0a8145a00df53e b9</return> </ns2:queryresponse> </S:Body> </S:Envelope> The value appearing between each <return> tag pair is a UUID identifying a unique borrower record in the Borrower list. These values can be used in the following SOAP request to return the actual contents of the borrower record.

5 Browsing Borrower Details To get the details of the Borrower for a UUID you have determined using the query request you must send a Browse request to the v5 solution. A Browse request looks like this: <soapenv:envelope xmlns:soapenv=" xmlns:ent=" <soapenv:header/> <soapenv:body> <ent:browse> <corpalias>corporationalias</corpalias> <clientaliasenc>webservices</clientaliasenc> <clientpasswordenc>password</clientpasswordenc> <entityname>client</entityname> <!--1 or more repetitions:--> <uuids>abece0a3c0a8145a0070e3f0c22bf466</uuids> <loadconstant></loadconstant> </ent:browse> </soapenv:body> </soapenv:envelope> <entityname> is the name of the entity containing the type of information you wish to browse. In this case it is 'Client'. <uuids> contains the UUID of the borrower record you wish to view. There can be multiple <uuids></uuids> in the browse request. The reply will contain borrower details for each borrower UUID requested. <loadconstant> is blank in this instance but can be defined to return specific data related to the UUID. This is the subject of another How To Guide. Submitting this request will return a SOAP formatted reply containing the Borrower details for the Borrower whose record UUID was requested. <S:Envelope xmlns:s=" <S:Body> <ns2:browseresponse xmlns:ns2=" turn><![cdata[<net.softlink.libraryserver.webservice.common.entity.entityac cessimpl_-browseresult> <valueobjects class="list"> <Client> <uuid>abece0a3c0a8145a0070e3f0c22bf466</uuid> <updatesearchindex>true</updatesearchindex> <alias>jbloggs</alias> <allocation>0.00</allocation> <allocationspent>0.00</allocationspent> <allowbookreviews>false</allowbookreviews> <altmailtitle></altmailtitle> <amountowing>0.00</amountowing> <avatar>m1.png</avatar> <background>default.png</background> <birthday class="sql-timestamp"> :00:00.0</birthday> <deposit>0.00</deposit> <expirydate class="sql-timestamp"> :59:59.997</expiryDate> <familyname>bloggs</familyname> <mailtitle></mailtitle> <membersince class="sql-timestamp"> :00:00.0</memberSince>

6 <middleinitial>p</middleinitial> <motherphone></motherphone> <narrowtofavourites>false</narrowtofavourites> <notes></notes> <notifyupdates>true</notifyupdates> <opacdefaultoperator>and</opacdefaultoperator> <opacdefaultsearch></opacdefaultsearch> <personalname>joseph</personalname> <sortablename>joseph P Bloggs</sortableName>... </Client> </valueobjects> </net.softlink.libraryserver.webservice.common.entity.entityaccessimpl_- BrowseResult>]]></return> </ns2:browseresponse> </S:Body> </S:Envelope> (The above reply has had some fields removed for brevity) Now you should be able to find a Borrower in v5, and access the details of a Borrower (or Borrowers), using a SOAP request. Adding a Borrower Now that you can find and view a Borrower record from the v5 solution, this section provides the steps required to add a Borrower record to it. The minimum fields you should set for a Borrower record are: Alias * Family Name Personal Name Borrower Type * Borrower Loan Category * User Role * Branch *These fields are mandatory for any Borrower record to be successfully added to v5. To add a Borrower, use the create entity function of the entityaccess API. To add a basic Borrower to the Borrower list, a SOAP request like the following can be submitted: <soapenv:envelope xmlns:soapenv=" xmlns:ent=" <soapenv:header /> <soapenv:body> <ent:create> <corpalias>corporationalias</corpalias> <clientaliasenc>webservices</clientaliasenc> <clientpasswordenc>password</clientpasswordenc> <entityname>client</entityname> <valueobjectxml> <![CDATA[<net.softlink.libraryserver.data.ClientValueObject> <alias>jdoe</alias> <personalname>jane</personalname> <familyname>doe</familyname> <studentcode>54321</studentcode> <BorrowerLoanCategoryUuid>d3688f41c0a8145a00bed434fff2ea9b

7 </BorrowerLoanCategoryUuid> <BorrowerTypeUuid>d3688faac0a8145a01a9ffde8737d8f3</BorrowerTypeUuid> <userroleuuid>d3686ef5c0a8145a0112cae4124a2c9b</userroleuuid> <branchuuid>d3686a22c0a8145a019d cd</branchuuid> </net.softlink.libraryserver.data.clientvalueobject>]]> </valueobjectxml> </ent:create> </soapenv:body> </soapenv:envelope> The Web Services parameters remain the same as in previous requests. To specify the data to be entered for a Borrower record you must specify the following: <entityname> For adding general Borrower information this is set to 'Client'. <valueobjectxml> This contains and XML formatted list of the data to be entered, wrapped in the tag name for the destination field. This XML must be wrapped as CDATA and contain the Entity Value Object to be populated. In this case the Entity Value Object is 'net.softlink.libraryserver.data.clientvalueobject' for borrower records. Determining Field Aliases To determine which fields can be populated, when adding a Borrower record, create a Borrower record in the v5 solution interface that contains examples of the data that you are intending to add using the Web Services API and perform a Borrower entity browse request for that Borrower. The tags listed with the data you entered can be used in the create Borrower requests to assign data to these fields when creating a new Borrower. (See the browse Borrower reply below as an example of the available fields). Determining UUID Values If a field you wish to populate requires a UUID instead of a term, you will have to perform a search for the UUID of the term you wish to set. This will require querying the entity type for that field to retrieve the UUID to use in place of the term you wish to enter. An example of this is the User Role value which must be set for all borrowers. This field requires the UUID of the User Role rather than its name. To find the UUID for the User Role 'OPAC Only' the following SOAP request can be sent to the v5 solution. <soapenv:envelope xmlns:soapenv=" xmlns:ent=" <soapenv:header/> <soapenv:body> <ent:query> <corpalias>default_corp</corpalias> <clientaliasenc>webservices</clientaliasenc> <clientpasswordenc>password</clientpasswordenc> <entityname>userrole</entityname> <search>alias = "OPAC Only"</search> <maxresultcount>100</maxresultcount> </ent:query> </soapenv:body> </soapenv:envelope> The UUID that is returned can be used to set the borrowers User Role to "OPAC Only". E.G. <userroleuuid>ab898f9ac0a8145a01be f570</userroleuuid>.

8 To determine a suitable search to find the UUID you require, go to System > FieldAlias and search for Entity co "UserRole" or the entity type you are looking for. The resulting list will have Aliases for the fields that you can search. Use the Alias in your search for the term you are looking for. E.G. for Borrower type the search will be term = "OPAC Only". Now that you have a working SOAP request to add a Borrower you can use this as a template for your third party system to populate and send the appropriate data. Security 1. SSL Web Services may be deployed using SSL over HTTPS to enhance security by ensuring network messages are not exchanged as plain text. The mechanisms to deploy Web Services with SSL are much the same as those for deploying the application user interface with SSL. Please refer to JBOSS documentation for further details. 2. Borrower Details Encryption As an alternative to using SSL, Borrower details passed into the API can be protected with the use of RSA encryption. This will simplify the deployment configuration at the expense of a more complicated client implementation. The following information is required in order to create the encrypted Web Services API arguments. Public key modulus: Public key exponent: Example Borrower encryption using PHP: The following demonstrates how Borrower encryption could be implemented in the PHP language. Note that the application RSA decryption function expects a series of numeric characters represented as a hex string. <?php include("rsa.class.php"); $RSA = new RSA(); $exponent = "65537"; $modulus = " " $client_alias = strhex($rsa->encrypt("administrator", $exponent, $modulus)); $client_pw = strhex($rsa->encrypt("password", $exponent, $modulus)); $client = new SoapClient(" $result = $client->query($corp_alias, $client_alias, $client_pw, $search, 25);...

9 Notes I. Remember to get Softlink Support to turn on Parameter No again to use encrypted Web Services Credentials if your implementation requires this. II. If you encounter errors when making SOAP requests refer to the server log and review the error message. This can often point to the parameter within the request packet that is failing or preventing the request from succeeding. III. Check the User Privileges for the 'webservices' Borrower and confirm the correct privileges are turned on. IV. Check the server log at the time code when you issued the SOAP request to see if an error message is present that identifies the problem. V. For troubleshooting the API, it may be beneficial to leave all 'webservices' User Privileges turned on until you are satisfied that it is working. Troubleshooting Messages that may display; what they mean and steps to take: INFO [EntityAccessImpl.isPermitted:358] permissiondenied: no web services registration. /webservices/entity/query/client The v5 Solution may not have the Web Services Module enabled in its product licence. Contact Softlink to arrange for the module to be added to the product licence. INFO [EntityAccessImpl.query:269] Corporation alias <default_cop> not found The <corpalias> value is incorrect. Correct the value in the request. ERROR [GeneratedMethodAccessor634.invoke:?] Query [>alias = "administrat*"] failed: net.softlink.search.parseexception The search query is incorrectly formatted. Ensure that the query as entered returns the expected result when searched in the "any words" search field in the products user interface. Correct the search query in the request. java.lang.runtimeexception:???webservice.error.create.exists??? at... ERROR [NativeMethodAccessorImpl.invoke0:?] Create [Client] failed: javax.ejb.ejbexception: RuntimeException The record being created has been identified as a duplicate of an existing record. In the case of Borrowers this can be due to the alias, username, or student code being the same as another Borrower records alias, username, or student code. The web services API enforces all data requirements that would need to be met when adding a Borrower through the UI. DefaultException: You must assign a user role to this user. at net.softlink.libraryserver.exceptions.exceptionutil.addexception(exceptionutil.java:59)... ERROR [NativeMethodAccessorImpl.invoke0:?] Create [Client] failed: javax.ejb.transactionrolledbacklocalexception: You must assign a user role to this user. The userroleuuid value is missing or incorrect. Correct this UUID value to that of the required UserRole. INFO [EntityAccessImpl.browse:65] For input string: "we" WARN [NativeMethodAccessorImpl.invoke0:?] Invalid login provided to browse

10 Or INFO [EntityAccessImpl.browse:65] For input string: "pa" WARN [GeneratedMethodAccessor639.invoke:?] Invalid login provided to browse The clientaliasenc and/or clientpasswordenc is in plain text when it is expected to be encrypted. Replace the clientaliasenc and/or clientpasswordenc with encrypted values. java.lang.illegalargumentexception: Could not locate fieldalias with name <term> on entity <Client>. Check that the <entityname> field in your query is set to the entity type of the UUID you are searching for. E.G. <userroleuuid> is found in the Entity 'UserRole'. Where as <BorrowerTypeUuid> is found in the Entity 'BorrowerType'. Also check that the search you are using in the <Search> tag is a valid query that returns the required result from the "any words" search field in the products search interface. java.lang.illegalstateexception: A default field group has not been set for entity <BorrowerType> corporation <d367c6aec0a8145a01fbe09b8208d7e4> The error, identified above, indicates that the search is not suitably defined. Try searching for the required result in the "any words" search field in the products search interface.

11 IMPORTANT INFORMATION Web Services API is very powerful and must be used with care. The Web Services API allows for direct manipulation of v5 database records. CAUTION should be used when creating, updating or deleting records using the API, as alteration or removal of some types of records and data can interfere with normal operation of the v5 solution. In some cases access to and regular use of the v5 solution may be compromised. All scripts/soap Requests that are to be executed against a production v5 solution MUST be checked by Softlink. Consultation with Softlink is strongly encouraged before implementing the Web Services API on a production v5 solution. Use of scripts/soap requests that have not been reviewed could unintentionally de-stabilise your v5 solution or render it unusable. Before commencing any design and testing of Web Services API requests, backup the v5 SQL Database. As Softlink advise that some security provisions are removed when developing and implementing the Web Services API for your purposes, please be aware that Data and Network security provisions when using the v5 Web Services API are your responsibility. Web Services credentials can be encrypted for transmission by your implementation. Please refer to the 'Security' section of this document for more information. Note that the Web Services module has not yet been evaluated in a performance sensitive environment. Web Services incur similar system resource consumption to a client browser interaction for a similar type of request. Frequent polling may impact system performance in a similar way to running multiple frequent system interactions. The impact will be dependent on the interaction performed.

12

Locate your Advanced Tools and Applications

Locate your Advanced Tools and Applications MySQL Manager is a web based MySQL client that allows you to create and manipulate a maximum of two MySQL databases. MySQL Manager is designed for advanced users.. 1 Contents Locate your Advanced Tools

More information

Lab 3: Simple Integration Use Case

Lab 3: Simple Integration Use Case Exercise 1 : Create the web service...2 Exercise 2 : Deploy the web service...4 Exercise 3 : Test the service...8 1/16 In this exercise, you will learn how to activate a Maximo inbound web service. This

More information

Using BMC SRM OOB Web Services

Using BMC SRM OOB Web Services Using BMC SRM OOB Web Services The BMC Service Request Management application is shipped with a number of OOB Web Services that can be used to Create, Query and Modify requests (see Figure 1. at end of

More information

Grapevine web hosting user manual. 12 August 2005

Grapevine web hosting user manual. 12 August 2005 Grapevine web hosting user manual 12 August 2005 Grapevine web hosting user manual 2 Contents Contents... 2 Introduction... 4 System features... 4 How it looks... 5 Main navigation... 5 Reports... 6 Web

More information

API Gateway Version September Key Property Store User Guide

API Gateway Version September Key Property Store User Guide API Gateway Version 7.5.2 15 September 2017 Key Property Store User Guide Copyright 2017 Axway All rights reserved. This documentation describes the following Axway software: Axway API Gateway 7.5.2 No

More information

ControlPoint. Advanced Installation Guide. September 07,

ControlPoint. Advanced Installation Guide. September 07, ControlPoint Advanced Installation Guide September 07, 2017 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH., 2008-2017 All rights reserved. No part or section of the contents

More information

ControlPoint. Installation Guide for SharePoint August 23,

ControlPoint. Installation Guide for SharePoint August 23, ControlPoint Installation Guide for SharePoint 2007 August 23, 2017 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH., 2008-2017 All rights reserved. No part or section of

More information

Faculty Web Page Management System. Help Getting Started

Faculty Web Page Management System. Help Getting Started Faculty Web Page Management System Help Getting Started 2 Table of Contents Faculty Web Page Management System...1 Help Getting Started...1 Table of Contents...2 Manage My Personal Information...3 Creating

More information

FUSION REGISTRY COMMUNITY EDITION SETUP GUIDE VERSION 9. Setup Guide. This guide explains how to install and configure the Fusion Registry.

FUSION REGISTRY COMMUNITY EDITION SETUP GUIDE VERSION 9. Setup Guide. This guide explains how to install and configure the Fusion Registry. FUSION REGISTRY COMMUNITY EDITION VERSION 9 Setup Guide This guide explains how to install and configure the Fusion Registry. FUSION REGISTRY COMMUNITY EDITION SETUP GUIDE Fusion Registry: 9.2.x Document

More information

https://blogs.oracle.com/angelo/entry/rest_enabling_oracle_fusion_sales., it is

https://blogs.oracle.com/angelo/entry/rest_enabling_oracle_fusion_sales., it is More complete RESTful Services for Oracle Sales Cloud Sample/Demo Application This sample code builds on the previous code examples of creating a REST Facade for Sales Cloud, by concentrating on six of

More information

Operators Guide Version 6.8

Operators Guide Version 6.8 Operators Guide Version 6.8 Last updated 6 th February 2006 for 6.8 Patch 10 Refer to the separate Administration Guide for Configuration of your helpdesk 2006 sitehelpdesk.com Ltd Table of Contents Section

More information

release notes effective version 10.3 ( )

release notes effective version 10.3 ( ) Introduction We are pleased to announce that Issuetrak 10.3 is available today! 10.3 focuses on improved security, introducing a new methodology for storing passwords. This document provides a brief outline

More information

Version 1.4 Paribus Discovery for Microsoft Dynamics CRM User Guide

Version 1.4 Paribus Discovery for Microsoft Dynamics CRM User Guide Version 1.4 Paribus Discovery for Microsoft Dynamics CRM User Guide Document Version 1.3 Release Date: September 2011 QGate Software Limited D2 Fareham Heights, Standard Way, Fareham Hampshire, PO16 8XT

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

Usage of Evaluate IPAddress Action with wm Mediator

Usage of Evaluate IPAddress Action with wm Mediator Usage of Evaluate IPAddress Action with wm Mediator INTRODUCTION PRE-REQUISITE CONFIGURATIONS Create and configure a consumer application with IP Address Create a virtual alias in BusinessUI with Evaluate

More information

Installing Authoring Manager

Installing Authoring Manager Installing Authoring Manager Installing Authoring Manager v5.2 (PC only) System Requirements: Before you install Authoring Manager, you should ensure that your system meets the minimum software and hardware

More information

Introduction. Logging In. https://portal.format.co.nz/login/trt

Introduction. Logging In. https://portal.format.co.nz/login/trt Introduction Welcome to the Tidd Ross Todd On-line Ordering System. This site has been created with the intention to assist users with the following: placing orders viewing work in progress searching for

More information

Tzunami Deployer Oracle WebCenter Interaction Exporter Guide

Tzunami Deployer Oracle WebCenter Interaction Exporter Guide Tzunami Deployer Oracle WebCenter Interaction Exporter Guide Supports extraction of Oracle WebCenter Interaction components and migrate to Microsoft SharePoint using Tzunami Deployer Version 2.8 Table

More information

Installation on Windows Server 2008

Installation on Windows Server 2008 USER GUIDE MADCAP PULSE 4 Installation on Windows Server 2008 Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described

More information

Tzunami Deployer AquaLogic Exporter Guide Supports extraction of Web Components on the server and guides migration to Microsoft SharePoint.

Tzunami Deployer AquaLogic Exporter Guide Supports extraction of Web Components on the server and guides migration to Microsoft SharePoint. Tzunami Deployer AquaLogic Exporter Guide Supports extraction of Web Components on the server and guides migration to Microsoft SharePoint. Version 2.7 Table of Content PREFACE... I INTENDED AUDIENCE...

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

User Guide. Connect to: for use with SharePoint 2010 and 2013 version 1.0. June 2014 Issue 1.0

User Guide. Connect to: for use with SharePoint 2010 and 2013 version 1.0. June 2014 Issue 1.0 User Guide Connect to: for use with SharePoint 2010 and 2013 version 1.0 June 2014 Issue 1.0 Fuji Xerox Australia 101 Waterloo Road North Ryde NSW 2113 For technical queries please contact the Fuji Xerox

More information

Using ANM With Virtual Data Centers

Using ANM With Virtual Data Centers APPENDIXB Date: 3/8/10 This appendix describes how to integrate ANM with VMware vcenter Server, which is a third-party product for creating and managing virtual data centers. Using VMware vsphere Client,

More information

Tzunami Deployer Oracle WebCenter Interaction Exporter Guide

Tzunami Deployer Oracle WebCenter Interaction Exporter Guide Tzunami Deployer Oracle WebCenter Interaction Exporter Guide Supports extraction of Oracle WebCenter Interaction components and migrate to Microsoft SharePoint using Tzunami Deployer Version 3.2 Table

More information

Infoblox Authenticated DHCP

Infoblox Authenticated DHCP Infoblox Authenticated DHCP Unified Visitor Management amigopod Technical Note Revision 1.1 5 July 2010 United States of America +1 (888) 590-0882 Europe, Middle East & Asia +34 91 766 57 22 Australia

More information

CLI users are not listed on the Cisco Prime Collaboration User Management page.

CLI users are not listed on the Cisco Prime Collaboration User Management page. Cisco Prime Collaboration supports creation of user roles. A user can be assigned the Super Administrator role. A Super Administrator can perform tasks that both system administrator and network administrator

More information

Manage Administrators and Admin Access Policies

Manage Administrators and Admin Access Policies Manage Administrators and Admin Access Policies Role-Based Access Control, on page 1 Cisco ISE Administrators, on page 1 Cisco ISE Administrator Groups, on page 3 Administrative Access to Cisco ISE, on

More information

Manage Administrators and Admin Access Policies

Manage Administrators and Admin Access Policies Manage Administrators and Admin Access Policies Role-Based Access Control, on page 1 Cisco ISE Administrators, on page 1 Cisco ISE Administrator Groups, on page 3 Administrative Access to Cisco ISE, on

More information

Setting up B2B and Frequently Asked Questions

Setting up B2B and Frequently Asked Questions Setting up B2B and Frequently Asked s 11-1-2017 16:45 Content 1 Steps to perform... 2 1.1 Step 1: Read the available documentation... 2 1.2 Step 2: Request a certificate... 2 1.3 Step 2: Get your IT ready...

More information

Installation Guide for Pulse on Windows Server 2012

Installation Guide for Pulse on Windows Server 2012 USER GUIDE MADCAP PULSE 4 Installation Guide for Pulse on Windows Server 2012 Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The

More information

EMS MASTER CALENDAR Installation Guide

EMS MASTER CALENDAR Installation Guide EMS MASTER CALENDAR Installation Guide V44.1 Last Updated: May 2018 EMS Software emssoftware.com/help 800.440.3994 2018 EMS Software, LLC. All Rights Reserved. Table of Contents CHAPTER 1: Introduction

More information

Setting Up the Server

Setting Up the Server Managing Licenses, page 1 Cross-launch from Prime Collaboration Provisioning, page 5 Integrating Prime Collaboration Servers, page 6 Single Sign-On for Prime Collaboration, page 7 Changing the SSL Port,

More information

Cloud Compute. Backup Portal User Guide

Cloud Compute. Backup Portal User Guide Cloud Compute Backup Portal User Guide Contents Service Overview... 4 Gaining Access... 5 Operational Guide... 6 Landing Page... 6 Profile View... 6 Detailed View... 8 Overview... 8 Cloud Backup... 8

More information

Contents. Egress Switch Administration Panel User Guide. Switch Administration Panel- Quick Start Guide

Contents. Egress Switch Administration Panel User Guide. Switch Administration Panel- Quick Start Guide Electronic Version Switch Administration Panel- Quick Start Guide Contents Contents... 1 Installing Switch to User s Machines... 2 Adding Organizational Units... 3 Inviting Users... 4 Egress Switch Administration

More information

Perceptive TransForm Web Services Autowrite

Perceptive TransForm Web Services Autowrite Perceptive TransForm Web Services Autowrite Getting Started Guide Version 8.10.x Overview The 8.10.0 release of TransForm provides the ability to transmit form data using a web service as the destination

More information

Important notice regarding accounts used for installation and configuration

Important notice regarding accounts used for installation and configuration System Requirements Operating System Nintex Reporting 2008 can be installed on Microsoft Windows Server 2003 or 2008 (32 and 64 bit supported for both OS versions). Browser Client Microsoft Internet Explorer

More information

Tzunami Deployer Hummingbird DM Exporter Guide

Tzunami Deployer Hummingbird DM Exporter Guide Tzunami Deployer Hummingbird DM Exporter Guide Version 2.5 Copyright 2010. Tzunami Inc. All rights reserved. All intellectual property rights in this publication are owned by Tzunami, Inc. and protected

More information

CLI users are not listed on the Cisco Prime Collaboration User Management page.

CLI users are not listed on the Cisco Prime Collaboration User Management page. Cisco Prime Collaboration supports creation of user roles. A user can be assigned the Super Administrator role. A Super Administrator can perform tasks that both system administrator and network administrator

More information

Online Reporting and Information Management System (ORIMS) Manage Financial Returns User Guide for Banks & Trust Companies

Online Reporting and Information Management System (ORIMS) Manage Financial Returns User Guide for Banks & Trust Companies (ORIMS) Manage Financial Returns User Guide for Banks & Trust Companies March 31, 2015 Version 1.0 Version History Version Changes Date 1.0 Original release March 31, 2015 2 Table of Contents 1. Introduction...

More information

Guidelines on Dormant Accounts Web Reporting System

Guidelines on Dormant Accounts Web Reporting System The Central Bank of The Bahamas Guidelines on Dormant Accounts Web Reporting System January, 2009 Page 1 Introduction The Central Bank of The Bahamas Dormant Accounts Reporting System (CBOB DARS) is a

More information

Internet Script Editor

Internet Script Editor ISE Application, page 1 ISE Functionality, page 1 ISE Requirements, page 2 TLS Requirements for ISE, page 2 ISE Installation and Upgrades, page 5 Troubleshooting Tools for, page 7 ISE Application You can

More information

DAVE. SOAP Web Services

DAVE. SOAP Web Services DAVE SOAP Web Services Introduction This document provides information about the Dave Web Services API and serves as a basic explanation for people with technicals skills who are making a connection to

More information

ControlPoint. Native Installation Guide. February 05,

ControlPoint. Native Installation Guide. February 05, ControlPoint Native Installation Guide February 05, 2018 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH., 2008-2018 All rights reserved. No part or section of the contents

More information

Return Material Authorization (RMA) Request

Return Material Authorization (RMA) Request Page of 7 Purpose: This work instruction is intended to explain in detail the steps required in the submission of a Return Material Authorization (RMA) via the C-B Portal. Responsibility: Sales Representation

More information

Tyler Dashboard. User Guide Version 6.0. For more information, visit

Tyler Dashboard. User Guide Version 6.0. For more information, visit Tyler Dashboard User Guide Version 6.0 For more information, visit www.tylertech.com. TABLE OF CONTENTS Tyler Dashboard... 4 Tyler Dashboard Features... 4 Browse... 5 Page... 5 Dashboard... 5 Views...

More information

User Guide: Automated Clearing House (ACH) Client Site Access

User Guide: Automated Clearing House (ACH) Client Site Access User Guide: Automated Clearing House (ACH) Client Site Access This document is the property of Bank of Saint Lucia Limited. Reproduction of this document or any part thereof, in any form or by any means,

More information

Setting Up Resources in VMware Identity Manager

Setting Up Resources in VMware Identity Manager Setting Up Resources in VMware Identity Manager VMware Identity Manager 2.7 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

Loan Closing Advisor SM. User Guide. December 2017

Loan Closing Advisor SM. User Guide. December 2017 Loan Closing Advisor SM User Guide December 2017 Notice This User Guide is Freddie Mac s CONFIDENTIAL INFORMATION as defined in and subject to the provisions of the Freddie Mac Single Family Seller/Servicer

More information

Participant Instructions for Using Blackboard

Participant Instructions for Using Blackboard Participant Instructions for Using Blackboard Logging In Web Address http://learn.eku.edu. You must click the bottom login button labeled Other Blackboard Users. Username: 2utcfirstname_lastname (insert

More information

Version 1.5 Paribus Discovery for Saleslogix User Guide

Version 1.5 Paribus Discovery for Saleslogix User Guide Version 1.5 Paribus Discovery for Saleslogix User Guide Document Version 1.3 Release Date: July 2014 QGate Software Limited D2 Fareham Heights, Standard Way, Fareham Hampshire, PO16 8XT United Kingdom

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

Silk Performance Manager Installation and Setup Help

Silk Performance Manager Installation and Setup Help Silk Performance Manager 18.5 Installation and Setup Help Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright 2004-2017 Micro Focus. All rights reserved.

More information

ControlPoint. Quick Start Guide. November 09,

ControlPoint. Quick Start Guide. November 09, ControlPoint Quick Start Guide November 09, 2017 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH., 2008-2017 All rights reserved. No part or section of the contents of this

More information

Configuring the SMA 500v Virtual Appliance

Configuring the SMA 500v Virtual Appliance Using the SMA 500v Virtual Appliance Configuring the SMA 500v Virtual Appliance Registering Your Appliance Using the 30-day Trial Version Upgrading Your Appliance Configuring the SMA 500v Virtual Appliance

More information

MHC CAR USER GUIDE

MHC CAR USER GUIDE One Connection for a Healthier Missouri MHC CAREMAIL USER GUIDE Email address: helpdesk@missourihealthconnection.org Phone: 1-866-350-4778 www.missourihealthconnection.org 1 P a g e Contents About Direct

More information

Objective: Review how to use access the Bulkvs.com Origination and 911 SOAP API using SOAP UI

Objective: Review how to use access the Bulkvs.com Origination and 911 SOAP API using SOAP UI Objective: Review how to use access the Bulkvs.com Origination and 911 SOAP API using SOAP UI Perquisites: 1. Have access to your bulkvs.com API ID 2. Have an MD5 equivalent of your bllkvs.com password

More information

DreamFactory Security Guide

DreamFactory Security Guide DreamFactory Security Guide This white paper is designed to provide security information about DreamFactory. The sections below discuss the inherently secure characteristics of the platform and the explicit

More information

TaskCentre v4.5 SalesLogix Connector Tool White Paper

TaskCentre v4.5 SalesLogix Connector Tool White Paper TaskCentre v4.5 SalesLogix Connector Tool White Paper Document Number: WP010-04 Issue: 01 Orbis Software Limited 2008 Table of Contents ABOUT SALESLOGIX CONNECTOR TOOL... 1 INTRODUCTION... 3 SalesLogix

More information

Coveo Platform 6.5. Microsoft SharePoint Connector Guide

Coveo Platform 6.5. Microsoft SharePoint Connector Guide Coveo Platform 6.5 Microsoft SharePoint Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing

More information

SAML-Based SSO Configuration

SAML-Based SSO Configuration Prerequisites, page 1 SAML SSO Configuration Task Flow, page 5 Reconfigure OpenAM SSO to SAML SSO Following an Upgrade, page 9 SAML SSO Deployment Interactions and Restrictions, page 9 Prerequisites NTP

More information

Comodo SecureBox Management Console Software Version 1.9

Comodo SecureBox Management Console Software Version 1.9 6. Comodo SecureBox Management Console Software Version 1.9 Administrator Guide Guide Version 1.9.032817 Comodo Security Solutions 1255 Broad Street Clifton, NJ 07013 Table of Contents 1.Introduction to

More information

SAML-Based SSO Solution

SAML-Based SSO Solution About SAML SSO Solution, page 1 Single Sign on Single Service Provider Agreement, page 2 SAML-Based SSO Features, page 2 Basic Elements of a SAML SSO Solution, page 3 Cisco Unified Communications Applications

More information

HP Database and Middleware Automation

HP Database and Middleware Automation HP Database and Middleware Automation For Windows Software Version: 10.10 SQL Server Database Refresh User Guide Document Release Date: June 2013 Software Release Date: June 2013 Legal Notices Warranty

More information

Protect My Ministry Integrated Background Checks for Church Community Builder

Protect My Ministry Integrated Background Checks for Church Community Builder Protect My Ministry Integrated Background Checks for Church Community Builder Integration and User Guide Page 1 Introduction Background Check functionality through Protect My Ministry has been integrated

More information

vcenter CapacityIQ Installation Guide

vcenter CapacityIQ Installation Guide vcenter CapacityIQ 1.0.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions

More information

Industry Training Register. Guide to integration for ITOs

Industry Training Register. Guide to integration for ITOs Industry Training Register Guide to integration for ITOs Version 5.0 Objective id A823307 Published 15 January 2013 Page 2 of 29 ITR guide to integration for ITOs Contents 1 INTRODUCTION... 4 1.1 About

More information

akkadian Global Directory 3.0 System Administration Guide

akkadian Global Directory 3.0 System Administration Guide akkadian Global Directory 3.0 System Administration Guide Updated July 19 th, 2016 Copyright and Trademarks: I. Copyright: This website and its content is copyright 2014 Akkadian Labs. All rights reserved.

More information

Manage Administrators and Admin Access Policies

Manage Administrators and Admin Access Policies Manage Administrators and Admin Access Policies Role-Based Access Control, page 1 Cisco ISE Administrators, page 1 Cisco ISE Administrator Groups, page 3 Administrative Access to Cisco ISE, page 11 Role-Based

More information

Cisco TelePresence Conductor with Unified CM

Cisco TelePresence Conductor with Unified CM Cisco TelePresence Conductor with Unified CM Deployment Guide TelePresence Conductor XC3.0 Unified CM 10.x Revised February 2015 Contents Introduction 5 About this document 5 Related documentation 5 About

More information

Grandstream Networks, Inc. XML Configuration File Generator User Guide (For Windows Users)

Grandstream Networks, Inc. XML Configuration File Generator User Guide (For Windows Users) Grandstream Networks, Inc. Table of Content INTRODUCTION... 3 CHANGE LOG... 4 Version 3.1... 4 Version 3.0... 4 FILES IN THE PACKAGE... 5 Example TXT Config Template (Config_Example.txt)... 5 Example CSV

More information

Early Years - Two Year Old Funding Citizen Portal

Early Years - Two Year Old Funding Citizen Portal Early Years - Two Year Old Funding Citizen Portal last updated for the Summer 2017 (3.63) release Handbook Revision History Version Published on Summer 2017 (3.63) - 1.0 18/07/2017 Doc Ref Early Years

More information

LimeSurvey. You must have at least one group in each survey, even if you do not wish to divide the survey into multiple groups.

LimeSurvey. You must have at least one group in each survey, even if you do not wish to divide the survey into multiple groups. LimeSurvey Basic Survey Elements A survey has three integral elements, each of which must exist: 1) A survey name 2) At least one group 3) At least one question Survey Name The survey name provides the

More information

Contents. Protus Messaging Services User Guide Web Fax

Contents. Protus Messaging Services User Guide Web Fax Contents Protus Messaging Services User Guide What is?... 1 Requirements... 1 Logging In... 1 Sending a... 2 Section 1 Who are you sending your fax to?... 2 Manually enter the destinations...2 Add a contact

More information

SAML-Based SSO Solution

SAML-Based SSO Solution About SAML SSO Solution, page 1 SAML-Based SSO Features, page 2 Basic Elements of a SAML SSO Solution, page 2 SAML SSO Web Browsers, page 3 Cisco Unified Communications Applications that Support SAML SSO,

More information

Getting Started in CAMS Enterprise

Getting Started in CAMS Enterprise CAMS Enterprise Getting Started in CAMS Enterprise Unit4 Education Solutions, Inc. Published: 18 May 2016 Abstract This document is designed with the new user in mind. It details basic features and functions

More information

Metalogix ControlPoint 7.6. Advanced Iinstallation Guide

Metalogix ControlPoint 7.6. Advanced Iinstallation Guide Metalogix ControlPoint 7.6 Advanced Iinstallation Guide 2018 Quest Software Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this

More information

Brainware Intelligent Capture Visibility

Brainware Intelligent Capture Visibility Brainware Intelligent Capture Visibility Installation and Setup Guide Version: 3.2.x Written by: Product Knowledge, R&D Date: September 2018 Copyright 2009-2018 Hyland Software, Inc. and its affiliates.

More information

Genesys Interaction Recording Solution Guide. Deploying SpeechMiner for GIR

Genesys Interaction Recording Solution Guide. Deploying SpeechMiner for GIR Genesys Interaction Recording Solution Guide Deploying SpeechMiner for GIR 7/19/2018 Contents 1 Deploying SpeechMiner for GIR 1.1 Installing SpeechMiner 1.2 Upgrading SpeechMiner 1.3 Configuring SpeechMiner

More information

Administrator Manual. Last Updated: 15 March 2012 Manual Version:

Administrator Manual. Last Updated: 15 March 2012 Manual Version: Administrator Manual Last Updated: 15 March 2012 Manual Version: 1.6 http://www.happyfox.com Copyright Information Under the copyright laws, this manual may not be copied, in whole or in part. Your rights

More information

Oracle Eloqua HIPAA Advanced Data Security Add-on Cloud Service

Oracle Eloqua HIPAA Advanced Data Security Add-on Cloud Service http://docs.oracle.com Oracle Eloqua HIPAA Advanced Data Security Add-on Cloud Service Configuration Guide 2018 Oracle Corporation. All rights reserved 07-Jun-2018 Contents 1 HIPAA 3 1.0.1 What is HIPAA?

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

Importing Existing Data into LastPass

Importing Existing Data into LastPass Importing Existing Data into LastPass Once you have installed LastPass, you may need to impocort your existing password entries and secure data from another LastPass account or from another password manager

More information

Enforced Client Policy & Reporting Server (EPRS) 2.3. Administration Guide

Enforced Client Policy & Reporting Server (EPRS) 2.3. Administration Guide Enforced Client Policy & Reporting Server (EPRS) 2.3 Copyright 2016 Dell Inc. All rights reserved. This product is protected by U.S. and international copyright and intellectual property laws. Dell, the

More information

Tyler Dashboard. User Guide Version 6.3. For more information, visit

Tyler Dashboard. User Guide Version 6.3. For more information, visit Tyler Dashboard User Guide Version 6.3 For more information, visit www.tylertech.com. TABLE OF CONTENTS Tyler Dashboard... 4 Tyler Dashboard Features... 4 Search... 5 Browse... 5 Page... 6 Dashboard...

More information

Participant User Guide, Version 2.6

Participant User Guide, Version 2.6 Developers Integration Lab (DIL) Participant User Guide, Version 2.6 3/17/2013 REVISION HISTORY Author Date Description of Change 0.1 Laura Edens Mario Hyland 9/19/2011 Initial Release 1.0 Michael Brown

More information

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

End User Guide Hosting Administration Control Panel (CP)

End User Guide Hosting Administration Control Panel (CP) End User Guide Hosting Administration Control Panel (CP) MailStreet End-User Control Panel / Table of Contents Page 2 of 11 Table of Contents QUICK REFERENCE GUIDE... 3 DOCUMENTATION TYPOGRAPHICAL CONVENTIONS...

More information

Important Information

Important Information May 2014 Important Information The following information applies to Proofpoint Essentials US1 data center only. User Interface Access https://usproofpointessentials.com MX Records mx1-usppe-hosted.com

More information

Associate Teacher Guide Online Teacher Candidate Evaluation. Brock University

Associate Teacher Guide Online Teacher Candidate Evaluation. Brock University Associate Teacher Guide Online Teacher Candidate Evaluation Brock University October 2008 User Documentation Associate Teacher Edition, pg. 2 Getting Started... 3 What you will need... 3 Logging In...

More information

Configuring the D Link DVG 2101SP with a VoIP Account from: ENGIN

Configuring the D Link DVG 2101SP with a VoIP Account from: ENGIN Configuring the D Link DVG 2101SP with a VoIP Account from: ENGIN In this guide we will cover off the configuration of the D Link DVG 2101SP with a VoIP Account. Please follow the below steps in order

More information

Customer Support Procedures Sage X3 North America

Customer Support Procedures Sage X3 North America Customer Support Procedures Sage X3 North America Updated: February 14, 2016 Group plc or its licensors. All other trademarks are the property of their respective owners. Page 1 Table of Contents CONTACTING

More information

Cisco TelePresence Conductor with Cisco Unified Communications Manager

Cisco TelePresence Conductor with Cisco Unified Communications Manager Cisco TelePresence Conductor with Cisco Unified Communications Manager Deployment Guide TelePresence Conductor XC4.0 Unified CM 10.5(2) January 2016 Contents Introduction 6 About this document 6 Related

More information

Tzunami Deployer Confluence Exporter Guide

Tzunami Deployer Confluence Exporter Guide Tzunami Deployer Confluence Exporter Guide Supports extraction of Confluence Enterprise contents and migrate to Microsoft SharePoint using Tzunami Deployer. Version 2.7 Table of Content PREFACE... I INTENDED

More information

Authentication Services ActiveRoles Integration Pack 2.1.x. Administration Guide

Authentication Services ActiveRoles Integration Pack 2.1.x. Administration Guide Authentication Services ActiveRoles Integration Pack 2.1.x Administration Guide Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright.

More information

Patient Portal User Guide The Patient s Guide to Using the Portal

Patient Portal User Guide The Patient s Guide to Using the Portal 2014 Patient Portal User Guide The Patient s Guide to Using the Portal Table of Contents: What is the Patient Portal?...3 Enrolling in the Patient Portal.......... 4-19 A. Enrollment Option #1: First-Time

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 7.51 HP SiteScope Integration Guide Document Release Date: August 2009 Software Release Date: August 2009 Legal Notices Warranty The only warranties

More information

MODULE 4: ACTIVE DIRECTORY WEB SERVICE

MODULE 4: ACTIVE DIRECTORY WEB SERVICE MODULE 4: ACTIVE DIRECTORY WEB SERVICE Active Directory includes a wealth of information about your company s organization. This module will show you how to auto-populate fields in your InfoPath form with

More information

The SOAPbox User s Guide

The SOAPbox User s Guide The SOAPbox User s Guide Application Documentation Version 1.3 THE SOCIAL FOUNDRY November 9, 2012 The SOAPbox User s Guide Application Documentation Version 1.3 Congratulations on your purchase of the

More information

Design Use Cases. Students With A Goal (S.W.A.G.) June 5, Senior System Analyst Software Development Lead. User Interface Specialist

Design Use Cases. Students With A Goal (S.W.A.G.) June 5, Senior System Analyst Software Development Lead. User Interface Specialist Design Students With A Goal (S.W.A.G.) June 5, 2015 Melody Jeng Arno Gau Rachel Lee Laura Hawkins Rohan Rangray Andrew Buss Phuong Tran Chung Kang Wang Masud Rahman Kevin Mach System Architect Senior System

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