Mobile On the Go (OTG) Server

Size: px
Start display at page:

Download "Mobile On the Go (OTG) Server"

Transcription

1 Mobile On the Go (OTG) Server Installation Guide Paramount Technologies, Inc East West Maple Road Walled Lake, MI Phone Fax

2 Copyright Trademarks Copyright 2016 Paramount Technologies. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without limiting the rights under copyright, no part of this document may be reproduced, stored in or introduced into a retrieval system, or transmitted in any form or by any means (electronic, mechanical, photocopying, recording, or otherwise), or for any purpose, without the express written permission of Paramount Technologies. Notwithstanding the foregoing, the licensee of the software with which this document was provided may make a reasonable number of copies of this document solely for internal use. WorkPlace is a registered trademark of Paramount Technologies and is registered in the United States and other countries. Microsoft, Windows, Windows Server and Windows Vista are either registered trademarks or trademarks of Microsoft Corporation or its affiliates in the United States and/or other countries. The names of actual companies and products mentioned herein may be trademarks or registered marks - in the United States and/or other countries - of their respective owners. Unless otherwise noted, the example companies, organizations, products, domain names, addresses, logos, people, places, and events depicted herein are fictitious. No association with any real company, organization, product, domain name, address, logo, person, place, or event is intended or should be inferred. Intellectual property Paramount may have patents, patent applications, trademarks, copyrights, or other intellectual property rights covering subject matter in this document. Except as expressly provided in any written license agreement from Paramount, the furnishing of this document does not give you any license to these patents, trademarks, copyrights, or other intellectual property. Warranty disclaimer Paramount Technologies disclaims any warranty regarding the sample code contained in this documentation, including the warranties of merchantability and fitness for a particular purpose. Limitation of liability The content of this document is furnished for informational use only, is subject to change without notice, and should not be construed as a commitment by Paramount Technologies. Paramount Technologies assumes no responsibility or liability for any errors or inaccuracies that may appear in this manual. Neither Paramount Technologies nor anyone else who has been involved in the creation, production or delivery of this documentation shall be liable for any indirect, incidental, special, exemplary or consequential damages, including but not limited to any loss of anticipated profit or benefits, resulting from the use of this documentation or sample code. License agreement Use of this product is covered by a license agreement provided with the software product. If you have any questions, please call the Paramount Technologies Support at (in the U.S. or Canada) or Publication date July 2016 Page 2 of 11

3 Table of Contents Overview... 4 Communication Architecture... 4 Web Server System Requirements... 4 Installation... 5 Creating the IIS Virtual Directory/Application... 5 Step 1 Extract OTGS Application to Web Server... 5 Step 2 Create the Application Pool... 6 Step 3 Create the Web Application... 7 Configuring the On-The-Go Server... 8 Step 4 Edit the OTGS web.config... 8 Configuring WorkPlace for OTGS Access Step 5 Configure the WorkPlace Shared User Account Step 6 Configure the WorkPlace Language User Access Finished Step 7 Configure Mobile Device Page 3 of 11

4 Overview The WorkPlace On-The-Go Server (OTGS) functions as an intermediate between the ios and Android Mobile devices and the core WorkPlace Business Intelligence and Data. The OTGS is designed to be placed on the DMZ for external internet access by the mobile devices. Communication Architecture The Android / ios mobile devices perform all communication via the OTG Server which has a direct link to the local WorkPlace application to retrieve and process data. Android / ios Mobile Device OTG Server WorkPlace Web Server System Requirements Component Requirements Notes Operating System Microsoft Windows 10 Microsoft Windows 8 Microsoft Windows 2012 Microsoft Windows 7 It is recommended that the Web Server is not the same machine as the SQL Server. 32 and 64 bit is supported Microsoft Windows XP Microsoft Windows Vista Microsoft Windows 2008 R2 Microsoft Windows 2008 Microsoft Windows 2003 (all editions) Page 4 of 11

5 Component Requirements Notes Windows Internet Information Services (IIS) IIS 6.0 or greater.net Runtime Version NET Runtime version is included with WorkPlace. Installation The OTGS application is downloadable from the Paramount Customer Area and will have a file name such as WPOTGS_ zip. The zip file includes the entire OTGS application which will be setup and configured on a Windows IIS server with Microsoft.NET 4.0 installed. Following are step by step instructions on setting up and configuring the OTGS application within Microsoft Internet Information Services. Creating the IIS Virtual Directory/Application This step is required for a first time installation; it may be skipped when upgrading. An OTGS virtual directory must be configured for each WorkPlace virtual folder configured in the environment. Typical installations will have one OTGS virtual folder tied to one WorkPlace virtual folder. Mobile devices only allow for connection to one OTGS application at a time. The Installation Steps below include screens shots from Windows Server Although the screens may differ slighter, similar setup screens are available for all supported Windows Server and Workstation platforms. Step 1 Extract OTGS Application to Web Server Once the OTGS application is downloaded from the customer area it needs to be extracted into a folder on the web server. For this example the files have been placed into the C:\WPOTGS folder. Page 5 of 11

6 Step 2 Create the Application Pool Open the Internet Information Services (IIS) by navigating to Control Panel Administrative Tools Internet Information Services (IIS) Manager. Once open, right mouse click on Applications Pools and select Add Application Pool On the Add Application Pool screen enter a name for the pool such as OTGS, select.net Framework v4.x.xxxxx (.NET 4.0), accept the rest of the defaults and click OK. Page 6 of 11

