QAS Pro Web Getting Started Guide Browser Typedown

Size: px
Start display at page:

Download "QAS Pro Web Getting Started Guide Browser Typedown"

Transcription

1 Browser Typedown 1. Introduction This guide is intended to walk a Developer or Project Manager through the process of integrating the Browser Typedown implementation of QAS Pro Web into their browser-based application. It does not seek to provide low-level information about the underlying APIs or Web Services used. Details of extra resources can be found in Appendix A Further Reading 2. What is Browser Typedown? Browser Typedown utilizes the QAS Pro Web Typedown Engine to interactively guide users through validating address information. Potential errors are highlighted as the address is typed, reducing the time it takes to capture an address. It is intended for use in high volume environments such as call-centers. Implementation times are quick due to the simple nature of the integration. Below are four screenshots of a typical user experience with the implementation. When the user clicks the Accept button, as shown in Fig 4, the Browser Typedown window populates into the address fields in the target application. Details of the architecture and actual integration are outlined later in this document. Fig 1. User entering Zip Code Fig 2.User has entered street and reviews available building numbers Fig 3. User enters building number Fig 4. User selects final address QAS Pro Web Browser Typedown GSG North America.doc Page 1 of 10

2 3. Implementation Overview and Expected Timescales The following steps cover a typical implementation steps and expected timescales of QAS Pro Web. 1. Install QAS Pro Web (1 hour) 2. Integrate sample code into a single address touch point* (1 day) 3. Test and review with project stakeholders (1 day) 4. Replicate across remaining address touch points (0.5 days per touch point) 5. Deploy to production environment (2 hours) *In order to make use of the technology a set of pages must be hosted on the same site as the target application. The estimate of one day assumes a skilled developer who understands the related technologies and modifying the target application. 4. Implementation Architecture QAS Pro Web Service/Daemon QAS Pro Web can be installed as a locally hosted Web Service on most major releases of Windows, UNIX and Linux. The application includes a built-in HTTP listener so can run standalone from a Web Server. SOAP/XML Browser Typedown pages Invoked via JavaScript Browser 0 based application or website Postal Database Reference postal data is made available on CDs or via FTP download every two months by default. It takes up approximately 1GB of storage for USA and 80MB for Canada. Reference postal data is installed to the local file system alongside QAS Pro Web. No third-party database tools are required to host the data and Live Data Updates allow the data updates to be applied without any website downtime. QAS Pro Web is also available in a Software as a Service (SaaS) model through Experian, QAS On Demand platform. NOTE: On Demand implementations are currently limited to the PHP 5, C#.NET and JSP languages. QAS Pro Web Browser Typedown GSG North America.doc Page 2 of 10

