Facility Connect API: Setup & Troubleshooting. Version 1
|
|
|
- Cody O’Neal’
- 10 years ago
- Views:
Transcription
1 Facility Connect API: Setup & Troubleshooting Version 1 All copyright and other intellectual property rights in all text, images and course materials are owned by Advanced Learning or are included with permission of the relevant owner. You are permitted to reproduce extracts by way of printing, and by distribution to other people but, in all cases, for non-commercial, informational and personal purposes only. No reproduction of any materials may be sold or distributed for commercial gain, nor shall they be modified or incorporated in any other work or publication. No other licence or right is granted. COPYRIGHT Advanced Learning Advanced Learning owned by Advanced Business Software and Solutions Limited trading as Advanced Business Solutions part of Advanced Computer Software Group. Registered in England and Wales. No: Registered Office: Munro House, Portsmouth Road, Cobham, Surrey K11 1TF, United Kingdom. Advanced Learning, Salisbury House, Stephensons Way, Wyvern Business Park, Derby DE21 6BF f
2 Table of Contents 1 Setting up the API Editing the API.xml Testing the API The API from a client machine or externally Refreshing the Cache in the API Setting Up API Through IIS Setting up Access Through an ISA Server or Firewall Troubleshooting Error: HTTP Status Error: HTTP Status Error: HTTP 500 Internal Server Error When Accessing the getstudents() Method Error: HTTP 500 Internal Server Error When Accessing the API Web Service.. 11 Page 2 of 11
3 1 Setting up the API The API is installed with Eportal and, by default, is configured to run on the secure port for Tomcat (port 8443). The API uses IP address filtering in order to stop unauthorised access and, by default, is set to not allow any IP addresses. In order to access it you will need to edit the API.xml, which controls the IP filtering and is located in \Facility\ePortal\conf\Catalina\localhost\. 1.1 Editing the API.xml To allow an IP address, edit the API.xml file and locate the section: <?xml version="1.0" encoding="utf-8"?> <Context> <Valve classname="org.apache.catalina.valves.remoteaddrvalve" allow="0\.0\.0\.0" /> </Context> And change 0\.0\.0\.0 to an IP address. If you re testing the API from the server where Eportal installed, you will need either the server IP address or the loopback address. So the file will then look like: <?xml version="1.0" encoding="utf-8"?> <Context> <Valve classname="org.apache.catalina.valves.remoteaddrvalve" allow=" " /> </Context> Page 3 of 11
4 1.2 Testing the API To test the API: 1. Open a supported internet browser. 2. Go to A certificate warning screen will appear. 3. Click Continue Anyway. An API splash screen below will appear. This indicates the API is working ok. Page 4 of 11
5 2 The API from a client machine or externally If you are trying to access the API from a machine other than the server, for example a client machine, another server or externally, you will need to add the IP addresses of each machine into the API.xml. These IP addresses will be separated with a comma. For example, if you had a setup like the diagram below and you wanted a different server on your network, which had an IP address of , and a third party who would use to access the API. Internal Network Server Hosting Application Application Hosted at Third Party API API.xml IP Filtering Eportal Server Your API.xml file would look like this: <?xml version="1.0" encoding="utf-8"?> <Context> <Valve classname="org.apache.catalina.valves.remoteaddrvalve" allow=" , , " /> </Context> Page 5 of 11
6 3 Refreshing the Cache in the API The cache for the API is built into a file which is stored in C:\Facility\ePortal\webapps\API\WEB-INF\cache and is added to each time data is pulled through the API. To refresh the data, stop the Facility Eportal and the Facility Data Server services and start them again. This will delete the file and create a new one which will be populated with fresh data. Page 6 of 11
7 4 Setting Up API Through IIS If you already have eportal running on IIS, you can make the API also run through it by adding a certificate to IIS so that it will run over https. You will need to obtain a certificate in order to use 1. Obtain a security certificate. There are a number of certificate providers available to choose from. A quick search online for SSL certificate will list these providers who will be able to recommend the right certificate for you. 2. Configure web site to use SSL/HTTPS. Due to the security around configuring SSL, please consult the relevant Microsoft documentation for more information on how to do this. Page 7 of 11
8 5 Setting up Access Through an ISA Server or Firewall The configuration of ISA servers or firewalls is not supported by Advanced Learning as they are products of Microsoft or other companies; however, there are a few requirements in order to successfully access the API. The URL to the API must always stay on https. If the API is accessed on http, it will route to the tomcat secure port (8443). There must be access to only having access to will not allow access. Finally, any IP masking or forwarding will cause problems the IP filtering. A different IP will access the API from the one you expect and have entered in the API.xml. There is a file called IP.jsp, which will show you what IP address is accessing the API, which will help diagnose access issues. This is available on the first line support site, and needs to be added to \Facility\ePortal\webapps\eportal. If you then go to it will show you the IP address that the API is seeing. Page 8 of 11
9 6 Troubleshooting 6.1 Error: HTTP Status 403 Cause: The IP address of the machine accessing the API is not listed in the API.xml The API uses IP filtering in order to stop unauthorised machines accessing data through the API. This filtering is done using the API.xml file located in C:\Facility\ePortal\conf\Catalina\localhost (for default installation). If the IP address is not listed in this file, the 403 error page will show. If the IP address has been listed in the API.xml file but the 403 error page is still showing, it is likely the IP address of the Third Party is being changed by a firewall or ISA server in front of the API. In the example below, the API.xml is set to allow , which is the IP address of the Third Party, however, the ISA server is changing the IP address to an internal IP address, which is then trying to access the API. As the address is not in the API.xml, the Third Party will receive the 403 error page. API 403 Error API.xml IP Filtering - allowing ISA Server / Firewall Third Party Application Server In these cases, the Third Party s route to the API must either not be masked, so they re IP address doesn t change, or the IP address of the ISA server or firewall must be entered into the API.xml and all IP address filtering must be done at the ISA server or Firewall. Servers running Server 2008 may be running IIS 7 or 7.5. If you have setup the API through IIS and are getting 403 when trying to access IIS will trying to access the API using an IP address of ::1, not Therefore, you will still not be able to access the API even though is in the API.xml. In this case, use to test the API. Page 9 of 11
10 6.2 Error: HTTP Status 404 Causes: Incorrect address. Syntax error within API.xml. Problem with API pages. If you re testing access to the API splash screen using and are getting a 404 page, first check the address that you are using. The /API in the URL must be in capitals and must not have anything before the /API. For example, will not work. If you are using an ISA server, please make sure there are no rules forwarding all traffic to localhost to localhost/eportal, as this may result in the API localhost/api being forwarded to localhost/eportal/api. Please note, if you are using eportal through IIS you will not need to specify the port number. If the address you are using is correct, there could be an issue with the API pages. The pages can be rebuilt to a default state by stopping the Facility data server and Eportal service, going to x:\facility\eportal\webapps and moving the API folder out to a new location (e.g. the desktop). Once this is done, start the Facility data server service, then the Eportal service and the API folder will be rebuilt. You may have to stop and start the services again in order for the certificate in the API folder to be picked up by IIS or Tomcat. If you are still getting a 404 page after this, it could indicate a problem within the API.xml, or with the file itself. Go to C:\Facility\ePortal\conf\Catalina\localhost and edit the API.xml. Make sure all IP addresses are separated with a comma, and no odd characters exist. The file will allow * as a wildcard for a range of IP address (i.e *) but not 0/25 to range from If the file looks ok, please download the default API.xml from the support site and overwrite the existing file. Restart the Facility data server and Facility Eportal services and check you can get the 403 page. If you do, then edit the API.xml to enter the IP addresses required, then test again. If the problem still persists, please contact the support desk. Page 10 of 11
11 6.3 Error: HTTP 500 Internal Server Error When Accessing the getstudents() Method Cause: Missing core data items from a student record To be pulled through in the getstudents, all students must have their core information fields populated. These fields are Name, Course, Year, Form or Tutor Group and their Date of Birth. If a student records is missing one or more of these fields it will cause the getstudents method to fail. The best way to identify the student record causing the error is to go into Facility and to go Students>Student List Window, then click Select>All Records. Sort each column in turn to indentify any missing data. Once the data has been added, stop the Eportal services and go to x:\facility\eportal\webapps\api\web-inf\cache (hidden by default) and delete the file in here. Start the services again and the error should be resolved. 6.4 Error: HTTP 500 Internal Server Error When Accessing the API Web Service Cause: Files existing in the x:\facility\eportal\common\endorsed\ folder If you are seeing an "Error 500" window from the Facility API when you go to Stop your Facility eportal and Facility dataserver services, Go to your Facility eportal server and Browse to x:\facility\eportal\common\endorsed and delete any files that exist in here. Start your services again - the error should now have gone. Page 11 of 11
User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream
User Manual Onsight Management Suite Version 5.1 Another Innovation by Librestream Doc #: 400075-06 May 2012 Information in this document is subject to change without notice. Reproduction in any manner
Technical Brief for Windows Home Server Remote Access
Technical Brief for Windows Home Server Remote Access Microsoft Corporation Published: October, 2008 Version: 1.1 Abstract This Technical Brief provides an in-depth look at the features and functionality
FileMaker Server 15. Getting Started Guide
FileMaker Server 15 Getting Started Guide 2007 2016 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks
HTTPS HTTP. ProxySG Web Server. Client. ProxySG TechBrief Reverse Proxy with SSL. 1 Technical Brief
ProxySG TechBrief Reverse Proxy with SSL What is Reverse Proxy with SSL? The Blue Coat ProxySG includes the basis for a robust and flexible reverse proxy solution. In addition to web policy management,
Cyclope Internet Filtering Proxy. - Installation Guide -
Cyclope Internet Filtering Proxy - Installation Guide - 1. Overview 3 2. Installation 4 2.1 System requirements 4 2.2 Cyclope Internet Filtering Proxy Installation 4 2.3 Client Browser Configuration 6
App Orchestration 2.5
App Orchestration 2.5 Configuring SSL for App Orchestration 2.5 Prepared by: Andy Zhu Last Updated: July 25, 2014 Contents Introduction... 3 Configure SSL on the App Orchestration configuration server...
www.mvatcybernet.com PRODUCT VERSION: LYNC SERVER 2010, LYNC SERVER 2013, WINDOWS SERVER 2008
PRODUCT VERSION: LYNC SERVER 2010, LYNC SERVER 2013, WINDOWS SERVER 2008 With Forefront Threat Management Gateway 2010 now discontinued, we sought a suitable reverse proxy solution that works with Lync
2X HTML5 Gateway v10.6
2X HTML5 Gateway v10.6 URL: www.2x.com E-mail: [email protected] Information in this document is subject to change without notice. Companies, names, and data used in examples herein are fictitious unless otherwise
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,
Camera Management Tool User Manual
Network Camera Camera Management Tool User Manual The Operation Guide should be read before using the network camera. ENGLISH Introduction This manual describes how to configure and operate Camera Management
User Guide Online Backup
User Guide Online Backup Table of contents Table of contents... 1 Introduction... 2 Adding the Online Backup Service to your Account... 2 Getting Started with the Online Backup Software... 4 Downloading
Spam Marshall SpamWall Step-by-Step Installation Guide for Exchange 5.5
Spam Marshall SpamWall Step-by-Step Installation Guide for Exchange 5.5 What is this document for? This document is a Step-by-Step Guide that can be used to quickly install Spam Marshall SpamWall on Exchange
Plesk 11 Manual. Fasthosts Customer Support
Fasthosts Customer Support Plesk 11 Manual This guide covers everything you need to know in order to get started with the Parallels Plesk 11 control panel. Contents Introduction... 3 Before you begin...
How To Set Up The Barclaycard Epdq Cardholder Payment Interface (Cpi) On Papercut (Barclay Card) On A Microsoft Card (For A Credit Card) With A Creditcard (For An Account)
Barclaycard epdq CPI Quick Start Guide This guide is designed to supplement the Payment Gateway Module documentation and provides a guide to installing, setting up and testing the Payment Gateway Module
REQUIREMENTS AND INSTALLATION OF THE NEFSIS DEDICATED SERVER
NEFSIS TRAINING SERIES Nefsis Dedicated Server version 5.1.0.XXX Requirements and Implementation Guide (Rev 4-10209) REQUIREMENTS AND INSTALLATION OF THE NEFSIS DEDICATED SERVER Nefsis Training Series
Reference and Troubleshooting: FTP, IIS, and Firewall Information
APPENDIXC Reference and Troubleshooting: FTP, IIS, and Firewall Information Although Cisco VXC Manager automatically installs and configures everything you need for use with respect to FTP, IIS, and the
How To Plan A Desktop Workspace Infrastructure
Dell Copyright 2014 Moka5, Inc. All rights reserved. Moka5, MokaFive, LivePC, and the Moka5 logo are trademarks of Moka5, Inc. All other product or company names may be trademarks of their respective owners.
Docufide Client Installation Guide for Windows
Docufide Client Installation Guide for Windows This document describes the installation and operation of the Docufide Client application at the sending school installation site. The intended audience is
FTP, IIS, and Firewall Reference and Troubleshooting
FTP, IIS, and Firewall Reference and Troubleshooting Although Cisco VXC Manager automatically installs and configures everything you need for use with respect to FTP, IIS, and the Windows Firewall, the
2X Cloud Portal v10.5
2X Cloud Portal v10.5 URL: www.2x.com E-mail: [email protected] Information in this document is subject to change without notice. Companies, names, and data used in examples herein are fictitious unless otherwise
F-Secure Messaging Security Gateway. Deployment Guide
F-Secure Messaging Security Gateway Deployment Guide TOC F-Secure Messaging Security Gateway Contents Chapter 1: Deploying F-Secure Messaging Security Gateway...3 1.1 The typical product deployment model...4
Configuring Internet Explorer for Voyager on Client Computers
1 Configuring Internet Explorer for Voyager on Client Computers You must configure Microsoft Internet Explorer settings on each of your client computers so that your users can properly access and operate
Installation and configuration guide
Installation and Configuration Guide Installation and configuration guide Adding X-Forwarded-For support to Forward and Reverse Proxy TMG Servers Published: May 2010 Applies to: Winfrasoft X-Forwarded-For
Sharp Remote Device Manager (SRDM) Server Software Setup Guide
Sharp Remote Device Manager (SRDM) Server Software Setup Guide This Guide explains how to install the software which is required in order to use Sharp Remote Device Manager (SRDM). SRDM is a web-based
Installation Guide For ChoiceMail Enterprise Edition
Installation Guide For ChoiceMail Enterprise Edition How to Install ChoiceMail Enterprise On A Server In Front Of Your Company Mail Server August, 2004 Version 2.6x Copyright DigiPortal Software, 2002-2004
Konica Minolta s Optimised Print Services (OPS)
Konica Minolta s Optimised Print Services (OPS) Document Collection Agent (DCA) Detailed Installation Guide V1.6 Page 1 of 43 Table of Contents Notes... 4 Requirements... 5 Network requirements... 5 System
Working Folder Linkage Setup Guide
For models listed below, see the respective "Working Foloder Linkage Setup Guide". wfs-mfp-installguide-09_en.pdf - ApeosPort-IV C5570/C4470/C3371/C3370/C2270 - ApeosPort-IV C7780/C6680/C5580 - ApeosPort-IV
MobileStatus Server Installation and Configuration Guide
MobileStatus Server Installation and Configuration Guide Guide to installing and configuring the MobileStatus Server for Ventelo Mobilstatus Version 1.2 June 2010 www.blueposition.com All company names,
TECHNICAL REFERENCE. Version 1.0 August 2013
TECHNICAL REFERENCE Version 1.0 August 2013 Technical Reference IPWeb 1.0 Copyright EVS Broadcast Equipment S.A. Copyright 2013. All rights reserved. Disclaimer The information in this manual is furnished
PartnerConnect software. Installation guide
PartnerConnect software Installation guide 2012 Welch Allyn. All rights are reserved. To support the intended use of the product described in this publication, the purchaser of the product is permitted
Load Balancing. Outlook Web Access. Web Mail Using Equalizer
Load Balancing Outlook Web Access Web Mail Using Equalizer Copyright 2009 Coyote Point Systems, Inc. Printed in the USA. Publication Date: January 2009 Equalizer is a trademark of Coyote Point Systems
Web Server XX220-11-00. Configuration Guide
Configuration Guide XX220-11-00 Web Server Vicon Industries Inc. Tel: 631-952-2288 Fax: 631-951-2288 Toll Free: 800-645-9116 24-Hour Technical Support: 800-34-VICON (800-348-4266) UK: 44/(0) 1489-566300
WhatsUp Gold v16.3 Installation and Configuration Guide
WhatsUp Gold v16.3 Installation and Configuration Guide Contents Installing and Configuring WhatsUp Gold using WhatsUp Setup Installation Overview... 1 Overview... 1 Security considerations... 2 Standard
PC-EFTPOS / BWA Merchant Services. Installation Guide. (Verifone Vx810)
PC-EFTPOS / BWA Merchant Services Installation Guide (Verifone Vx810) Release 1.04 Revision Record Version Date Author Document Revisions Preparation 1.00 July 2011 Harrisson Ghys Richard Bolt Document
Name Services (DNS): This is Quick rule will enable the Domain Name Services on the firewall.
How to configure quick set up rules You can configure rules/policies using Quick setup to get the Firewall up and running in no time. To do this log in to the Firewall, browse to Firewall > Policies >
Troubleshooting File and Printer Sharing in Microsoft Windows XP
Operating System Troubleshooting File and Printer Sharing in Microsoft Windows XP Microsoft Corporation Published: November 2003 Updated: August 2004 Abstract File and printer sharing for Microsoft Windows
FileMaker Server 12. FileMaker Server Help
FileMaker Server 12 FileMaker Server Help 2010-2012 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc.
Installation and configuration guide
Installation and Configuration Guide Installation and configuration guide Adding X-Username support to Forward and Reverse Proxy TMG Servers Published: December 2010 Applies to: Winfrasoft X-Username for
2012 Nolio Ltd. All rights reserved
2012 Nolio Ltd. All rights reserved The information contained herein is proprietary and confidential. No part of this document may be reproduced without explicit prior written permission from Nolio Ltd.
SOA Software: Troubleshooting Guide for Agents
SOA Software: Troubleshooting Guide for Agents SOA Software Troubleshooting Guide for Agents 1.1 October, 2013 Copyright Copyright 2013 SOA Software, Inc. All rights reserved. Trademarks SOA Software,
HELP DOCUMENTATION SSRPM WEB INTERFACE GUIDE
HELP DOCUMENTATION SSRPM WEB INTERFACE 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
PC Monitor Enterprise Server. Setup Guide
PC Monitor Enterprise Server Setup Guide Prerequisites Server Requirements - Microsoft Windows Server 2008 R2 or 2012-2GB RAM - IIS 7.5 or IIS 8.0 (with ASP.NET 4.0 installed) - Microsoft SQL Server 2008
Re-associating.ica file extension on Vista/Windows 7 machines
Troubleshooting This page provides answers to common problems you may have encountered when using TENGRAPH Online. Re-associating.ica file extension on Vista/Windows 7 machines There is a known issue that
Customer Tips. Xerox Network Scanning HTTP/HTTPS Configuration using Microsoft IIS. for the user. Purpose. Background
Xerox Multifunction Devices Customer Tips June 5, 2007 This document applies to these Xerox products: X WC Pro 232/238/245/ 255/265/275 for the user Xerox Network Scanning HTTP/HTTPS Configuration using
Using the vcenter Orchestrator Plug-In for vsphere Auto Deploy 1.0
Using the vcenter Orchestrator Plug-In for vsphere Auto Deploy 1.0 vcenter Orchestrator 4.2 This document supports the version of each product listed and supports all subsequent versions until the document
How to configure the Panda GateDefender Performa explicit proxy in a Local User Database or in a LDAP server
How to configure the Panda GateDefender Performa explicit proxy in a Local User Database or in a LDAP server Copyright notice Panda Security 2010. All rights reserved. Neither the documents nor the programs
Contents Minimum Requirements... 2 Instructions... 2 Troubleshooting... 7
Emdeon Remote Desktop Services Contents Minimum Requirements... 2 Instructions... 2 Troubleshooting... 7 Minimum Requirements 1. A high-speed Internet connection. DSL or Cable Internet are recommended.
Network setup and troubleshooting
ACTi Knowledge Base Category: Troubleshooting Note Sub-category: Network Model: All Firmware: All Software: NVR Author: Jane.Chen Published: 2009/12/21 Reviewed: 2010/10/11 Network setup and troubleshooting
Integrated Citrix Servers
Installation Guide Supplement for use with Integrated Citrix Servers Websense Web Security Websense Web Filter v7.5 1996-2010, Websense, Inc. 10240 Sorrento Valley Rd., San Diego, CA 92121, USA All rights
Okta/Dropbox Active Directory Integration Guide
Okta/Dropbox Active Directory Integration Guide Okta Inc. 301 Brannan Street, 3rd Floor San Francisco CA, 94107 [email protected] 1-888- 722-7871 1 Table of Contents 1 Okta Directory Integration Edition for
PaperCut Payment Gateway Module - PayPal Payflow Link - Quick Start Guide
PaperCut Payment Gateway Module - PayPal Payflow Link - Quick Start Guide This guide is designed to supplement the Payment Gateway Module documentation and provides a guide to installing, setting up, and
FileMaker Server 11. FileMaker Server Help
FileMaker Server 11 FileMaker Server Help 2010 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc. registered
tpischeduler tpischeduler TotalFBO tpischeduler TotalFBO Initial Installation tpischeduler TotalFBO tpischeduler
tpischeduler tpischeduler is a plug-in to TotalFBO which provides an online interface to your database. This enables customers and staff to view, change, and delete their own appointments as well as print
isupplier PORTAL ACCESS SYSTEM REQUIREMENTS
TABLE OF CONTENTS Recommended Browsers for isupplier Portal Recommended Microsoft Internet Explorer Browser Settings (MSIE) Recommended Firefox Browser Settings Recommended Safari Browser Settings SYSTEM
XenDesktop 5 with Access Gateway
XenDesktop 5 with Access Gateway How to set up an Access Gateway Enterprise Edition VPX for use with XenDesktop 5 www.citrix.com Contents Introduction... 2 Example environment... 2 Set up the VPX VM...
Immotec Systems, Inc. SQL Server 2005 Installation Document
SQL Server Installation Guide 1. From the Visor 360 installation CD\USB Key, open the Access folder and install the Access Database Engine. 2. Open Visor 360 V2.0 folder and double click on Setup. Visor
Automation Engine 14. Troubleshooting
4 Troubleshooting 2-205 Contents. Troubleshooting the Server... 3. Checking the Databases... 3.2 Checking the Containers...4.3 Checking Disks...4.4.5.6.7 Checking the Network...5 Checking System Health...
Configuring your email client to connect to your Exchange mailbox
Configuring your email client to connect to your Exchange mailbox Contents Use Outlook Web Access (OWA) to access your Exchange mailbox... 2 Use Outlook 2003 to connect to your Exchange mailbox... 3 Add
Install MS SQL Server 2012 Express Edition
Install MS SQL Server 2012 Express Edition Sohodox now works with SQL Server Express Edition. Earlier versions of Sohodox created and used a MS Access based database for storing indexing data and other
HOW TO CONFIGURE PASS-THRU PROXY FOR ORACLE APPLICATIONS
HOW TO CONFIGURE PASS-THRU PROXY FOR ORACLE APPLICATIONS Overview of Oracle JInitiator Oracle JInitiator enables users to run Oracle Forms applications using Netscape Navigator or Internet Explorer. It
Introduction to Mobile Access Gateway Installation
Introduction to Mobile Access Gateway Installation This document describes the installation process for the Mobile Access Gateway (MAG), which is an enterprise integration component that provides a secure
File Management Utility User Guide
File Management Utility User Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held
Metalogix Replicator. Quick Start Guide. Publication Date: May 14, 2015
Metalogix Replicator Quick Start Guide Publication Date: May 14, 2015 Copyright Metalogix International GmbH, 2002-2015. All Rights Reserved. This software is protected by copyright law and international
Configure ActiveSync with a single Exchange server (Exchange sync for an iphone)
Configure ActiveSync with a single Exchange server (Exchange sync for an iphone) I recently picked up a first-generation iphone from a friend and after playing around with it for a while I decided that
Repeater. BrowserStack Local. browserstack.com 1. BrowserStack Local makes a REST call using the user s access key to browserstack.
Connection Setup Process makes a REST call using the user s access key to chooses a repeater for establishing a secure connection for Local Testing. The repeater exists within the BrowserStack cloud infrastructure.
Configuration Guide. BES12 Cloud
Configuration Guide BES12 Cloud Published: 2016-04-08 SWD-20160408113328879 Contents About this guide... 6 Getting started... 7 Configuring BES12 for the first time...7 Administrator permissions you need
Network Configuration Settings
Network Configuration Settings Many small businesses already have an existing firewall device for their local network when they purchase Microsoft Windows Small Business Server 2003. Often, these devices
2X ApplicationServer & LoadBalancer Manual
2X ApplicationServer & LoadBalancer Manual 2X ApplicationServer & LoadBalancer Contents 1 URL: www.2x.com E-mail: [email protected] Information in this document is subject to change without notice. Companies,
Managing Qualys Scanners
Q1 Labs Help Build 7.0 Maintenance Release 3 [email protected] Managing Qualys Scanners Managing Qualys Scanners A QualysGuard vulnerability scanner runs on a remote web server. QRadar must access
User Guide. You will be presented with a login screen which will ask you for your username and password.
User Guide Overview SurfProtect is a real-time web-site filtering system designed to adapt to your particular needs. The main advantage with SurfProtect over many rivals is its unique architecture that
Flight Workflow User's Guide. Release 12.0.0
Flight Workflow User's Guide Release 12.0.0 Copyright 2015 Signiant Inc. All rights reserved. Contents CHAPTER 1 Flight Introduction 4 FlightUploadReference 4 FlightDownloadReference 4 Cloud Storage Configuration
Central Administration User Guide
User Guide Contents 1. Introduction... 2 Licensing... 2 Overview... 2 2. Configuring... 3 3. Using... 4 Computers screen all computers view... 4 Computers screen single computer view... 5 All Jobs screen...
Remote Filtering Software
Remote Filtering Software Websense Web Security Solutions v7.7-7.8 1996 2013, Websense, Inc. All rights reserved. 10240 Sorrento Valley Rd., San Diego, CA 92121, USA Published 2013 The products and/or
Click Studios. Passwordstate. Upgrade Instructions to V7 from V5.xx
Passwordstate Upgrade Instructions to V7 from V5.xx This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise disclosed,
SELF SERVICE RESET PASSWORD MANAGEMENT WEB INTERFACE GUIDE
SELF SERVICE RESET PASSWORD MANAGEMENT WEB INTERFACE GUIDE Copyright 1998-2015 Tools4ever B.V. All rights reserved. No part of the contents of this user guide may be reproduced or transmitted in any form
Installation Guide ARGUS Symphony 1.6 and Business App Toolkit. 6/13/2014 2014 ARGUS Software, Inc.
ARGUS Symphony 1.6 and Business App Toolkit 6/13/2014 2014 ARGUS Software, Inc. Installation Guide for ARGUS Symphony 1.600.0 6/13/2014 Published by: ARGUS Software, Inc. 3050 Post Oak Boulevard Suite
GE Intelligent Platforms. Activating Licenses Online Using a Local License Server
GE Intelligent Platforms Activating Licenses Online Using a Local License Server January 2016 Introduction: This document is an introduction to activating licenses online using a GE-IP Local License Server.
Pendragon Forms VI. Reference Guide
Pendragon Forms VI Reference Guide Copyright Information Copyright 2010 Pendragon Software Corporation. All rights reserved. This documentation may be printed by licensee for personal use. Except for the
Smart Connect. Deployment Guide
Smart Connect Deployment Guide Smart Connect Deployment Guide Documentation version: 1.0 Legal Notice Legal Notice Copyright 2013 Symantec Corporation. All rights reserved. Symantec, the Symantec Logo,
Symantec Endpoint Protection Shared Insight Cache User Guide
Symantec Endpoint Protection Shared Insight Cache User Guide Symantec Endpoint Protection Shared Insight Cache User Guide The software described in this book is furnished under a license agreement and
DIGITAL MULTIFUNCTIONAL SYSTEM
MODEL: MX-M283N MX-M363N MX-M453N MX-M503N DIGITAL MULTIFUNCTIONAL SYSTEM Software Setup Guide BEFORE INSTALLING THE SOFTWARE SETUP IN A WINDOWS ENVIRONMENT SETUP IN A MACINTOSH ENVIRONMENT TROUBLESHOOTING
Connection and Printer Setup Guide
Connection and Printer Setup Guide For connection issues, see the following sections of this document: "Connection Requirements" on page 1 "Log on" on page 2 "Troubleshooting Your Connection" on page 4
What is the Barracuda SSL VPN Server Agent?
The standard communication model for outgoing calls is for the appliance to simply make a direct connection to the destination host. This paradigm does not suit all business needs. The Barracuda SSL VPN
Secure Web Appliance. SSL Intercept
Secure Web Appliance SSL Intercept Table of Contents 1. Introduction... 1 1.1. About CYAN Secure Web Appliance... 1 1.2. About SSL Intercept... 1 1.3. About this Manual... 1 1.3.1. Document Conventions...
Configuring Jet Express for Microsoft Dynamics NAV 2013
Configuring Jet Express for Microsoft Dynamics NAV 2013 Overview With the release of Jet Express 2012 R2, Jet Reports introduces the ability to report from a Microsoft Dynamics NAV 2013 database. Web Services
ISL Online Integration Manual
Contents 2 Table of Contents Foreword Part I Overview Part II 0 3 4... 1 Dow nload and prepare 4... 2 Enable the ex ternal ID column on ISL Conference Prox y 4... 3 Deploy w eb content 5... 4 Add items
Infinity Web Viewer Reference Guide
Infinity Web Viewer Reference Guide Table of Contents Overview... 1 Security Considerations... 1 System Setup... 1 Infinity Configuration... 1 Workstation Prerequisites... 2 Configuring Internet Security...
PaperCut Payment Gateway Module - PayPal Payflow Link - Quick Start Guide
PaperCut Payment Gateway Module - PayPal Payflow Link - Quick Start Guide This guide is designed to supplement the Payment Gateway Module documentation and provides a guide to installing, setting up, and
Infor Xtreme Browser References
Infor Xtreme Browser References This document describes the list of supported browsers, browser recommendations and known issues. Contents Infor Xtreme Browser References... 1 Browsers Supported... 2 Browser
IBackup Drive User Guide
IBackup Drive User Guide TABLE OF CONTENTS Introduction... 3 Features... 4 Install IBackup Drive... 5 Login to IBackup Drive... 5 About Main Screen... 7 Settings... 8 Toolbar Options... 11 IBackup Drive
Web Security Firewall Setup. Administrator Guide
Web Security Firewall Setup Administrator Guide Web Security Firewall Setup Guide Documentation version: 1.0 Legal Notice Legal Notice Copyright 2013 Symantec Corporation. All rights reserved. Symantec,
DameWare Server. Administrator Guide
DameWare Server Administrator Guide About DameWare Contact Information Team Contact Information Sales 1.866.270.1449 General Support Technical Support Customer Service User Forums http://www.dameware.com/customers.aspx
FAQs, Hints and Tips
FAQs, Hints and Tips FAQs Appendix B n What s Covered in This Document This document contains a list of frequently asked questions (FAQs), as well as helpful hints and tips, regarding configuring, installing,
Citrix Access Gateway Plug-in for Windows User Guide
Citrix Access Gateway Plug-in for Windows User Guide Access Gateway 9.2, Enterprise Edition Copyright and Trademark Notice Use of the product documented in this guide is subject to your prior acceptance
Customer Tips. Xerox Network Scanning TWAIN Configuration for the WorkCentre 7328/7335/7345. for the user. Purpose. Background
Xerox Multifunction Devices Customer Tips dc07cc0432 October 19, 2007 This document applies to these Xerox products: X WC 7328/7335/7345 for the user Xerox Network Scanning TWAIN Configuration for the
RSA SecurID Ready Implementation Guide
RSA SecurID Ready Implementation Guide Partner Information Last Modified: December 18, 2006 Product Information Partner Name Microsoft Web Site http://www.microsoft.com/isaserver Product Name Internet
TECHNICAL CONDITIONS REGARDING ACCESS TO VP.ONLINE. User guide. vp.online 2011 2011-10-01
TECHNICAL CONDITIONS REGARDING ACCESS TO VP.ONLINE vp.online 2011 2011-10-01 Contents 1 PROBLEMS SEEING VP.ONLINE... 3 2 BROWSER CONFIGURATION... 6 3 WRITE ACCESS TO DISK DRIVE... 7 4 SESSION TIMEOUT AND
MultiSite Manager. Setup Guide
MultiSite Manager Setup Guide Contents 1. Introduction... 2 How MultiSite Manager works... 2 How MultiSite Manager is implemented... 2 2. MultiSite Manager requirements... 3 Operating System requirements...
WHITE PAPER Citrix Secure Gateway Startup Guide
WHITE PAPER Citrix Secure Gateway Startup Guide www.citrix.com Contents Introduction... 2 What you will need... 2 Preparing the environment for Secure Gateway... 2 Installing a CA using Windows Server
TELSTRA BUSINESS MAIL QUICK REFERENCE GUIDE
1.1 Introduction 01 1.2 The Checklist 02 1.3 Business Mail Requirements 03 1.4 Downloading & Installing Outlook 2003 04 BEFORE YOU START 1.1 INTRODUCTION 1.1.1 Who this Guide is For 1.1.2 What s in this