7 Step 3 Create the Web Application Now that the Application Pool is created we need to create the Application for the OTGS and tie it to this newly created Application Pool. To create the Application right mouse click on the Web Site that is to contain the Application, in this example we are putting it on the Default Web Site. Select Add Application Now from the Add Application screen enter the alias to use such as OTGS, select the Application Pool we setup in Step 2, now select the physical path where we extracted the WPOTGS zip file to in Step 1. Once done click OK. Page 7 of 11

8 Configuring the On-The-Go Server Now that the OTGS application is setup in IIS it s now time to configure the OTGS web.config file. Step 4 Edit the OTGS web.config The web.config is stored in the root of the extracted OTGS application that was performed in step 1. Open this file in a text editor such as notepad. Once open, set the following keys based on your WorkPlace configuration. Key OTGServerID Value Unique ID to identify the OTG Server environment. If using multiple OTG servers that point to the same WorkPlace instance then this value should be the same on all OTG servers. An example of when this value would be different would be when multiple WorkPlace instances are being hosted which would be common when setting up a test environment to perform user acceptance testing on. What does this value actually do? This value is retrieved and stored on the mobile device when it connects to the OTGS, the mobile device always knows the last OTGS Page 8 of 11

9 Key OTGVersion WorkPlaceURL WorkPlaceADUserName WorkPlaceADPassword WorkPlaceADDmain Value it talked to. When the mobile device connects in the future it always compares the last OTGServerID with the one that is being reported to it when it connects. If the values are different then the mobile device will get a message indicating the change and upon acceptance the mobile device will have all its local records cleared out and full synchronization of WorkPlace data will be sent to it, essentially reinitializing the device. Version of the OTG server. This value is updated for each release. What does this value actually do? This value is similar to the OTGServerID whereas it is retrieved and stored on the mobile device every time it connects. During the connection when the mobile device detects a difference in this value from its previous value the OTGS will resend the mobile application code to do the device and restart the application which will position the user to the default mobile dashboard. This is typical for new OTGS upgrades where new modules and functionality have been added to the mobile applications. Note: This refresh will NOT remove any local data on the device. URL to access the WorkPlace application Active Directory User Name. This value is only necessary if WorkPlace is running under Active Directory/NT Authentication. Active Directory Password. This value is only necessary if WorkPlace is running under Active Directory/NT Authentication. Active Directory Domain. This value is only necessary if WorkPlace is running under Active Directory/NT Authentication. Page 9 of 11

10 Configuring WorkPlace for OTGS Access Step 5 Configure the WorkPlace Shared User Account To facilitate database access from the OTG server, WorkPlace utilizes the shared user configuration options of the web.config (see the WorkPlace Installation Guide for more details). If WorkPlace is already setup to use the Shared Account then no further setup is requires. The two WorkPlace authentication modes where the shared account would not be already setup would be the NT and SQL authentication modes. Step 6 Configure the WorkPlace Language User Access WorkPlace uses the Language User configuration that is setup in the web.config to return messages back to the mobile user. Setup Excerpt from the Language Section of the WorkPlace Installation Guide 1. Configure a SQL user account that will be used to access the Language Resource tables. 2. Set the Default Database of the SQL user account to be one of the companies that WorkPlace is installed against. This is important as the Default Database on the Language User Account tells WorkPlace where the Language Resource tables are. 3. Give the SQL user account permission to the PTIMaster and to the Company database. Within each of these databases give the user access to the PTIWorkPlaceLanguageAccess role. 4. Specify the SQL Language user name and password in the web.config <add key="languageusername" value="wplanguser"/> Page 10 of 11

11 <add key="languagepassword" 5. The default language used by WorkPlace can be specified in the Language section of the web.config. <add key="language" value="english"/> Finished Step 7 Configure Mobile Device After the OTGS is installed and configured the mobile device will be able to connect and access WorkPlace. Enter the OTGS URL in the Settings page of the WorkPlace Mobile application. Refer to the WorkPlace Mobile User Guide for more information in regards to mobile functionality, setup and configuration. Page 11 of 11

Server Installation Guide

Server Installation Guide Server Installation Guide Copyright: Trademarks: Copyright 2015 Word-Tech, Inc. All rights reserved. U.S. Patent No. 8,365,080 and additional patents pending. Complying with all applicable copyright laws

More information

WorkPlace Agent Service

WorkPlace Agent Service WorkPlace Agent Service Installation and User Guide WorkPlace 16.00.00.00 + Paramount Technologies Inc. 1374 East West Maple Road Walled Lake, MI 48390-3765 Phone 248.960.0909 Fax 248.960.1919 www.paramountworkplace.com

More information

x10data Smart Client 7.0 for Windows Mobile Installation Guide

x10data Smart Client 7.0 for Windows Mobile Installation Guide x10data Smart Client 7.0 for Windows Mobile Installation Guide Copyright Copyright 2009 Automated Data Capture (ADC) Technologies, Incorporated. All rights reserved. Complying with all applicable copyright

More information

2017 WorkPlace Mobile Application