3 5. Installation Overview The installation of QAS Pro Web should take up to one hour on average. Full step by step instructions are included in the file webinst.pdf available in the Docs directory on the QAS Pro Web installation image. Windows installation instructions start on page 30 of the PDF page count and for UNIX/Linux on page 45 of the PDF page count In order to complete the installation you will need the following: - QAS Pro Web installation image (available via FTP at ftp://ftp.usa.qas.com/product)* - Postal data installation image(s) (available via FTP at ftp://ftp.usa.qas.com/data)* - QAS Pro Web License Key(s) (available from your Customer Account Manager) - A machine with ample disk space (1.1GB for USA data, 100MB for Canada) - A user account with at least local administrator privileges on the target installation machine *NOTE: All zip files on the FTP site are protected with a weekly refreshed password available from you Customer Account Manager or Technical Solutions Consultant. Alternative CD images are also available. Things to Remember - Make a note of where you set the sample code to install to. This is required later on. - WINDOWS ONLY: When the installer has completed, it is necessary to activate the new data using the Administrator Console for Windows installations. This tool is available through Start, Programs, QAS Pro Web 5.xx, Administrator Console. The data Updating section can be found under the Current Data option in the left hand pane. Select the Data set to be activated and click Update Data. This will make the data available to QAS Pro Web. QAS Pro Web Browser Typedown GSG North America.doc Page 3 of 10

4 6. Coding Overview This section outlines the coding changes necessary to implement the QAS Pro Web integration code into your site. Knowledge of your website s language, HTML and JavaScript is assumed. 6.1 Make sure you have the correct sample code The Browser Typedown sample code is optionally installed as part of the standard installation of QAS Pro Web. The code is also available on the QAS Pro Web product image. Each language has its own directory stored under the Program directory. i.e. Samples.ASP, Samples.JSP. Browser Typedown sample code is available for PHP5, C#.NET, VB.NET, Classic ASP and JSP NOTE: The Browser Typedown sample code must be installed under the same website as the pages invoking it. If not, address information will be prevented from being returned to the pages by JavaScript s cross browser scripting security measures. 6.2 Configure the format of the returned address The format of the returned address is controlled via a configuration file called QAWSERVE.INI. This file can be found within the installed image (default directory: C:\Program Files\QAS\QAS Pro Web ). The QAWSERVE.INI configuration file is split into separate sections called layouts. The Windows based Configuration Editor, available at Start, Programs, QAS Pro Web, Configuration Editor, should be used to modify these Layouts. A simple layout that covers the majority of formatting needs has been created for you called Database layout. The Database layout format is as follows: Field name Max width Capitalized Address Line 1 60 characters Title Case Address Line 1 60 characters Title Case Address Line 1 60 characters Title Case City 60 characters Title Case State 60 characters Yes Zip, +4 Code 60 characters N/A Country 60 characters Yes NOTE: All Address line information is automatically populated across the address line fields according the United States Postal Service or Canada Post standards. Street and Secondary number descriptors like Road or Apartment are abbreviated by default. QAS Pro Web Browser Typedown GSG North America.doc Page 4 of 10

5 Once you have configured the desired format of the returned address the Layout name needs to be specified within the Browser Typedown code. This is achieved by setting a variable in the relevant Browser Typedown configuration file. To determine the correct file and variable name to edit please refer to the table below: Language Browser Typedown configuration file name Variable containing layout name Classic ASP Constants.asp CONTROL_LAYOUT JSP WEB-INF\Web.xml QasLayout PHP 5 Constants.inc CONTROL_LAYOUT VB.NET / C#.NET Web.config com.qas.proweb.layout 6.3 Configure the location of QAS Pro Web in the Browser Typedown pages In order for address lookups to be successful it is necessary for the Browser Typedown pages to know where QAS Pro Web application is located on the network. If both the Browser Typedown pages and QAS Pro Web are installed on the same machine the default location of can be used. If you wish to use QAS Pro Web with applications installed across multiple web servers use the table below to determine the correct file and variable name to update: Language Browser Typedown configuration file name Variable containing location of QAS Pro Web Classic ASP Constants.asp CONTROL_WSDL_URN JSP WEB-INF\Web.xml QasEndpoint PHP 5 Constants.inc CONTROL_WSDL_URN VB.NET / C#.NET Web.config com.qas.proweb.serverurl NOTE: The Web Service must be accessible from the machine where the Browser Typedown pages are installed. To test this connectivity open a web browser on the machine where the Browser Typedown pages are installed and browse to the location of the Web Service: i.e. * * where my_qas_server is the server on which QAS Pro Web is installed. If the port is open on that machine you should see a list of XML displayed. If you do not then you need to contact your network administrator to open up port 2021 to the machine(s) on which the browser Typedown pages are installed. QAS Pro Web Browser Typedown GSG North America.doc Page 5 of 10

6 6.4 Test the functionality outside of your application Open a web browser and browse to RapidIndex.htm within the directory where you installed the sample code during installation. e.g. for Classic ASP: NOTE: JSP is provided in the form of a war file which will need to be deployed as per the documentation of your Web Server. Click the Find Address Button to invoke the Browser Typedown pages. Enter in the ZIP This should resolve to 12345, Schenectady, NY. Click on the Select button to display the full address as below and then Accept button to display the full address in the original page. QAS Pro Web Browser Typedown GSG North America.doc Page 6 of 10

7 This confirms the Browser Typedown functionality is working outside of your application. 6.5 Modify your target page In order to implement the sample code into your application the following steps need to be carried out: Determine how the functionality is triggered In order to get the quickest user adoption and encourage usage there are two recommended ways to trigger the Browser Typedown functionality: - A new button called Capture Address - The event of tabbing into the first address field on your form but only when that field is empty* *The check on whether the address is populated is to prevent the Browser Typedown pages invoking automatically when the user is simply tabbing through address information that is already populated Create a function that will load the Browser Typedown pages into a new browser window A single function called popuppro should be created that is then assigned to the new Capture Address button or event. popuppro will contain a single line of JavaScript that opens a new browser window containing the Browser Typedown pages and then calls a function to handle the returned address when the user has found an address. The JavaScript varies slightly across different languages and can be found in the installed RapidIndex.htm. The example from the C#.NET sample code is below: // Pop-up the Pro window for rapid address searching function popuppro() { } var ProPopup = window.open( "RapidSearch.aspx?DataID=&Callback=handleProClose", "ProPopup", "scrollbars=no,resizable=yes,width=590,height=560"); NOTE: if you are using only one country data set you should set the DataID variable to the three letter ISO code to automatically set that country in the Country dropdown list. i.e. "RapidSearch.aspx?DataID=USA&Callback=handleProClose", QAS Pro Web Browser Typedown GSG North America.doc Page 7 of 10

8 6.5.3 Create a function to be called when the Address is returned When the address is returned from the Browser Typedown pages a function called handleproclose must be created to handle the return address and populate the relevant fields in your page. An example of this function is listed below. function handleproclose(asaddress) { } var afields = document.getelementsbyname("address"); for (i = 0; i < afields.length; i++) { } afields[0].focus(); afields[i].value = (i < asaddress.length)? asaddress[i] : ""; NOTE: This assumes that you have an array of address lines with the name Address on your calling page. This would need to be modified according to the structure of your address fields in your application. 7. Testing your implementation This section outlines how you should approach testing the QAS Pro Web functionality within your application. It is important to confirm that you can replicate the expected behavior of QAS Pro Web and that the implementation had not negatively impacted any of your existing functionality. 7.1 Impact to existing processes when QAS Pro Web is unavailable If QAS Pro Web is not maintained correctly the product may cease to work. In this unlikely event it is important that your users are not impacted by any QAS Pro Web downtime. For Windows, installs stop the QAS Pro Server 5.xx service; for UNIX/Linux installs kill the qaswvd daemon. Are you able to still complete your standard business processes with QAS Pro Web integrated but not functioning? The Browser Typedown pages should invoke with an error but allow users to enter the address into the new form or close the window and enter the information directly into your application. 7.2 Invoking the Browser Typedown pages The Browser Typedown pages should invoke automatically when tabbing into the first address line in your application but only when that field is empty. If the field is populated the Browser Typedown pages should not invoke. Does this invocation functionality work as expected? Does the new Capture Address button you added to your form invoke the Browser Typedown pages as expected? QAS Pro Web Browser Typedown GSG North America.doc Page 8 of 10

9 7.3 Populating address fields It is important that the configuration of the returned address matches your business requirements. Capture a selection of addresses and confirm that the addresses are populated into your application as expected. A table of sample addresses to locate is below: Type of Address US Example Canada Example Standard 62 Eliot Rd Arlington MA Tweed Cres LONDON ON N5X 1Z5 High Rise 1889 Broadway Apt 306 San Francisco CA PO Box PO Box 121 San Francisco CA Ave EDSON AB T7E 0A4 PO Box 1 Stn A TORONTO ON M5W 1A2 Organizational Experian QAS 125 Summer St Ste 1910 Boston MA Canada Trust Bank 1511 Bayview Ave EAST YORK ON M4G 4E2 NOTE: If you have multiple touchpoints throughout your application you should ensure these are tested thoroughly as well. 8. Deployment and Maintenance Considerations 8.1 Deployment Once the sample code is integrated and full tested across all touchpoints of your application it will be ready to be moved into a product environment. In order the make this transition as smooth as possible it is important to follow these steps: Install QAS Pro Web and data onto your production machine and activate the data using the Administrator Console (details in section 5) Copy across your layout from your initial QAWSERVE.INI and add to the equivalent file on your newly installed production installation of QAS Pro Web. Restart the QAS Pro Server 5.x service to refresh the configuration changes. Update the layout and location of the QAS Pro Web installation as per sections 6.2 and 6.3. Test your installation as per section 7 QAS Pro Web Browser Typedown GSG North America.doc Page 9 of 10

10 8.2 Maintenance Once you are live in a production environment with QAS Pro Web it is highly recommended that you record the following information and it to your Customer Account Manager. Server name where QAS Pro Web is installed Name of Layout used Copies of QAWSERVE.INI and QAWORLD.INI This will help us when we need to provide support to you should you lose your QAS environment or unexpectedly change the staff responsible for the administration of QAS. Data updates need to be applied at least every two months by default. If these data updates are not applied and a whole update cycle is missed your installation will cease to work. When you initially purchased QAS Pro Web a contact at your organization was specified to receive the Data Updates and related information. It is important to let us know if that contact changes to allow for continuity of support. You can also sign up alternative contacts to receive the same data updates related correspondence as a back up or sign up our FTP updates program. Details on the update schedule and installation process can be found here: Conclusion By following this guide you should have been able to implement QAS Pro Web using the Browser Typedown implementation method. We hope that you found this guide useful and welcome your feedback, positive or negative at us.support@qas.com. For further assistance with your integration project you can contact us or access resources in the following ways: Support us.support@qas.com Support Phone: (888) Customer forum: Main company website: Appendix A Further Reading The full documentation for the QAS Pro Web product is available within the Docs directory on the QAS Pro Web installation image. The files are as follows: Web.pdf: Generic Integration guide Webinst.pdf: Installation and Administration Guide Webrefcapi.pdf: Technical Reference Guide C API Webrefcommon.pdf: Technical Reference Guide Common Classes Webrefwsdl.pdf: Technical Reference Guide WSDL QAS Pro Web Browser Typedown GSG North America.doc Page 10 of 10

Novell ZENworks Asset Management 7.5

Novell ZENworks Asset Management 7.5 Novell ZENworks Asset Management 7.5 w w w. n o v e l l. c o m October 2006 INSTALLATION GUIDE Table Of Contents 1. Installation Overview... 1 If you are upgrading... 1 Installation Choices... 1 ZENworks

More information

IBM WebSphere Application Server Version 7.0

IBM WebSphere Application Server Version 7.0 IBM WebSphere Application Server Version 7.0 Centralized Installation Manager for IBM WebSphere Application Server Network Deployment Version 7.0 Note: Before using this information, be sure to read the

More information

QAS Small Business for Salesforce CRM

QAS Small Business for Salesforce CRM INTRODUCTION This document provides an overview of integrating and configuring QAS for Salesforce CRM. It will take you through the standard integration and configuration process and also provides an appendix

More information

BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008

BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008 BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008 BUILDER 3.0 1 Table of Contents Chapter 1: Installation Overview... 3 Introduction... 3 Minimum Requirements...

More information

How To Install Powerpoint 6 On A Windows Server With A Powerpoint 2.5 (Powerpoint) And Powerpoint 3.5.5 On A Microsoft Powerpoint 4.5 Powerpoint (Powerpoints) And A Powerpoints 2

How To Install Powerpoint 6 On A Windows Server With A Powerpoint 2.5 (Powerpoint) And Powerpoint 3.5.5 On A Microsoft Powerpoint 4.5 Powerpoint (Powerpoints) And A Powerpoints 2 DocAve 6 Service Pack 1 Installation Guide Revision C Issued September 2012 1 Table of Contents About the Installation Guide... 4 Submitting Documentation Feedback to AvePoint... 4 Before You Begin...

More information

FileMaker Server 7 and FileMaker Server 7 Advanced Documentation Errata

FileMaker Server 7 and FileMaker Server 7 Advanced Documentation Errata FileMaker Server 7 and FileMaker Server 7 Advanced Documentation Errata The following pages clarify information or correct errors in the FileMaker Server 7 and FileMaker Server 7 Advanced documentation.

More information

Oracle Universal Content Management 10.1.3

Oracle Universal Content Management 10.1.3 Date: 2007/04/16-10.1.3 Oracle Universal Content Management 10.1.3 Document Management Quick Start Tutorial Oracle Universal Content Management 10.1.3 Document Management Quick Start Guide Page 1 Contents

More information

IIS, FTP Server and Windows

IIS, FTP Server and Windows IIS, FTP Server and Windows The Objective: To setup, configure and test FTP server. Requirement: Any version of the Windows 2000 Server. FTP Windows s component. Internet Information Services, IIS. Steps:

More information

Reconfiguring VMware vsphere Update Manager

Reconfiguring VMware vsphere Update Manager Reconfiguring VMware vsphere Update Manager vsphere Update Manager 6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a

More information

Trend ScanMail. for Microsoft Exchange. Quick Start Guide

Trend ScanMail. for Microsoft Exchange. Quick Start Guide Trend ScanMail for Microsoft Exchange Quick Start Guide Trend ScanMail for Microsoft Exchange ScanMail for Exchange This Quick Start Guide provides a step-by-step guide to installing ScanMail for Exchange,

More information

System Administration Training Guide. S100 Installation and Site Management

System Administration Training Guide. S100 Installation and Site Management System Administration Training Guide S100 Installation and Site Management Table of contents System Requirements for Acumatica ERP 4.2... 5 Learning Objects:... 5 Web Browser... 5 Server Software... 5

More information

Installing the ASP.NET VETtrak APIs onto IIS 5 or 6

Installing the ASP.NET VETtrak APIs onto IIS 5 or 6 Installing the ASP.NET VETtrak APIs onto IIS 5 or 6 2 Installing the ASP.NET VETtrak APIs onto IIS 5 or 6 3... 3 IIS 5 or 6 1 Step 1- Install/Check 6 Set Up and Configure VETtrak ASP.NET API 2 Step 2 -...

More information

Application Servers - BEA WebLogic. Installing the Application Server

Application Servers - BEA WebLogic. Installing the Application Server Proven Practice Application Servers - BEA WebLogic. Installing the Application Server Product(s): IBM Cognos 8.4, BEA WebLogic Server Area of Interest: Infrastructure DOC ID: AS01 Version 8.4.0.0 Application

More information

Pearl Echo Installation Checklist

Pearl Echo Installation Checklist Pearl Echo Installation Checklist Use this checklist to enter critical installation and setup information that will be required to install Pearl Echo in your network. For detailed deployment instructions

More information

Installing, Uninstalling, and Upgrading Service Monitor

Installing, Uninstalling, and Upgrading Service Monitor CHAPTER 2 Installing, Uninstalling, and Upgrading Service Monitor This section contains the following topics: Preparing to Install Service Monitor, page 2-1 Installing Cisco Unified Service Monitor, page

More information

Business Process Management IBM Business Process Manager V7.5

Business Process Management IBM Business Process Manager V7.5 Business Process Management IBM Business Process Manager V7.5 Federated task management for BPEL processes and human tasks This presentation introduces the federated task management feature for BPEL processes

More information

PLEASE NOTE: The client data used in these manuals is purely fictional.

PLEASE NOTE: The client data used in these manuals is purely fictional. Welcome! CAREWare Quick Start guides will walk you through the basics of setting up, managing and using the main CAREWare functions. It is intended for non-technical users who just need to get basic information

More information

Uptime Infrastructure Monitor. Installation Guide

Uptime Infrastructure Monitor. Installation Guide Uptime Infrastructure Monitor Installation Guide This guide will walk through each step of installation for Uptime Infrastructure Monitor software on a Windows server. Uptime Infrastructure Monitor is

More information

Advanced Service Design

Advanced Service Design vcloud Automation Center 6.0 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

SSO Plugin. J System Solutions. Upgrading SSO Plugin 3x to 4x - BMC AR System & Mid Tier. http://www.javasystemsolutions.com

SSO Plugin. J System Solutions. Upgrading SSO Plugin 3x to 4x - BMC AR System & Mid Tier. http://www.javasystemsolutions.com SSO Plugin Upgrading SSO Plugin 3x to 4x - BMC AR System & Mid Tier J System Solutions JSS SSO Plugin Upgrading 3x to 4x Introduction... 3 [Prerequisite] Generate a new license... 4 [Prerequisite] Download

More information

SARANGSoft WinBackup Business v2.5 Client Installation Guide

SARANGSoft WinBackup Business v2.5 Client Installation Guide SARANGSoft WinBackup Business v2.5 Client Installation Guide (November, 2015) WinBackup Business Client is a part of WinBackup Business application. It runs in the background on every client computer that

More information

SonicWALL CDP 5.0 Microsoft Exchange InfoStore Backup and Restore

SonicWALL CDP 5.0 Microsoft Exchange InfoStore Backup and Restore SonicWALL CDP 5.0 Microsoft Exchange InfoStore Backup and Restore Document Scope This solutions document describes how to configure and use the Microsoft Exchange InfoStore Backup and Restore feature in

More information

CYCLOPE let s talk productivity

CYCLOPE let s talk productivity Cyclope 6 Installation Guide CYCLOPE let s talk productivity Cyclope Employee Surveillance Solution is provided by Cyclope Series 2003-2014 1 P age Table of Contents 1. Cyclope Employee Surveillance Solution

More information

Cloud Portal for imagerunner ADVANCE

Cloud Portal for imagerunner ADVANCE Cloud Portal for imagerunner ADVANCE User's Guide Please read this guide before operating this product. After you finish reading this guide, store it in a safe place for future reference. ENG How This

More information

SQL Server Setup for Assistant/Pro applications Compliance Information Systems

SQL Server Setup for Assistant/Pro applications Compliance Information Systems SQL Server Setup for Assistant/Pro applications Compliance Information Systems The following document covers the process of setting up the SQL Server databases for the Assistant/PRO software products form

More information

SOA Software API Gateway Appliance 7.1.x Administration Guide

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

More information

R i o L i n x s u p p o r t @ r i o l i n x. c o m 1 / 3 0 / 2 0 1 2

R i o L i n x s u p p o r t @ r i o l i n x. c o m 1 / 3 0 / 2 0 1 2 XTRASHARE INSTALLATION GUIDE This is the XtraShare installation guide Development Guide How to develop custom solutions with Extradium for SharePoint R i o L i n x s u p p o r t @ r i o l i n x. c o m

More information

Portions of this product were created using LEADTOOLS 1991-2009 LEAD Technologies, Inc. ALL RIGHTS RESERVED.

Portions of this product were created using LEADTOOLS 1991-2009 LEAD Technologies, Inc. ALL RIGHTS RESERVED. Installation Guide Lenel OnGuard 2009 Installation Guide, product version 6.3. This guide is item number DOC-110, revision 1.038, May 2009 Copyright 1992-2009 Lenel Systems International, Inc. Information

More information

HarePoint Password Change Manual

HarePoint Password Change Manual HarePoint Password Change Manual For SharePoint Server 2013, SharePoint Foundation 2013, SharePoint Server 2010, SharePoint Foundation 2010, Microsoft Office SharePoint Server 2007 and Microsoft Windows

More information

Installing The SysAidTM Server Locally

Installing The SysAidTM Server Locally Installing The SysAidTM Server Locally Document Updated: 17 October 2010 Introduction SysAid is available in two editions: a fully on-demand ASP solution and an installed, in-house solution for your server.

More information

Table of Contents. CHAPTER 1 About This Guide... 9. CHAPTER 2 Introduction... 11. CHAPTER 3 Database Backup and Restoration... 15

Table of Contents. CHAPTER 1 About This Guide... 9. CHAPTER 2 Introduction... 11. CHAPTER 3 Database Backup and Restoration... 15 Table of Contents CHAPTER 1 About This Guide......................... 9 The Installation Guides....................................... 10 CHAPTER 2 Introduction............................ 11 Required

More information

Reconfiguration of VMware vcenter Update Manager

Reconfiguration of VMware vcenter Update Manager Reconfiguration of VMware vcenter Update Manager Update 1 vcenter Update Manager 4.1 This document supports the version of each product listed and supports all subsequent versions until the document is

More information

SSL Management Reference

SSL Management Reference www.novell.com/documentation SSL Management Reference ZENworks 11 Support Pack 4 July 2015 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of this

More information

MIGS Payment Client Installation Guide. EGate User Manual

MIGS Payment Client Installation Guide. EGate User Manual MIGS Payment Client Installation Guide EGate User Manual April 2004 Copyright The information contained in this manual is proprietary and confidential to MasterCard International Incorporated (MasterCard)

More information

Spectrum Technology Platform. Version 9.0. Administration Guide

Spectrum Technology Platform. Version 9.0. Administration Guide Spectrum Technology Platform Version 9.0 Administration Guide Contents Chapter 1: Getting Started...7 Starting and Stopping the Server...8 Installing the Client Tools...8 Starting the Client Tools...9

More information

Mirtrak 6 Powered by Cyclope

Mirtrak 6 Powered by Cyclope Mirtrak 6 Powered by Cyclope Installation Guide Mirtrak Activity Monitoring Solution v6 is powered by Cyclope Series 2003-2013 Info Technology Supply Ltd. 2 Hobbs House, Harrovian Business Village, Bessborough

More information

Portions of this product were created using LEADTOOLS 1991-2010 LEAD Technologies, Inc. ALL RIGHTS RESERVED.

Portions of this product were created using LEADTOOLS 1991-2010 LEAD Technologies, Inc. ALL RIGHTS RESERVED. Installation Guide Lenel OnGuard 2010 Installation Guide, product version 6.4. This guide is item number DOC-110, revision 1.045, May 2010 Copyright 1995-2010 Lenel Systems International, Inc. Information

More information

Bitrix Site Manager ASP.NET. Installation Guide

Bitrix Site Manager ASP.NET. Installation Guide Bitrix Site Manager ASP.NET Installation Guide Contents Introduction... 4 Chapter 1. Checking for IIS Installation... 5 Chapter 2. Using An Archive File to Install Bitrix Site Manager ASP.NET... 7 Preliminary

More information

ManageEngine IT360. Professional Edition Installation Guide. [ims-eval@manageengine.com]

ManageEngine IT360. Professional Edition Installation Guide. [ims-eval@manageengine.com] ManageEngine IT360 (Division of ZOHO Corporation) ) www.manageengine.com/it360 ManageEngine IT360 Professional Edition Installation Guide [ims-eval@manageengine.com] [This document is a guideline for installing

More information

Working With Virtual Hosts on Pramati Server

Working With Virtual Hosts on Pramati Server Working With Virtual Hosts on Pramati Server 13 Overview Virtual hosting allows a single machine to be addressed by different names. There are two ways for configuring Virtual Hosts. They are: Domain Name

More information

Installation & User Guide

Installation & User Guide CRM Internet Gateway Installation & User Guide Copyright 2008 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 148 Castle Rock Dr. Richmond Hill, Ontario L4C 5K5, Canada E-mail: info@kwizcom.com

More information

Password Policy Enforcer

Password Policy Enforcer Password Policy Enforcer Evaluator s Guide V7.6 Copyright 1998-2013 ANIXIS. All rights reserved. ANIXIS, ANIXIS Password Reset, Password Policy Enforcer, PPE/Web, Password Policy Client, Password Policy

More information

OutDisk 4.0 FTP FTP for Email Users using Microsoft Windows and/or Microsoft Outlook. 5/1/2012 2012 Encryptomatic LLC www.encryptomatic.

OutDisk 4.0 FTP FTP for Email Users using Microsoft Windows and/or Microsoft Outlook. 5/1/2012 2012 Encryptomatic LLC www.encryptomatic. OutDisk 4.0 FTP FTP for Email Users using Microsoft Windows and/or Microsoft Outlook 5/1/2012 2012 Encryptomatic LLC www.encryptomatic.com Contents What is OutDisk?... 3 OutDisk Requirements... 3 How Does

More information

SAM XFile. Trial Installation Guide Linux. Snell OD is in the process of being rebranded SAM XFile

SAM XFile. Trial Installation Guide Linux. Snell OD is in the process of being rebranded SAM XFile SAM XFile Trial Installation Guide Linux Snell OD is in the process of being rebranded SAM XFile Version History Table 1: Version Table Date Version Released by Reason for Change 10/07/2014 1.0 Andy Gingell

More information

Okta/Dropbox Active Directory Integration Guide

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

More information

SysPatrol - Server Security Monitor

SysPatrol - Server Security Monitor SysPatrol Server Security Monitor User Manual Version 2.2 Sep 2013 www.flexense.com www.syspatrol.com 1 Product Overview SysPatrol is a server security monitoring solution allowing one to monitor one or

More information

QuickDNS 4.6 Installation Instructions

QuickDNS 4.6 Installation Instructions QuickDNS 4.6 Installation Instructions for Windows, Solaris, Linux, FreeBSD and Mac OS Table of Contents INTRODUCTION 3 QuickDNS system requirements 3 INSTALLING QUICKDNS MANAGER 4 Windows installation

More information

Deploying Microsoft Operations Manager with the BIG-IP system and icontrol

Deploying Microsoft Operations Manager with the BIG-IP system and icontrol Deployment Guide Deploying Microsoft Operations Manager with the BIG-IP system and icontrol Deploying Microsoft Operations Manager with the BIG-IP system and icontrol Welcome to the BIG-IP LTM system -

More information

FileMaker Server 13. Getting Started Guide

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

More information

Customization & Enhancement Guide. Table of Contents. Index Page. Using This Document

Customization & Enhancement Guide. Table of Contents. Index Page. Using This Document Customization & Enhancement Guide Table of Contents Using This Document This document provides information about using, installing and configuring FTP Attachments applications provided by Enzigma. It also

More information

Snow Inventory. Installing and Evaluating

Snow Inventory. Installing and Evaluating Snow Inventory Installing and Evaluating Snow Software AB 2002 Table of Contents Introduction...3 1. Evaluate Requirements...3 2. Download Software...3 3. Obtain License Key...4 4. Install Snow Inventory

More information

Bosch ReadykeyPRO Unlimited Installation Guide, product version 6.5. This guide is item number DOC-110-2-029, revision 2.029, May 2012.

Bosch ReadykeyPRO Unlimited Installation Guide, product version 6.5. This guide is item number DOC-110-2-029, revision 2.029, May 2012. Bosch ReadykeyPRO Unlimited Installation Guide, product version 6.5. This guide is item number DOC-110-2-029, revision 2.029, May 2012. Copyright 1995-2012 Lenel Systems International, Inc. Information

More information

Synchronizer Installation

Synchronizer Installation Synchronizer Installation Synchronizer Installation Synchronizer Installation This document provides instructions for installing Synchronizer. Synchronizer performs all the administrative tasks for XenClient

More information

Quick Start Guide. Installation and Setup

Quick Start Guide. Installation and Setup Quick Start Guide Installation and Setup Introduction Velaro s live help and survey management system provides an exciting new way to engage your customers and website visitors. While adding any new technology

More information

Preparing Your Network for an MDsuite Installation

Preparing Your Network for an MDsuite Installation Preparing Your Network for an MDsuite Installation Professional Data Services 1632 East 23 rd Avenue Hutchinson, KS 67502 Toll-free: 800.875.0480 Fax: 858.486.5493 www.mdsuite.com Introduction This document

More information

Cyclope Internet Filtering Proxy

Cyclope Internet Filtering Proxy Cyclope Internet Filtering Proxy - Installation Guide - Cyclope-Series - 2010 - Table of contents 1. Overview - 3-2. Installation - 4-2.1. System requirements - 4-2.2. Cyclope Internet Filtering Proxy

More information

Xtreeme Search Engine Studio Help. 2007 Xtreeme

Xtreeme Search Engine Studio Help. 2007 Xtreeme Xtreeme Search Engine Studio Help 2007 Xtreeme I Search Engine Studio Help Table of Contents Part I Introduction 2 Part II Requirements 4 Part III Features 7 Part IV Quick Start Tutorials 9 1 Steps to

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

Setting Up SSL on IIS6 for MEGA Advisor

Setting Up SSL on IIS6 for MEGA Advisor Setting Up SSL on IIS6 for MEGA Advisor Revised: July 5, 2012 Created: February 1, 2008 Author: Melinda BODROGI CONTENTS Contents... 2 Principle... 3 Requirements... 4 Install the certification authority

More information

User Guide. Version 3.2. Copyright 2002-2009 Snow Software AB. All rights reserved.

User Guide. Version 3.2. Copyright 2002-2009 Snow Software AB. All rights reserved. Version 3.2 User Guide Copyright 2002-2009 Snow Software AB. All rights reserved. This manual and computer program is protected by copyright law and international treaties. Unauthorized reproduction or

More information

User Guide. SysMan Utilities. By Sysgem AG

User Guide. SysMan Utilities. By Sysgem AG SysMan Utilities User Guide By Sysgem AG Sysgem is a trademark of Sysgem AG. Other brands and products are registered trademarks of their respective holders. 2013 Sysgem AG, Lavaterstr. 45, CH-8002 Zürich,

More information

VMware vcenter Configuration Manager and VMware vcenter Application Discovery Manager Integration Guide

VMware vcenter Configuration Manager and VMware vcenter Application Discovery Manager Integration Guide VMware vcenter Configuration Manager and VMware vcenter Application Discovery Manager Integration Guide vcenter Configuration Manager 5.6 vcenter Application Discovery Manager 6.2 This document supports

More information

FlexSim LAN License Server

FlexSim LAN License Server FlexSim LAN License Server Installation Instructions Rev. 20150318 Table of Contents Introduction... 2 Using lmtools... 2 1. Download the installation files... 3 2. Install the license server... 4 3. Connecting

More information

Zend Server 4.0 Beta 2 Release Announcement What s new in Zend Server 4.0 Beta 2 Updates and Improvements Resolved Issues Installation Issues

Zend Server 4.0 Beta 2 Release Announcement What s new in Zend Server 4.0 Beta 2 Updates and Improvements Resolved Issues Installation Issues Zend Server 4.0 Beta 2 Release Announcement Thank you for your participation in the Zend Server 4.0 beta program. Your involvement will help us ensure we best address your needs and deliver even higher

More information

SQL 2012 Installation Guide. Manually installing an SQL Server 2012 instance

SQL 2012 Installation Guide. Manually installing an SQL Server 2012 instance SQL 2012 Installation Guide Manually installing an SQL Server 2012 instance Fig 1.2 Fig 1.1 Installing SQL Server Any version and edition of Microsoft SQL Server above 2000 is supported for use with the

More information

Installation and Configuration Guide for Windows and Linux

Installation and Configuration Guide for Windows and Linux Installation and Configuration Guide for Windows and Linux vcenter Operations Manager 5.7 This document supports the version of each product listed and supports all subsequent versions until the document

More information

Decision Support System Software Asset Management (SAM)

Decision Support System Software Asset Management (SAM) DecisionSupportSystem SoftwareAssetManagement(SAM) ReleaseNotes Version1.2.3 May,2010 BigFix DSSSAM1.2.3 2009-2010 BigFix, Inc. All rights reserved. BigFix, Fixlet, Relevance Engine, Powered by BigFix

More information

DocuSign for Salesforce Administrator Guide v6.1.1 Rev A Published: July 16, 2015

DocuSign for Salesforce Administrator Guide v6.1.1 Rev A Published: July 16, 2015 DocuSign for Salesforce Administrator Guide v6.1.1 Rev A Published: July 16, 2015 Copyright Copyright 2003-2015 DocuSign, Inc. All rights reserved. For information about DocuSign trademarks, copyrights

More information

Portals and Hosted Files

Portals and Hosted Files 12 Portals and Hosted Files This chapter introduces Progress Rollbase Portals, portal pages, portal visitors setup and management, portal access control and login/authentication and recommended guidelines

More information

vcenter Chargeback User s Guide

vcenter Chargeback User s Guide vcenter Chargeback 1.6 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

How To Set Up A Backupassist For An Raspberry Netbook With A Data Host On A Nsync Server On A Usb 2 (Qnap) On A Netbook (Qnet) On An Usb 2 On A Cdnap (

How To Set Up A Backupassist For An Raspberry Netbook With A Data Host On A Nsync Server On A Usb 2 (Qnap) On A Netbook (Qnet) On An Usb 2 On A Cdnap ( WHITEPAPER BackupAssist Version 5.1 www.backupassist.com Cortex I.T. Labs 2001-2008 2 Contents Introduction... 3 Hardware Setup Instructions... 3 QNAP TS-409... 3 Netgear ReadyNas NV+... 5 Drobo rev1...

More information

Scenarios for Setting Up SSL Certificates for View

Scenarios for Setting Up SSL Certificates for View Scenarios for Setting Up SSL Certificates for View VMware Horizon 6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a

More information

Installation and Configuration Guide for Windows and Linux

Installation and Configuration Guide for Windows and Linux Installation and Configuration Guide for Windows and Linux vcenter Operations Manager 5.0.3 This document supports the version of each product listed and supports all subsequent versions until the document

More information

Spector 360 Deployment Guide. Version 7

Spector 360 Deployment Guide. Version 7 Spector 360 Deployment Guide Version 7 December 11, 2009 Table of Contents Deployment Guide...1 Spector 360 DeploymentGuide... 1 Installing Spector 360... 3 Installing Spector 360 Servers (Details)...

More information

Quick Reference Guide: Shared Hosting

Quick Reference Guide: Shared Hosting : Shared Hosting TABLE OF CONTENTS GENERAL INFORMATION...2 WEB SERVER PLATFORM SPECIFIC INFORMATION...2 WEBSITE TRAFFIC ANALYSIS TOOLS...3 DETAILED STEPS ON HOW TO PUBLISH YOUR WEBSITE...6 FREQUENTLY ASKED

More information

Event Manager. LANDesk Service Desk

Event Manager. LANDesk Service Desk Event Manager LANDesk Service Desk LANDESK SERVICE DESK EVENT MANAGER GUIDE This document contains information that is the proprietary and confidential property of LANDesk Software, Inc. and/or its affiliated

More information

SafeWord Domain Login Agent Step-by-Step Guide

SafeWord Domain Login Agent Step-by-Step Guide SafeWord Domain Login Agent Step-by-Step Guide Author Johan Loos Date January 2009 Version 1.0 Contact johan@accessdenied.be Table of Contents Table of Contents... 2 Why SafeWord Agent for Windows Domains?...

More information

IBM WebSphere Application Server Communications Enabled Applications Setup guide

IBM WebSphere Application Server Communications Enabled Applications Setup guide Copyright IBM Corporation 2009, 2011 All rights reserved IBM WebSphere Application Server Communications Enabled Applications Setup guide What this exercise is about... 1 Lab requirements... 2 What you

More information

7.x Upgrade Instructions. 2015 Software Pursuits, Inc.

7.x Upgrade Instructions. 2015 Software Pursuits, Inc. 7.x Upgrade Instructions 2015 Table of Contents INTRODUCTION...2 SYSTEM REQUIREMENTS FOR SURESYNC 7...2 CONSIDERATIONS BEFORE UPGRADING...3 TERMINOLOGY CHANGES... 4 Relation Renamed to Job... 4 SPIAgent

More information

NetWrix Account Lockout Examiner Version 4.0 Administrator Guide

NetWrix Account Lockout Examiner Version 4.0 Administrator Guide NetWrix Account Lockout Examiner Version 4.0 Administrator Guide Table of Contents Concepts... 1 Product Architecture... 1 Product Settings... 2 List of Managed Domains and Domain Controllers... 2 Email

More information

Backup and Restore MySQL Databases

Backup and Restore MySQL Databases Backup and Restore MySQL Databases As you use XAMPP, you might find that you need to backup or restore a MySQL database. There are two easy ways to do this with XAMPP: using the browser-based phpmyadmin

More information

License Patrol TM Mac Client Installation Guide 7.0 for Mac OS X. September 2015 VERALAB TM

License Patrol TM Mac Client Installation Guide 7.0 for Mac OS X. September 2015 VERALAB TM License Patrol TM Mac Client Installation Guide 7.0 for Mac OS X September 2015 VERALAB TM License Patrol Client Installation Guide, 7.0 for Mac OS X. Copyright 2015 VeraLab Inc. All rights reserved. The

More information

Practice Fusion API Client Installation Guide for Windows

Practice Fusion API Client Installation Guide for Windows Practice Fusion API Client Installation Guide for Windows Quickly and easily connect your Results Information System with Practice Fusion s Electronic Health Record (EHR) System Table of Contents Introduction

More information

Managing Multi-Hypervisor Environments with vcenter Server

Managing Multi-Hypervisor Environments with vcenter Server Managing Multi-Hypervisor Environments with vcenter Server vcenter Server 5.1 vcenter Multi-Hypervisor Manager 1.0 This document supports the version of each product listed and supports all subsequent

More information

HELP DOCUMENTATION E-SSOM DEPLOYMENT GUIDE

HELP DOCUMENTATION E-SSOM DEPLOYMENT GUIDE HELP DOCUMENTATION E-SSOM DEPLOYMENT GUIDE Copyright 1998-2013 Tools4ever B.V. All rights reserved. No part of the contents of this user guide may be reproduced or transmitted in any form or by any means

More information

Specops Command. Installation Guide

Specops Command. Installation Guide Specops Software. All right reserved. For more information about Specops Command and other Specops products, visit www.specopssoft.com Copyright and Trademarks Specops Command is a trademark owned by Specops

More information

Installing and Configuring WhatsUp Gold

Installing and Configuring WhatsUp Gold Installing and Configuring WhatsUp Gold This guide provides information about installing and configuring WhatsUp Gold v14.2, including instructions on how to run the WhatsUp web interface through an Internet

More information

Oracle Fusion Middleware 11gR2: Forms, and Reports (11.1.2.0.0) Certification with SUSE Linux Enterprise Server 11 SP2 (GM) x86_64

Oracle Fusion Middleware 11gR2: Forms, and Reports (11.1.2.0.0) Certification with SUSE Linux Enterprise Server 11 SP2 (GM) x86_64 Oracle Fusion Middleware 11gR2: Forms, and Reports (11.1.2.0.0) Certification with SUSE Linux Enterprise Server 11 SP2 (GM) x86_64 http://www.suse.com 1 Table of Contents Introduction...3 Hardware and

More information

ibaan ERP 5.2a Configuration Guide for ibaan ERP Windows Client

ibaan ERP 5.2a Configuration Guide for ibaan ERP Windows Client ibaan ERP 5.2a Configuration Guide for ibaan ERP Windows Client A publication of: Baan Development B.V. P.O.Box 143 3770 AC Barneveld The Netherlands Printed in the Netherlands Baan Development B.V. 2002.

More information

Installing and Configuring vcenter Multi-Hypervisor Manager

Installing and Configuring vcenter Multi-Hypervisor Manager Installing and Configuring vcenter Multi-Hypervisor Manager vcenter Server 5.1 vcenter Multi-Hypervisor Manager 1.1 This document supports the version of each product listed and supports all subsequent

More information

DocAve 6 Service Pack 2

DocAve 6 Service Pack 2 DocAve 6 Service Pack 2 Installation Guide Revision D Issued February 2013 1 Table of Contents About the Installation Guide... 5 Submitting Documentation Feedback to AvePoint... 5 Before You Begin... 6

More information

Understanding BeyondTrust Patch Management

Understanding BeyondTrust Patch Management Best Practices WHITE PAPER Understanding BeyondTrust Patch Management February 2014 Contents Overview... 3 1 - Configure Retina CS... 4 2 - Enable Patch Management for Smart Groups... 6 3 Identify and

More information

Copyright 2012 Trend Micro Incorporated. All rights reserved.

Copyright 2012 Trend Micro Incorporated. All rights reserved. Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the software, please review the readme files,

More information

Using IIS and UltraDev Locally page 1

Using IIS and UltraDev Locally page 1 Using IIS and UltraDev Locally page 1 IIS Web Server Installation IIS Web Server is the web server provided by Microsoft for platforms running the various versions of the Windows Operating system. It is

More information

FireBLAST Email Marketing Solution v2

FireBLAST Email Marketing Solution v2 Installation Guide WELCOME to fireblast, one of the Industry s leading Email Marketing Software Solutions for your business. Whether you are creating a small email campaign, or you are looking to upgrade

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.4 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

ms-help://ms.technet.2005mar.1033/security/tnoffline/security/smbiz/winxp/fwgrppol...

ms-help://ms.technet.2005mar.1033/security/tnoffline/security/smbiz/winxp/fwgrppol... Page 1 of 16 Security How to Configure Windows Firewall in a Small Business Environment using Group Policy Introduction This document explains how to configure the features of Windows Firewall on computers

More information

Bootstrap guide for the File Station

Bootstrap guide for the File Station Bootstrap guide for the File Station Introduction Through the File Server it is possible to store files and create automated backups on a reliable, redundant storage system. NOTE: this guide considers

More information

Web services with WebSphere Studio: Deploy and publish

Web services with WebSphere Studio: Deploy and publish Web services with WebSphere Studio: Deploy and publish Table of Contents If you're viewing this document online, you can click any of the topics below to link directly to that section. 1. Introduction...

More information

Networking Best Practices Guide. Version 6.5

Networking Best Practices Guide. Version 6.5 Networking Best Practices Guide Version 6.5 Summer 2010 Copyright: 2010, CCH, a Wolters Kluwer business. All rights reserved. Material in this publication may not be reproduced or transmitted in any form

More information