2017 WorkPlace Mobile Application 2017 WorkPlace Mobile Application User Guide Paramount WorkPlace 2017 and Greater Table of Contents OVERVIEW... 3 GETTING STARTED... 3 Communication Architecture... 3 Mobile Device Requirements... 4 Establish

More information

x10data Smart Client 6.5 for Windows Mobile Installation Guide

x10data Smart Client 6.5 for Windows Mobile Installation Guide x10data Smart Client 6.5 for Windows Mobile Installation Guide Copyright Copyright 2009 Automated Data Capture (ADC) Technologies, Incorporated. All rights reserved. Complying with all applicable copyright

More information

x10data Application Platform v7.1 Installation Guide

x10data Application Platform v7.1 Installation Guide Copyright Copyright 2010 Automated Data Capture (ADC) Technologies, Incorporated. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without limiting the

More information

Microsoft Dynamics GP. Purchase Vouchers

Microsoft Dynamics GP. Purchase Vouchers Microsoft Dynamics GP Purchase Vouchers Copyright Copyright 2007 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without limiting

More information

Microsoft Dynamics GP. Inventory Kardex

Microsoft Dynamics GP. Inventory Kardex Microsoft Dynamics GP Inventory Kardex Copyright Copyright 2008 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without limiting

More information

MAX Shop Paper. Balance Point Technologies, Inc. MAX Shop Paper. User Guide. Certified MAX Integrator

MAX Shop Paper. Balance Point Technologies, Inc.   MAX Shop Paper. User Guide.   Certified MAX Integrator Balance Point Technologies, Inc. www.maxtoolkit.com MAX Shop Paper User Guide 1 P a g e Copyright Manual copyright 2015 Balance Point Technologies, Inc. All Rights reserved. Your right to copy this documentation

More information

SpellCheck for Dynamics GP

SpellCheck for Dynamics GP Title Page SpellCheck for Dynamics GP This documentation is for the builds shown below and higher: v12.0.15 / 14.0.6 / 16.0.3 SpellCheck from WilloWare Incorporated for Dynamics GP 2 Copyright Manual copyright

More information

SmartList Builder for Microsoft Dynamics GP 10.0

SmartList Builder for Microsoft Dynamics GP 10.0 SmartList Builder for Microsoft Dynamics GP 10.0 Including: SmartList Builder, Excel Report Builder, Navigation List Builder and Drill Down Builder Copyright: Manual copyright 2014 eone Integrated Business

More information

Microsoft Dynamics GP. Extender User s Guide Release 9.0

Microsoft Dynamics GP. Extender User s Guide Release 9.0 Microsoft Dynamics GP Extender User s Guide Release 9.0 Copyright Copyright 2005 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user.

More information

Microsoft Dynamics GP. Extender User s Guide

Microsoft Dynamics GP. Extender User s Guide Microsoft Dynamics GP Extender User s Guide Copyright Copyright 2009 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without

More information

MAX Workbench. Balance Point Technologies, Inc. MAX Workbench. User Guide. Certified MAX Integrator

MAX Workbench. Balance Point Technologies, Inc.  MAX Workbench. User Guide.  Certified MAX Integrator Balance Point Technologies, Inc. www.maxtoolkit.com MAX Workbench User Guide 1 P a g e Copyright Manual copyright 2017 Balance Point Technologies, Inc. All Rights reserved. Your right to copy this documentation

More information

Microsoft Dynamics GP Release Integration Guide For Microsoft Retail Management System Headquarters

Microsoft Dynamics GP Release Integration Guide For Microsoft Retail Management System Headquarters Microsoft Dynamics GP Release 10.0 Integration Guide For Microsoft Retail Management System Headquarters Copyright Copyright 2007 Microsoft Corporation. All rights reserved. Complying with all applicable

More information

Microsoft Dynamics GP. Working With Configurations Release 10.0

Microsoft Dynamics GP. Working With Configurations Release 10.0 Microsoft Dynamics GP Working With Configurations Release 10.0 Copyright Copyright 2008 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of

More information

Quick Data Loader. Balance Point Technologies, Inc. Quick Data Loader. User Guide. Certified MAX Integrator

Quick Data Loader. Balance Point Technologies, Inc.  Quick Data Loader. User Guide.  Certified MAX Integrator Balance Point Technologies, Inc. www.maxtoolkit.com Quick Data Loader User Guide 1 P a g e Copyright Manual copyright 2017 Balance Point Technologies, Inc. All Rights reserved. Your right to copy this

More information

Paycode Mass Update 2013

Paycode Mass Update 2013 Paycode Mass Update 2013 An application for Microsoft Dynamics GP 2013 Furthering your success through innovative business solutions Copyright Manual copyright 2016 Encore Business Solutions, Inc. Printed

More information

Commission Plan Support for Microsoft Professional Services Tools Library. For Microsoft Dynamics GP versions:

Commission Plan Support for Microsoft Professional Services Tools Library. For Microsoft Dynamics GP versions: Commission Plan Support for Microsoft Professional Services Tools Library For Microsoft Dynamics GP versions: 2018 2016 2015 2013 2010 10 1 Copyright Manual copyright 2011 EthoTech, Inc. All rights reserved.

More information

Balance Point Technologies, Inc. MAX Toolbar for Microsoft Dynamics GP. For MAX (SQL Server) User Guide

Balance Point Technologies, Inc.  MAX Toolbar for Microsoft Dynamics GP. For MAX (SQL Server) User Guide Balance Point Technologies, Inc. www.maxtoolkit.com MAX Toolbar for Microsoft Dynamics GP For MAX (SQL Server) User Guide MAX Toolbar for Microsoft Dynamics GP Copyright Manual copyright 2010 Balance Point

More information

Receive and Forward syslog events through EventTracker Agent. EventTracker v9.0

Receive and Forward syslog events through EventTracker Agent. EventTracker v9.0 Receive and Forward syslog events through EventTracker Agent EventTracker v9.0 Publication Date: July 23, 2018 Abstract The purpose of this document is to help users to receive syslog messages from various

More information

Microsoft Dynamics GP. Integration Manager Quick Start

Microsoft Dynamics GP. Integration Manager Quick Start Microsoft Dynamics GP Integration Manager Quick Start Copyright Copyright 2008 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user.

More information

The EthoSeries Installation Guide

The EthoSeries Installation Guide The EthoSeries Installation Guide For Microsoft Dynamics GP 2013 Copyright Manual copyright 2013 EthoTech, Inc. All rights reserved. Your right to copy this documentation is limited by copyright law and

More information

epaystub 2015 Build Notes ENCORE BUSINESS SOLUTIONS twitter.com/encorebusiness.com

epaystub 2015 Build Notes ENCORE BUSINESS SOLUTIONS   twitter.com/encorebusiness.com epaystub 2015 Build Notes ENCORE BUSINESS SOLUTIONS www.encorebusiness.com twitter.com/encorebusiness.com encore@encorebusiness.com Copyright Build Notes copyright 2018 Encore Business Solutions, Inc.

More information

epaystub 2016 Build Notes ENCORE BUSINESS SOLUTIONS twitter.com/encorebusiness.com

epaystub 2016 Build Notes ENCORE BUSINESS SOLUTIONS   twitter.com/encorebusiness.com epaystub 2016 Build Notes ENCORE BUSINESS SOLUTIONS www.encorebusiness.com twitter.com/encorebusiness.com encore@encorebusiness.com Copyright Build Notes copyright 2018 Encore Business Solutions, Inc.

More information

RMH RESOURCE EDITOR USER GUIDE

RMH RESOURCE EDITOR USER GUIDE RMH RESOURCE EDITOR USER GUIDE Retail Management Hero (RMH) rmhsupport@rrdisti.com www.rmhpos.com Copyright 2017, Retail Management Hero. All Rights Reserved. RMHDOCRESOURCE071317 Disclaimer Information

More information

Balance Point Technologies, Inc. MAX Toolbar for Microsoft Dynamics GP V2013. User Guide

Balance Point Technologies, Inc.   MAX Toolbar for Microsoft Dynamics GP V2013. User Guide Balance Point Technologies, Inc. MAX Toolbar for Microsoft Dynamics GP V2013 User Guide MAX Toolbar for Microsoft Dynamics GP V2013 Copyright Manual copyright 2013 Balance Point Technologies, Inc. All

More information

Document Manager. Balance Point Technologies, Inc. Document Manager. User Guide. Certified MAX Integrator

Document Manager. Balance Point Technologies, Inc.  Document Manager. User Guide.  Certified MAX Integrator Balance Point Technologies, Inc. www.maxtoolkit.com Document Manager User Guide 1 P a g e Copyright Manual copyright 2017 Balance Point Technologies, Inc. All Rights reserved. Your right to copy this documentation

More information

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

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

More information

Software Installation with Microsoft SQL 2008

Software Installation with Microsoft SQL 2008 Agency Information Manager Software Installation with Microsoft SQL 2008 Revised: 3.7.2012 2012 Vertafore, Inc. All Rights Reserved. This software and documentation are copyrighted materials. Law prohibits

More information

Lab Answer Key for Module 1: Creating Databases and Database Files

Lab Answer Key for Module 1: Creating Databases and Database Files Lab Answer Key for Module 1: Creating Databases and Database Files Table of Contents Lab 1: Creating Databases and Database Files 1 Exercise 1: Creating a Database 1 Exercise 2: Creating Schemas 4 Exercise

More information

esss Release Notes Version 4.0 Service Pack 1

esss Release Notes Version 4.0 Service Pack 1 esss Release Notes Version 4.0 Service Pack 1 May, 2012 Copyright Information Copyright 2012 Nodus Technologies, Inc. All rights reserved. - Copyright 2004, 2005, 2006, 2007, 2008 BV Software. All rights

More information

IIS Web Server Configuration Guide EventTracker v8.x

IIS Web Server Configuration Guide EventTracker v8.x IIS Web Server Configuration Guide EventTracker v8.x Publication Date: May 10, 2017 Abstract The purpose of this document is to help users install or customize web server (IIS) on Win 2K12, Win 2K12 R2,

More information

Year End Procedures for Canadian Payroll December 2017

Year End Procedures for Canadian Payroll December 2017 December Tax Update 2017 Year End Procedures for Canadian Payroll December 2017 WINNIPEG. CALGARY. VANCOUVER Copyright Manual copyright 2017 Encore Business Solutions, Inc. Printed in Canada. All rights

More information

Auto / Account Reconciler 2013

Auto / Account Reconciler 2013 Auto / Account Reconciler 2013 Build Notes ENCORE BUSINESS SOLUTIONS www.encorebusiness.com twitter.com/encorebusiness.com encore@encorebusiness.com Copyright Build Notes copyright 2016 Encore Business

More information

MICROSOFT MAKES NO WARRANTIES, EXPRESS OR IMPLIED, AS TO THE INFORMATION IN THIS DOCUMENT.

MICROSOFT MAKES NO WARRANTIES, EXPRESS OR IMPLIED, AS TO THE INFORMATION IN THIS DOCUMENT. The information contained in this document represents the current view of Microsoft Corporation and its Affiliates ("Microsoft") on the issues discussed as of the date of publication. Because Microsoft

More information

Installation guide. WebChick. Installation guide for use on local PC

Installation guide. WebChick. Installation guide for use on local PC WebChick Installation guide for use on local PC Version 1.0 Agrologic Ltd. Author: Valery M. Published: March 2011 1 Table of Contents Copyright Information... 3 Abstract... 4 Overview:... 4 System Requirements

More information

Introducing Express Deployment Tool for Windows 10. User Guide V3.0

Introducing Express Deployment Tool for Windows 10. User Guide V3.0 Introducing Express Deployment Tool for Windows 10 User Guide V3.0 The information contained in this document represents the current view of Microsoft Corporation and its Affiliates ("Microsoft") on the

More information

StoneGate IPsec VPN Client Release Notes for Version 4.2.0

StoneGate IPsec VPN Client Release Notes for Version 4.2.0 StoneGate IPsec VPN Client Release Notes for Version 4.2.0 Created: July 24, 2008 Table of Contents What s New... 3 System Requirements... 4 Build Version... 4 Compatibility... 4 IPsec Compliance... 4

More information

Installing Act! for New Users

Installing Act! for New Users Installing Act! for New Users Installing Act! for New Users 2017 Swiftpage ACT! LLC. All Rights Reserved. Swiftpage, Act!, and the Swiftpage product and service names mentioned herein are registered trademarks

More information

Microsoft Dynamics AX Team Server (ID Server) Setup Whitepaper for Microsoft. Dynamics AX 2009.

Microsoft Dynamics AX Team Server (ID Server) Setup Whitepaper for Microsoft. Dynamics AX 2009. Setup Microsoft Dynamics AX 2009 Team Server (ID Server) Setup Whitepaper for Microsoft Dynamics AX 2009 White Paper This document describes how to set up Team Server for Microsoft Dynamics AX 2009. Date:

More information

Security Removable Media Manager

Security Removable Media Manager Security Removable Media Manager Version 7.0.0.0 (July 2015) Protect your valuable data 2011 Squadra Technologies, LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright.

More information

IIS Web Server Configuration Guide EventTracker v9.x

IIS Web Server Configuration Guide EventTracker v9.x IIS Web Server Configuration Guide EventTracker v9.x Publication Date: December 11, 2017 Abstract The purpose of this document is to help users install or customize web server (IIS) on Win 2k16, 2K12,

More information

How To Embed EventTracker Widget to an External Site

How To Embed EventTracker Widget to an External Site How To Embed EventTracker Widget to an External Site Publication Date: March 27, 2018 Abstract This guide will help the user(s) to configure an EventTracker Widget to an External Site like SharePoint.

More information

HUAWEI H30-U10. Quick Start Guide

HUAWEI H30-U10. Quick Start Guide HUAWEI H30-U10 Quick Start Guide Dual card dual standby single pass Your phone supports only dual card dual standby single pass, which means you cannot use both SIM cards for calls or data services simultaneously.

More information

Implementing and Supporting Windows Intune

Implementing and Supporting Windows Intune Implementing and Supporting Windows Intune Lab 4: Managing System Services Lab Manual Information in this document, including URL and other Internet Web site references, is subject to change without notice.

More information

SUPPORT MATRIX. Comtrade OMi Management Pack for Citrix

SUPPORT MATRIX. Comtrade OMi Management Pack for Citrix Comtrade OMi Management Pack for Citrix : 2.0 Product release date: December 2016 Document release date: July 2017 Legal notices Copyright notice 2017 Comtrade Software. All rights reserved. This document

More information

HYCU SCOM Management Pack for F5 BIG-IP

HYCU SCOM Management Pack for F5 BIG-IP HYCU SCOM Management Pack for F5 BIG-IP Product version: 5.3 Product release date: March 2018 Document edition: Second Legal notices Copyright notice 2015-2018 HYCU. All rights reserved. This document

More information

Port Configuration. Configure Port of EventTracker Website

Port Configuration. Configure Port of EventTracker Website Port Configuration Configure Port of EventTracker Website Publication Date: May 23, 2017 Abstract This guide will help the end user to change the port of the Website, using the Port Configuration tool,

More information

Microsoft Dynamics GP. Analytical Accounting

Microsoft Dynamics GP. Analytical Accounting Microsoft Dynamics GP Analytical Accounting Copyright Copyright 2008 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without

More information

epaystub for Canadian Payroll 2016

epaystub for Canadian Payroll 2016 epaystub for Canadian Payroll 2016 An application for Microsoft Dynamics TM GP 2016 Furthering your success through innovative business solutions Copyright Manual copyright 2017 Encore Business Solutions,

More information

Upgrading to Sage ACT! 2013 from ACT! 3.x, 4.x, 5.x (2000), or 6.x (2004)

Upgrading to Sage ACT! 2013 from ACT! 3.x, 4.x, 5.x (2000), or 6.x (2004) Upgrading to Sage ACT! 2013 from ACT! 3.x, 4.x, 5.x (2000), or 6.x (2004) Copyright 2012 Sage Software, Inc. All Rights Reserved. Sage, the Sage logos, ACT!, and the Sage product and service names mentioned

More information

SECURE FILE TRANSFER PROTOCOL. EventTracker v8.x and above

SECURE FILE TRANSFER PROTOCOL. EventTracker v8.x and above SECURE FILE TRANSFER PROTOCOL EventTracker v8.x and above Publication Date: January 02, 2019 Abstract This guide provides instructions to configure SFTP logs for User Activities and File Operations. Once

More information

Security Removable Media Manager

Security Removable Media Manager Security Removable Media Manager Version 9.7.0.0 (February 2017) Protect your valuable data 2011 Squadra Technologies, LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by

More information

SUPPORT MATRIX. HYCU OMi Management Pack for Citrix

SUPPORT MATRIX. HYCU OMi Management Pack for Citrix HYCU OMi Management Pack for Citrix : 2.0 Product release date: October 2017 Document release data: April 2018 Legal notices Copyright notice 2014-2018 HYCU. All rights reserved. This document contains

More information

StoneGate IPsec VPN Client Release Notes for Version 5.0.1

StoneGate IPsec VPN Client Release Notes for Version 5.0.1 StoneGate IPsec VPN Client Release Notes for Version 5.0.1 Created: July 2, 2009 Table of Contents What s New... 3 System Requirements... 4 Build Version... 4 Product Binary Checksums... 4 Compatibility...

More information

Auto / Account Reconciler 2016 Build Notes

Auto / Account Reconciler 2016 Build Notes Auto / Account Reconciler 2016 Build Notes ENCORE BUSINESS SOLUTIONS www.encorebusiness.com twitter.com/encorebusiness.com encore@encorebusiness.com Copyright Build Notes copyright 2018 Encore Business

More information

RMH LABEL DESIGNER. Retail Management Hero (RMH)

RMH LABEL DESIGNER. Retail Management Hero (RMH) RMH LABEL DESIGNER Retail Management Hero (RMH) rmhsupport@rrdisti.com www.rmhpos.com Copyright 2016, Retail Realm. All Rights Reserved. RMHDOCLABEL050916 Disclaimer Information in this document, including

More information

Advanced SmartList. An application for Microsoft Dynamics TM GP Furthering your success through innovative business solutions

Advanced SmartList. An application for Microsoft Dynamics TM GP Furthering your success through innovative business solutions Advanced SmartList An application for Microsoft Dynamics TM GP 2013 Furthering your success through innovative business solutions ADVANCED SMARTLIST I Copyright Manual copyright 2013 Encore Business Solutions,

More information

Exclaimer Outlook Photos 1.0 Release Notes

Exclaimer Outlook Photos 1.0 Release Notes Exclaimer Release Notes Exclaimer UK +44 (0) 1252 531 422 USA 1-888-450-9631 info@exclaimer.com 1 Contents About these Release Notes... 3 Release Number... 3 Hardware... 3 Software... 3 Prerequisites...

More information

Microcat Authorisation Server (MAS ) User Guide

Microcat Authorisation Server (MAS ) User Guide Microcat Authorisation Server (MAS ) User Guide Contents Introduction... 2 Install Microcat Authorisation Server (MAS)... 3 Configure MAS... 4 License Options... 4 Internet Options... 5 Licence Manager...

More information

CHECK PROCESSING. A Select Product of Cougar Mountain Software

CHECK PROCESSING. A Select Product of Cougar Mountain Software CHECK PROCESSING A Select Product of Cougar Mountain Software Check Processing Copyright Notification At Cougar Mountain Software, Inc., we strive to produce high-quality software at reasonable prices.

More information

Exclaimer Mail Archiver

Exclaimer Mail Archiver Deployment Guide - Outlook Add-In www.exclaimer.com Contents About This Guide... 3 System Requirements... 4 Software... 4 Installation Files... 5 Deployment Preparation... 6 Installing the Add-In Manually...

More information

Configuring TLS 1.2 in EventTracker v9.0

Configuring TLS 1.2 in EventTracker v9.0 Configuring TLS 1.2 in EventTracker v9.0 Publication Date: August 6, 2018 Abstract This Guide will help EventTracker Administrators to configure TLS ( Transport Layer Security) protocol 1.2 for EventTracker

More information

Product Update: ET82U16-029/ ET81U EventTracker Enterprise

Product Update: ET82U16-029/ ET81U EventTracker Enterprise Product Update: ET82U16-029/ ET81U16-033 EventTracker Enterprise Publication Date: Oct. 18, 2016 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com Update: ET82U16-029/ ET81U16-033

More information

Toad Intelligence Central 3.3 New in This Release

Toad Intelligence Central 3.3 New in This Release Toad Intelligence Central 3.3 New in This Release Tuesday, March 28, 2017 This release of Toad Intelligence Central includes the following new features and enhancements. Toad Data Point Enter Variable

More information

Stonesoft Firewall/VPN Express. Release Notes for Version 5.5.4

Stonesoft Firewall/VPN Express. Release Notes for Version 5.5.4 Stonesoft Firewall/VPN Express Release Notes for Version 5.5.4 Created: December 17, 2013 Table of Contents What s New... 3 Fixes... 3 System Requirements... 4 Stonesoft Firewall/VPN Appliances... 4 Build

More information

One Identity Manager Administration Guide for Connecting to SharePoint

One Identity Manager Administration Guide for Connecting to SharePoint One Identity Manager 8.0.2 Administration Guide for Connecting to Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

WorkPlace Applications Installation/Upgrade Guide

WorkPlace Applications Installation/Upgrade Guide WorkPlace Applications Installation/Upgrade Guide Designed for WorkPlace 2016 and Greater (v16.00+) Paramount Technologies Inc. 1374 East West Maple Road Walled Lake, MI 48390-3765 Phone 248.960.0909 Fax

More information

StoneGate Firewall/VPN How-To Installing and Activating StoneGate FW/VPN in VMware ESX Server

StoneGate Firewall/VPN How-To Installing and Activating StoneGate FW/VPN in VMware ESX Server StoneGate Firewall/VPN How-To Installing and Activating StoneGate FW/VPN in VMware ESX Server Created: June 11, 2008 Table of Contents Introduction to Installing and Activating StoneGate FW/VPN in VMware

More information

Installation Guide. ProView. For System Center operations Manager ProView Installation Guide. Dynamic Azure and System Center insights

Installation Guide. ProView. For System Center operations Manager ProView Installation Guide. Dynamic Azure and System Center insights ProView Dynamic Azure and System Center insights Installation Guide For System Center operations Manager 2012 Copyright The information contained in this document represents the current view of OpsLogix

More information

System Management Guide Version 7.52

System Management Guide Version 7.52 Sage 500 Budgeting and Planning 2013 System Management Guide Version 7.52 Copyright Trademarks Program copyright 1995-2013 Sage Software, Inc. This work and the computer programs to which it relates are

More information

Connector for OpenText Content Server Setup and Reference Guide

Connector for OpenText Content Server Setup and Reference Guide Connector for OpenText Content Server Setup and Reference Guide Published: 2018-Oct-09 Contents 1 Content Server Connector Introduction 4 1.1 Products 4 1.2 Supported features 4 2 Content Server Setup

More information

1.0. Quest Enterprise Reporter Discovery Manager USER GUIDE

1.0. Quest Enterprise Reporter Discovery Manager USER GUIDE 1.0 Quest Enterprise Reporter Discovery Manager USER GUIDE 2012 Quest Software. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide

More information

One Identity Password Manager User Guide

One Identity Password Manager User Guide One Identity Password Manager 5.8.2 User Guide Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide

More information

INSTALLATION & OPERATIONS GUIDE Wavextend Calculation Framework & List Manager for CRM 4.0

INSTALLATION & OPERATIONS GUIDE Wavextend Calculation Framework & List Manager for CRM 4.0 INSTALLATION & OPERATIONS GUIDE Wavextend Calculation Framework & List Manager for CRM 4.0 COPYRIGHT Information in this document, including URL and other Internet Web site references, is subject to change

More information

KwikTag v4.5.1 Release Notes

KwikTag v4.5.1 Release Notes KwikTag v4.5.1 Release Notes The following release notes cover the KwikTag core components as well as the major clients and connectors. All previous releases must be applied before installing this release.

More information

Installing Enterprise Switch Manager

Installing Enterprise Switch Manager Installing Enterprise Switch Manager NN47300-300 Document status: Standard Document version: 0401 Document date: 26 March 2008 All Rights Reserved The information in this document is subject to change

More information

One Identity Starling Two-Factor Authentication. Administrator Guide

One Identity Starling Two-Factor Authentication. Administrator Guide One Identity Authentication Administrator Guide Copyright 2017 Quest Software Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this

More information

Stonesoft User Agent. Release Notes for Version 1.1.3

Stonesoft User Agent. Release Notes for Version 1.1.3 Stonesoft User Agent Release Notes for Version 1.1.3 Created: November 26, 2012 Table of Contents What s New... 3 Features... 3 Enhancements... 3 Fixes... 3 Changes... 4 System Requirements... 4 General

More information

One Identity Starling Two-Factor Authentication. Administration Guide

One Identity Starling Two-Factor Authentication. Administration Guide One Identity Starling Two-Factor Authentication Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this

More information

NetApp Cloud Volumes Service for AWS

NetApp Cloud Volumes Service for AWS NetApp Cloud Volumes Service for AWS AWS Account Setup Cloud Volumes Team, NetApp, Inc. March 29, 2019 Abstract This document provides instructions to set up the initial AWS environment for using the NetApp

More information

Auto Reconciler An application for Microsoft Dynamics TM GP Furthering your success through innovative business solutions

Auto Reconciler An application for Microsoft Dynamics TM GP Furthering your success through innovative business solutions Auto Reconciler 2015 An application for Microsoft Dynamics TM GP 2015 Furthering your success through innovative business solutions Copyright Manual copyright 2017 Encore Business Solutions, Inc. Printed

More information

Getting Started with Tally.Developer 9 Alpha

Getting Started with Tally.Developer 9 Alpha Getting Started with Tally.Developer 9 Alpha The information contained in this document is current as of the date of publication and subject to change. Because Tally must respond to changing market conditions,

More information

US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.

US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Service Data Objects (SDO) DFED Sample Application README Copyright IBM Corporation, 2012, 2013 US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract

More information

What s New in BID2WIN Service Pack 4

What s New in BID2WIN Service Pack 4 What s New in BID2WIN Service Pack 4 BID2WIN Software, Inc. Published: August, 2006 Abstract BID2WIN 2005 Service Pack 4 includes many exciting new features that add more power and flexibility to BID2WIN,

More information

KwikTag v4.5.0 Release Notes

KwikTag v4.5.0 Release Notes KwikTag v4.5.0 Release Notes The following release notes cover the KwikTag core components as well as the major clients and connectors. System Requirements Internet Explorer 7.0 (or Internet Explorer 8

More information

One Identity Manager Administration Guide for Connecting Oracle E-Business Suite

One Identity Manager Administration Guide for Connecting Oracle E-Business Suite One Identity Manager 8.0.2 Administration Guide for Connecting Oracle E- Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

Stonesoft Firewall/VPN Express. Release Notes for Version 5.5.2

Stonesoft Firewall/VPN Express. Release Notes for Version 5.5.2 Stonesoft Firewall/VPN Express Release Notes for Version 5.5.2 Created: September 24, 2013 Table of Contents What s New... 3 Fixes... 3 System Requirements... 4 Stonesoft Firewall/VPN Appliances... 4 Build

More information

Report Assistant for Microsoft Dynamics SL Allocator Module

Report Assistant for Microsoft Dynamics SL Allocator Module Report Assistant for Microsoft Dynamics SL Allocator Module Last Revision: October 2012 (c)2012 Microsoft Corporation. All rights reserved. This document is provided "as-is." Information and views expressed

More information

StoneGate IPsec VPN Client Release Notes for Version 4.3.1

StoneGate IPsec VPN Client Release Notes for Version 4.3.1 StoneGate IPsec VPN Client Release Notes for Version 4.3.1 Created: October 13, 2008 Table of Contents What s New... 3 System Requirements... 4 Build Version... 4 Product Binary Checksums... 4 Compatibility...

More information

One Identity Active Roles 7.2

One Identity Active Roles 7.2 One Identity December 2017 This document provides information about the Active Roles Add_on Manager7.2. About Active Roles Add_on Manager New features Known issues System requirements Getting started with

More information

Microsoft Dynamics GP. System User s Guide

Microsoft Dynamics GP. System User s Guide Microsoft Dynamics GP System User s Guide Copyright Copyright 2008 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without limiting

More information

Setting up the DR Series System on Acronis Backup & Recovery v11.5. Technical White Paper

Setting up the DR Series System on Acronis Backup & Recovery v11.5. Technical White Paper Setting up the DR Series System on Acronis Backup & Recovery v11.5 Technical White Paper Quest Engineering November 2017 2017 Quest Software Inc. ALL RIGHTS RESERVED. THIS WHITE PAPER IS FOR INFORMATIONAL

More information

Stellar Phoenix Messenger Password Recovery

Stellar Phoenix Messenger Password Recovery Stellar Phoenix Messenger Password Recovery User Guide Version 1.0 Overview Messengers or instant messaging clients are computer programs used by many people to send and receive instant text messages between

More information

Oracle Hospitality Simphony Cloud Services Post-Installation or Upgrade Guide Release 2.10 E July 2018

Oracle Hospitality Simphony Cloud Services Post-Installation or Upgrade Guide Release 2.10 E July 2018 Oracle Hospitality Simphony Cloud Services Post-Installation or Upgrade Guide Release 2.10 E89810-04 July 2018 Copyright 2010, 2018, Oracle and/or its affiliates. All rights reserved. This software and

More information

Multifactor Authentication Installation and Configuration Guide

Multifactor Authentication Installation and Configuration Guide Multifactor Authentication Installation and Configuration Guide Software Version 5.0.0.0 General Information: info@cionsystems.com Online Support: support@cionsystems.com 2017 CionSystems Inc. ALL RIGHTS

More information

JD Edwards EnterpriseOne 8.12 Standalone Client Installation Guide. for the Oracle Application Server

JD Edwards EnterpriseOne 8.12 Standalone Client Installation Guide. for the Oracle Application Server JD Edwards EnterpriseOne 8.12 Standalone Client Installation Guide for the Oracle Application Server April 2006 JD Edwards EnterpriseOne 8.12 Standalone Client Installation Guide Copyright 2006, Oracle.

More information

Exclaimer Signature Manager 2.0 Release Notes

Exclaimer Signature Manager 2.0 Release Notes Exclaimer Release Notes Exclaimer UK +44 (0) 1252 531 422 USA 1-888-450-9631 info@exclaimer.com 1 Contents About these Release Notes... 3 Release Number... 3 Hardware... 3 Software... 3 Hardware... 3 Software...

More information

One Identity Starling Two-Factor AD FS Adapter 6.0. Administrator Guide

One Identity Starling Two-Factor AD FS Adapter 6.0. Administrator Guide One Identity Adapter 6.0 Administrator Guide Copyright 2017 Quest Software Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide

More information