The WebAccountManager Plugin (HTML5 version) Installation. delete from DB_OPERATIONS where GUID=' '

Size: px
Start display at page:

Download "The WebAccountManager Plugin (HTML5 version) Installation. delete from DB_OPERATIONS where GUID=' '"

Transcription

1 delete from DB_OPERATIONS where GUID=' ' The WebAccountManager Plugin (HTML5 version) Installation TCPOS The WebAccountManager plugin (HTML5 version) - Installation Page 1/17

2 This document and all of its contents are protected by copyright. All rights are expressly reserved including those of duplication, reproduction, translation, microfilming, storage on electronic media and processing in electronic form. TCPOS is a registered trademark of TCPOS SA. Microsoft, Windows, Windows XP, Windows Embedded POSready, Windows Vista, Windows 7, Windows 8, Windows Embedded POSready 7, Windows 2003 Server, Windows Server 2008, Windows Server 2008 R2, Windows Server 2012, Windows Server 2012 RC2, Microsoft SQLServer 2005, Microsoft SQLServer 2008, Microsoft SQLServer 2008 R2, Microsoft SQLServer 2012, Microsoft SQLServer 2012 Express Edition 32 bit & Microsoft SQLServer 2012 Express Edition 64 bit, Microsoft SQLServer 2014, Microsoft SQLServer 2014 Express Edition 32 bit & Microsoft SQLServer 2014 Express Edition 64 bit, Windows Mobile 2003, Windows Mobile 5.0, Windows CE.NET 4.0, Windows CE.NET 4.2, Windows CE 5.0, Windows CE 5.1, Windows CE 5.2, Windows Embedded CE 6.0, Windows Embedded CE 6.1, Windows Embedded CE 6.5, Windows Embedded CE 6.0 R2 and Windows Embedded CE 6.0 R3 are registered trademarks of Microsoft Corporation. Oracle 10gTM, Oracle 11gTM, Oracle 11g R2TM, Oracle 11 XE Express edition 32 bittm, Oracle 12cTM, are trademarks or registered trademarks of Oracle Corporation. The PostgreSQL 9.1, The PostgreSQL 9.3 are a registered trademark of The PostgreSQL Global Development Group. Android is a registered trademark of Google Inc. All other company, product and brand names are trademarks or registered trademarks of their respective owners. The information featured in this document may be subject to change without notice at any time. Copyright TCPOS SA, All Rights Reserved. Document info Document ID: STD_INST_WebAccountManager_(HTML5)_1.0 Document date: June 2016 Document version: 1.0 Valid from Valid to last version released Distribution: This electronic file is the original and supersedes any printed copy Switzerland TCPOS SA - Lugano Centro Galleria 2, Via Cantonale 2c CH-6928 Manno Tel. +41 (0) Fax +41 (0) Germany TCPOS GmbH Völklingen (Saarbrücken) Saarwiesenstr. 5 D Völklingen Tel. +49 (0) Fax +49 (0) France TCPOS France - Paris 9 b Rue de la Sablière F Gennevilliers Tel. +33 (0) Italy ZUCCHETTI TCPOS Srl - Milan Via A. De Gasperi Rho (MI) Tel Fax: TCPOS SA - Lausanne Route Z.I. La Vulpillière 61B CH-1070 Puidoux Tel. +41 (0) Fax +41 (0) TCPOS SA - Zürich Giessenstrasse 15 CH-8953 Dietikon Tel. +41 (0) Fax +41 (0) USA TCPOS U.S.A. Inc. - Reno 1875 Plumas Street Ste 5 Reno, NV Tel +1 (775) North America TCPOS North America Toronto 2225 Sheppard Ave. East (Atria III Building) Suite 901 Toronto, ON Canada M2J 5C2. Tel. +1 (416) Fax +1 (416) Latin America TCPOS SA Buenos Aires Portela 407, 2ºC C1406FDI Buenos Aires- Argentina Tel (11) Fax +1 (416) China TCPOS ASIA Shanghai No.400 Fangchun Road China (Shanghai) Pilot Free Trade Zone Tel TCPOS The WebAccountManager plugin (HTML5 version) - Installation Page 2/17

3 Index Index... 3 Scheme of the plugin workability inside TCPOS... 4 Part 1: Implementation... 6 Plugin modules... 7 Plugin installation... 7 Scheme of the web server directory structure inside TCPOS...9 The WebAccountManagerService installation...12 The customer s web page definition and configuration...16 TCPOS The WebAccountManager plugin (HTML5 version) - Installation Page 3/17

4 Foreword Scheme of the plugin workability inside TCPOS TCPOS The WebAccountManager plugin (HTML5 version) - Installation Page 4/17

5 Kernel and Plugin Data Scheme of the plugin workability inside TCPOS Blue arrows = internet WebSite request.open = " CLOUD WebService <server>tcpos4learning513@ :9095 <httpserveraddress> (WEB) ServerService :9095 dbaliases=tcpos4learning513 Till FrontEnd p2p = :6195 SHOP Admin p2p= :6195 Central DB tcpos4learning513 In the environment: ServerService - standard allows the communication between Admin and FrontEnd and the database WebService strictly linked to the Web Account Manager plugin the possible web page that will use the WebService structures and features Note To facilitate the installation, we used fake IP addresses that are used also in the chapter about the setup. TCPOS The WebAccountManager plugin (HTML5 version) - Installation Page 5/17

6 Part 1: Implementation Plugin modules Plugin installation TCPOS The WebAccountManager plugin (HTML5 version) - Installation Page 6/17

7 Plugin modules The plugin is composed by: an Admin dll and a dictionary (Plugin.WebAccountManager.Admin.dll, Plugin.WebAccountManager.Admin.dic) a FrontEnd dll and a dictionary (Plugin.WebAccountManager.FrontEnd.dll, Plugin.WebAccountManager.FrontEnd.dic) a DroidPos dll and a dictionary (Plugin.WebAccountManager.DroidPos.dll, Plugin.WebAccountManager.FrontEnd.dic) a file SQL that creates the tables used by the plugin (for Oracle, SQL Server and Postgres: AccountManagerDB-Oracle.sql, AccountManagerDB-Postgres.sql, AccountManagerDB-SqlServer.sql) a service that publishes the methods reachable from the website dir WebPages Dispatcher.WebAccountServer.dic Dispatcher.WebAccountServer.dll Example.TCPOS.JsonHttpServer.exe.config TCPOS.Compression.dll TCPOS.DbHelper.dll TCPOS.Debug.dll TCPOS.FrontEnd.DataClasses.dll TCPOS.FrontEnd.Server.dll TCPOS.FrontEnd.UserInterface.Interfaces.dll TCPOS.JsonHttpServer.exe TCPOS.RemotingHelper.dll TCPOS.Translation.dll TCPOS.Utilities.dll TCPOS.WCFHelper.dll Through the WebService it will be possible to integrate the web page developed by the customer, that will allow the automatic insertion of the order by the customers. dir WebPages\public_html Plugin installation Note The plugin installation follows the rules of the plugins standard installation. Database tables The Database tables are installed by running the script AccountManagerDB-Oracle.sql or AccountManagerDB-SqlServer.sql or AccountManagerDB-Postgres.sql according to the database type. Admin plugin installation Copy the files Plugin.WebAccountManager.Admin.dll and Plugin.WebAccountManager.Admin.dic in the same directory.\plugins where the Admin executables. The directory is usually C:\TCPOS.net\Admin\Executables\4.x.x.x\Plugins. If not available, you have to create it. FrontEnd plugin installation Copy the files Plugin.WebAccountManager.FrontEnd.dll and Plugin.WebAccountManager.FrontEnd.dll in the same directory.\plugins where the FrontEnd executables are already present. The directory is usually C:\TCPOS.net\FrontEnd\Executables\4.x.x.x\Plugins. If not available, you have to create it. TCPOS The WebAccountManager plugin (HTML5 version) - Installation Page 7/17

8 HttpServer plugin installation and customer s web page installation and configuration The installation workflow of this part is described in the chapter aside The WebAccountManagerService installation DroidPos DroidPos plugin installation Copy the files Plugin.WebAccountManager.DroidPos.dll, Plugin.WebAccountManager.FrontEnd.dic in the same directory.\plugins where the DroidPos executables are already available. The directory is usually..\tcpos.net\droidpos\executables\4.x.x.x\plugins. If not available, you have to create it. TCPOS The WebAccountManager plugin (HTML5 version) - Installation Page 8/17

9 Scheme of the web server directory structure inside TCPOS In this manual, examples refer only to the WebAccountManager plugin, but in the same installation there may be other web applicatons. The new structure of TCPOS web applications allows grouping them all in a single Web Service directory, simplifying also the management of certificates for firewalls. Therefore, instead of installing a webservice for each web application and activating services on separate ports, the management through the same listener is possible. Important Check the compatibility of the plugin setup procedure (parameters of TCPOS.JsonHttpServer.exe.config) before to grouping them on the same WebService. Specific web service: separate web service for each web application The final structure of the directory will be the following: A service that publishes the methods reachable from the website The subdirectory aside includes the service plugin dll. The subdirectory aside includes the html5 programs of the web pages. TCPOS The WebAccountManager plugin (HTML5 version) - Installation Page 9/17

10 Note To simplify the activation of the web meal reservation plugin, the released package contains also files referring this functionality, not used by the Web account manager plugin. Grouped web service: one web service for all web application The final structure of the directory will be the following: A service that publishes the methods reachable from the website The subdirectory aside includes the service dll according to the plugin installed. As you install the plugins, they can be added to this directory. The subdirectory aside includes the html5 programs of the web pages and they can be collected all together. TCPOS The WebAccountManager plugin (HTML5 version) - Installation Page 10/17

11 TCPOS The WebAccountManager plugin (HTML5 version) - Installation Page 11/17

12 The WebAccountManagerService installation This section describes the steps to follow so that you can implement the web service on the server (the possible page will work together with this service). 1 Create a directory, typically C:\TCPOS.net\WebAccountManagerService 2 And copy in it the related files. dir WebPages Dispatcher.WebAccountServer.dic Dispatcher.WebAccountServer.dll Example.TCPOS.JsonHttpServer.exe.config TCPOS.Compression.dll TCPOS.DbHelper.dll TCPOS.Debug.dll TCPOS.FrontEnd.DataClasses.dll TCPOS.FrontEnd.Server.dll TCPOS.FrontEnd.UserInterface.Interfaces.dll TCPOS.JsonHttpServer.exe TCPOS.RemotingHelper.dll TCPOS.Translation.dll TCPOS.Utilities.dll TCPOS.WCFHelper.dll 3 Create a subdirectory Dispatchers and move in it the following files: Dispatcher.WebAccountServer.dic Dispatcher.WebAccountServer.dll dir Dispatchers 4 Copy in the root C:\TCPOS.net\WebAccountManagerService the same file stored in the ServerService directory. In this way, the service is independent from the one of the ServerService 5 Rename the Example.TCPOS.JsonHttpServer.exe.config file in TCPOS.JsonHttpServer.exe.config. and configure it following the instructions described in the chapter aside 6 Rename the web-account-parameters.json_example file in web-account-parameters.json. and set it following the instructions described in the chapter aside. 7 Now start the webservice as administrator in order to test if it works DbAliases.ini The TCPOS.JsonHttpServer.exe.config configuration file The web-account-parameters.json configuration file TCPOS.JsonHttpServer.exe Then, access the webpage via browser (in the example aside the test is made on localhost, but the address must be the one of the machine where the webservice works) 8 Install finally the webservice WebService installation and activation TCPOS The WebAccountManager plugin (HTML5 version) - Installation Page 12/17

13 The TCPOS.JsonHttpServer.exe.config configuration file The configuration file TCPOS.JsonHttpServer.exe.config contains the information for the correct startup of the TCPOS.JsonHttpServer. Except for the parameters specifically described, all the other parameters can be left with their default values. Any other variation should be done with the supervision of the TCPOS 3 rd level team. File content This file contains the following main configuration nodes, the ones highlighted in grey are mandatory parameters to configure <configuration> header <appsettings> - service main parameters The <appsettings> main node configuration In this section the user defines on which port the service is listening Mandatory parameters to set In this section the following parameters have to be set, for all others, leave default settings. In our example: <add key="url" value=" <add key="index.html" value="web-account.html"/> <add key="dispatcher-directories" value=".\dispatchers" /> <add key="files-directory" value=".\webpages\public_html"/> <add key="db-alias" value="tcpos4learning513"/> TCPOS The WebAccountManager plugin (HTML5 version) - Installation Page 13/17

14 Parameters definition <add key="url" value=" = URL on which this TCPOS.JsonHttpServer instance will be listening for incoming connections on the format. Corresponds to the address entered in the browser to access the web pages. Example: without the lettering /tcposapps = recalling the web page, it is enough to insert the address and the web port with the lettering /tcposapps = recalling the web page, the browser redirects to a subpage. <add key="index.html" value="web-account.html"/> Entering this web address, the page is activated directly without writing the whole path <add key="dispatcher-directories" value="." /> = The path where to find the dispatchers assemblies, loaded at runtime <add key="files-directory" value=".\webpages\public_html"/> = The root of the web application files (web pages) in the local file system <add key="db-alias" value="tcpos"/> = DBalias for central db connection (local dbalias for direct connection or ServerService s dbalias in the format dbalias@servicehostip:servicehostport) <add key="_saferpay" value="accountid= , NotifyUrl= = <add key="_datatrans" value="merchantid= "/> Parameters to be configured with the provider address of the payment services like SaferPay and Datatrans. <add key="_payment-emulator" value="notifyurl= <add key="_payengine" value="pspid=tcpostestaccountjb,notifyurl= These parameters activate an emulator for a payment provider. The web-account-parameters.json configuration file After the file renaming, the.json parameters must be set for each web application. File content In this section the user defines on which port the service is listening Mandatory parameters to set In this section the following parameters have to be set. In our example: "webserverurl": " "defaultlanguage": "en" TCPOS The WebAccountManager plugin (HTML5 version) - Installation Page 14/17

15 Check of the webservice port Standard configuration of http procol indicates that service uses a specific port, in our example is used the To check if the port is already used through the telnet command; if it is the case, change the number of both parameters. The message visible in the following mask indicates that the port is unused. WebService installation and activation 1 Indicate the correct path of the TCPOS.JsonHttpServer.exe file followed by the /install parameter. 2 If the installation process is correct, the related confirmation message is displayed 3 you can already verify if the application is ready by interrogating the Services and files created automatically by the installation can be seen by interrogating the related directory Dir /Traces TCPOS The WebAccountManager plugin (HTML5 version) - Installation Page 15/17

16 The customer s web page definition and configuration Important In order to communicate with the web service, an http REST communication type is used, with POST messages. The demo pages supplied with the plugin do not require additional parameter settings. The WebAccountManagerService installation If necessary, it is possible to give information about the protocol to use and also to provide a web page used for tests/demos. Resolution of installation problems occurring when launching the web page If - when connecting to the web - the browser doesn t display the initial page, it means that an error has occurred. If in place of the initial page it is displayed an error message, it is possible to control the traces on the server to better focus on the problem. D:\tcpos\WebAccountManagerService\Traces\ The following pages explain some of the most common errors that may happen during the installation. Case 1: The TCPOS.WebAccountManager service was not active Problem The connection with the initial web page is activated, the message aside is displayed at its place. Message from web page says: Error NetworkError: Failed to execute send on XMLHttpRequest : Failed to load OK Solution In this case, the first thing to do is to check that the TCPOS web service is active. TCPOS.JsonHttpServer.exe Case 2: Oracle was not active Problem The connection with the initial web page is activated, the message aside is displayed at its place Message from web page Error DBError on TCPOS server. Please try again later Solution In this case, the first thing to do is to check that the Oracle services are active. TCPOS The WebAccountManager plugin (HTML5 version) - Installation Page 16/17

17 Case 3 : Services are correctly activated but the initial page is not displayed Problem The connection with the initial web page is activated, but the message aside is displayed at its place. From a first check, both Oracle that the service are active. Solution It is possible to analyze the content of the TCPOS.Trace file, to see if there is any further information. Message from web page says: Request failed: Error 404-Not found. OK Case 4 : Error when communicating with the server Problem The connection with the initial web page is activated, but the message aside is displayed at its place. Solution During the tests, the firewall prevented the access to the Database. Message from web page Communication error with server TCPOS The WebAccountManager plugin (HTML5 version) - Installation Page 17/17

The Stress Test Tool. TCPOS The Stress Test tool Page 1/14

The Stress Test Tool. TCPOS The Stress Test tool Page 1/14 The Stress Test Tool TCPOS The Stress Test tool Page 1/14 This document and all of its contents are protected by copyright. All rights are expressly reserved including those of duplication, reproduction,

More information

ICash TpCash Plugin. TCPOS The ICash TpCash plugin Page 1/30

ICash TpCash Plugin. TCPOS The ICash TpCash plugin Page 1/30 ICash TpCash Plugin TCPOS The ICash TpCash plugin Page 1/30 This document and all of its contents are protected by copyright. All rights are expressly reserved including those of duplication, reproduction,

More information

Access Control Plugin. TCPOS The Access Control plugin Page 1/37

Access Control Plugin. TCPOS The Access Control plugin Page 1/37 Access Control Plugin TCPOS The Access Control plugin Page 1/37 This document and all of its contents are protected by copyright. All rights are expressly reserved including those of duplication, reproduction,

More information

Reference: TCPOS TerminalDroid installation and use.doc Date: Version: 1.01

Reference: TCPOS TerminalDroid installation and use.doc Date: Version: 1.01 TerminalDroid Installation, configuration and use Author: Michele Clinco Reference: TCPOS TerminalDroid installation and use.doc Date: 30.07.2012 Version: 1.01 Status: Draft Distribution: This electronic

More information

SharedObjects. Installation Guide 8.0. VMC-Mxx

SharedObjects. Installation Guide 8.0. VMC-Mxx SharedObjects Installation Guide 8.0 VMC-Mxx VISUAL Message Center SharedObjects Installation Guide The software described in this book is furnished under a license agreement and may be used only in accordance

More information

ARCAD Secure Sockets Layer (SSL) Version xx

ARCAD Secure Sockets Layer (SSL) Version xx Configuration Guide ARCAD Secure Sockets Layer (SSL) Version 10.09.xx Publication Date: September, 2018 Prepared by the ARCAD Documentation Team North America & LATAM EMEA (HQ) Asia Pacific 70 Main Street,

More information

Telephony Toolbar Enterprise. User Guide

Telephony Toolbar Enterprise. User Guide Telephony Toolbar Enterprise User Guide Release 4.4 October 2009 Table of Contents 1 Summary of Changes... 7 1.1 Changes for this Release... 7 2 About This Guide... 8 2.1 Open Telephony Toolbar-Corporate...

More information

Acronis and Acronis Secure Zone are registered trademarks of Acronis International GmbH.

Acronis and Acronis Secure Zone are registered trademarks of Acronis International GmbH. 1 Copyright Acronis International GmbH, 2002-2015 Copyright Statement Copyright Acronis International GmbH, 2002-2015. All rights reserved. Acronis and Acronis Secure Zone are registered trademarks of

More information

Copyright and Legal Disclaimers

Copyright and Legal Disclaimers 1 Copyright and Legal Disclaimers User Manual for DiConnect Enterprise R11. Document Release Date: June 25, 2014. Copyright 2014 by DiCentral Corporation. All rights reserved. This document and all content

More information

Reporting for Contact Center Setup and Operations Guide. BCM Contact Center

Reporting for Contact Center Setup and Operations Guide. BCM Contact Center Reporting for Contact Center Setup and Operations Guide BCM Contact Center Document Number: Document Status: Standard Document Version: 05.01 Date: September 2006 Copyright 2005 2006 Nortel Networks, All

More information

AT&T Cloud Web Security Service

AT&T Cloud Web Security Service AT&T Cloud Web Security Service Troubleshooting Guide Table of Contents 1 Summary... 3 2 Explicit Proxy Access Method... 4 2.1 Explicit Proxy Flow Diagram... 4 3 Proxy Forwarding Access Method... 6 3.1

More information

Activant Eagle DDS Integration Guide

Activant Eagle DDS Integration Guide ACTIVANT EAGLE DDS INTEGRATION GUIDE DDS INTEGRATION GUIDE Activant Eagle DDS Integration Guide Document # EL2198 This manual contains reference information about software products from Activant Solutions

More information

Cryptshare for Outlook Installation Guide

Cryptshare for Outlook Installation Guide Cryptshare for Outlook Installation Guide V1.6.2 Befine Solutions AG Werthmannstr. 15 79098 Freiburg i. Br. Germany Web: https://www.cryptshare.com E-Mail: info@cryptshare.com Tel.: +49 761 389 13 0 Fax:

More information

Accella Toolbar. User Guide. Release 20.0

Accella Toolbar. User Guide. Release 20.0 Accella Toolbar User Guide Release 20.0 Table of Contents 2 Introduction... 9 2.1 About Accella Toolbar... 9 2.2 About This Guide... 9 2.3 Accessing Toolbar... 9 2.4 First Time Login... 10 2.5 Subsequent

More information

What Is In This Guide. Overview Installation/Setup Printers Design Module

What Is In This Guide. Overview Installation/Setup Printers Design Module What Is In This Guide Overview Installation/Setup Printers Design Module 2011 2 Unibar ELS Enterprise Quick Start Guide Data Systems International, Inc. 7801 W. 110th Street Overland Park, Kansas 66210

More information

SignArchive 2.5. User Manual SOFTPRO GmbH, All rights reserved. Version 0.4

SignArchive 2.5. User Manual SOFTPRO GmbH, All rights reserved. Version 0.4 SignArchive 2.5 User Manual. 2008 SOFTPRO GmbH, All rights reserved Version 0.4 Date: August 5, 2008 Date: August 5, 2008 Content 1 OVERVIEW...4 2 INSTALLATION...5 2.1 SIGNARCHIVE SERVER...5 2.1.1 Upgrade

More information

EXgarde WEB. User Guide. UM0082.GB Issue 1 04/06/2015. TDSi Unit 10 Concept Park Innovation Close Poole Dorset BH12 4QT, UK

EXgarde WEB. User Guide.  UM0082.GB Issue 1 04/06/2015. TDSi Unit 10 Concept Park Innovation Close Poole Dorset BH12 4QT, UK EXgarde WEB User Guide UM0082.GB Issue 1 04/06/2015 www.tdsi.co.uk TDSi Unit 10 Concept Park Innovation Close Poole Dorset BH12 4QT, UK Tel: +44 (0) 1202 723535 Fax: +44 (0) 1202 724975 Sales Enquiries:

More information

Crystal Enterprise. Overview. Contents. Web Server Overview - Internet Information System (IIS)

Crystal Enterprise. Overview. Contents. Web Server Overview - Internet Information System (IIS) Overview Contents This document provides an overview to web server technology particularly Microsoft s Internet Information Server (IIS) and its relationship with. Although this article has been written

More information

emudhra DOWNLOAD INSTRUCTION MANUAL HARD TOKEN VERSION 3 Date of Publication: 10th November 2011

emudhra DOWNLOAD INSTRUCTION MANUAL HARD TOKEN VERSION 3 Date of Publication: 10th November 2011 emudhra DOWNLOAD INSTRUCTION MANUAL HARD TOKEN VERSION 3 () Date of Publication: 10th November 2011 emudhra Consumer Services Ltd 3rd Floor, Sai Arcade Outer Ring Road Devarabeesanahalli Bangalore 560103

More information

WA L KT H R O U G H 1

WA L KT H R O U G H 1 WA L KT H R O U G H 1 udig Install and Introduction 08 June 2008 TABLE OF CONTENTS 1Goals...3 2Installing and Running The udig Application...4 3Online Documentation and Tutorials...8 3.1Help Categories...9

More information

Ariba Network. T-Mobile Registration Guide

Ariba Network. T-Mobile Registration Guide Ariba Network T-Mobile Registration Guide Before you start Ariba Network displays by default in language of your browser (when supported) make sure, that it s in your preferred language. In both Internet

More information

XMediusFAX Sharp OSA Connector Administration Guide

XMediusFAX Sharp OSA Connector Administration Guide WWW.XMEDIUS.COM XMediusFAX Sharp OSA Connector 4.1.0 Administration Guide XMediusFAX Sharp OSA Connector Version Number 4.1.0.76 March 2016. Patents Protected by US Patents 4,994,926; 5,291,302; 5,459,584;

More information

XMediusFAX (Cloud) App 1.5

XMediusFAX (Cloud) App 1.5 WWW.XMEDIUS.COM XMediusFAX (Cloud) App 1.5 for Xerox ConnectKey enabled MFPs Installation Guide XMediusFAX (Cloud) App for Xerox ConnectKey-enabled MFPs Version Number 1.5.0.003 June 2017. Patents Protected

More information

Agile Platform 6.0 System Requirements

Agile Platform 6.0 System Requirements TECHNICAL NOTE Agile Platform 6.0 System Requirements The Agile Platform architecture has been designed with a strong focus on performance, scalability, and high-availability. This technical note describes

More information

A10 Thunder ADC with Oracle E-Business Suite 12.2 DEPLOYMENT GUIDE

A10 Thunder ADC with Oracle E-Business Suite 12.2 DEPLOYMENT GUIDE A10 Thunder ADC with Oracle E-Business Suite 12.2 DEPLOYMENT GUIDE Table of Contents 1. Introduction... 2 2 Deployment Prerequisites... 2 3 Oracle E-Business Topology... 3 4 Accessing the Thunder ADC Application

More information

FieldView. Management Suite

FieldView. Management Suite FieldView The FieldView Management Suite (FMS) system allows administrators to view the status of remote FieldView System endpoints, create and apply system configurations, and manage and apply remote

More information

EntraPass WebStation. Installation Manual DN

EntraPass WebStation. Installation Manual DN EntraPass WebStation Installation Manual EntraPass WebStation Installation Manual Table of Contents General Information...1 Copyright Info...1 Technical Support...1 Overview...2 Introduction... 2 Description...

More information

TTWeb Quick Start Guide

TTWeb Quick Start Guide Web to Host Connectivity TTWeb Quick Start Guide TTWeb is Turbosoft s web to host terminal emulation solution, providing unprecedented control over the deployment of host connectivity software combined

More information

RELEASE NOTES LABEL ARCHIVE May, Table of Contents. System Requirements

RELEASE NOTES LABEL ARCHIVE May, Table of Contents. System Requirements RELEASE NOTES LABEL ARCHIVE 2015.01 10 May, 2016 Table of Contents System Requirements New Features & Enhancements New Device Support Fixed Defects Known Limitations Compatibility with other TEKLYNX Software

More information

LABEL ARCHIVE Administrator s Guide

LABEL ARCHIVE Administrator s Guide LABEL ARCHIVE Administrator s Guide DOC-LAS2015_25/05/2015 The information in this manual is not binding and may be modified without prior notice. Supply of the software described in this manual is subject

More information

EA/Studio Installation Guide

EA/Studio Installation Guide EA/Studio 1.5.2 Installation Guide Copyright 1994-2008 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All rights reserved.

More information

User and Reference Manual

User and Reference Manual User and Reference Manual User & Reference Manual All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying,

More information

Set Up Rules Palette

Set Up Rules Palette Oracle Insurance Policy Administration Set Up Rules Palette Installation Instructions Step 3 Version 9.5.0.0 Documentation Part Number: E23638_01 June 2012 Copyright 2009, 2012 Oracle and/or its affiliates.

More information

PI Web Services 2012 SP1 Release Notes

PI Web Services 2012 SP1 Release Notes PI Web Services 2012 SP1 Release Notes 1.3.1.0 2013 OSIsoft, LLC. All rights reserved Table of Contents Overview... 1 Fixes and Enhancements... 1 Fixes... 1 Enhancements... 1 Known Issues... 1 Setup...

More information

Mobile On the Go (OTG) Server

Mobile On the Go (OTG) Server Mobile On the Go (OTG) Server Installation Guide Paramount Technologies, Inc. 1374 East West Maple Road Walled Lake, MI 48390-3765 Phone 248.960.0909 Fax 248.960.1919 www.paramountworkplace.com Copyright

More information

DOCUMENT HISTORY REV. NO. CHANGES DATE. 000 New Document 30 Mar Document Revision:

DOCUMENT HISTORY REV. NO. CHANGES DATE. 000 New Document 30 Mar Document Revision: DOCUMENT HISTORY DOCU-PROOF ENTERPRISE INSTALLATION GUIDE REV. NO. CHANGES DATE 000 New Document 30 Mar. 2010 001 Document Revision: 23 Jun. 2010 Added database support for MS SQL Server and ORACLE. 002

More information

6170 Shiloh Road Alpharetta, Georgia (770) FAX (770) Toll Free

6170 Shiloh Road Alpharetta, Georgia (770) FAX (770) Toll Free Instruction Manual Ethernet Option W8, W18 March 2012, Rev. E Data, drawings, and other material contained herein are proprietary to Cross Technologies, Inc., but may be reproduced or duplicated without

More information

BLUEPRINT TEAM REPOSITORY. For Requirements Center & Requirements Center Test Definition

BLUEPRINT TEAM REPOSITORY. For Requirements Center & Requirements Center Test Definition BLUEPRINT TEAM REPOSITORY Installation Guide for Windows For Requirements Center & Requirements Center Test Definition Table Of Contents Contents Table of Contents Getting Started... 3 About the Blueprint

More information

epages Installation Guide for Windows - Version 6 -

epages Installation Guide for Windows - Version 6 - epages Installation Guide for Windows - Version 6 - The information contained in this document is subject to change without notice at any time. This document and all of its parts are protected by copyright.

More information

Sage 200c Professional. System Requirements and Prerequisites

Sage 200c Professional. System Requirements and Prerequisites Sage 200c Professional System Requirements and Prerequisites Copyright statement Sage (UK) Limited, 2018. All rights reserved. If this documentation includes advice or information relating to any matter

More information

R&S TSMA Release Notes Firmware Version

R&S TSMA Release Notes Firmware Version R&S TSMA Release Notes Firmware Version 1.32.04.00 2018 Rohde & Schwarz GmbH & Co. KG Muehldorfstr. 15, 81671 Munich, Germany Phone: +49 89 41 29-0 Fax: +49 89 41 29 12-164 E-mail: mailto:info@rohde-schwarz.com

More information

R&S SGT100A RF Source Base Unit Release Notes FW Version

R&S SGT100A RF Source Base Unit Release Notes FW Version R&S SGT100A RF Source Base Unit Release Notes FW Version 3.50.124.71 2017 Rohde & Schwarz GmbH & Co. KG Muehldorfstr. 15, 81671 Munich, Germany Phone: +49 89 41 29-0 Fax: +49 89 41 29 12 164 E-mail: mailto:info@rohde-schwarz.com

More information

Setting File Creation Software for North America. Installation Instructions

Setting File Creation Software for North America. Installation Instructions Contents 1 Overview............................................................. 2 2 System Requirements.................................................. 2 3 Installing and Uninstalling..............................................

More information

Parallels Remote Application Server

Parallels Remote Application Server Parallels Remote Application Server Parallels Client for Mac User's Guide v16 Parallels International GmbH Vordergasse 59 8200 Schaffhausen Switzerland Tel: + 41 52 672 20 30 www.parallels.com Copyright

More information

UM0401 User manual. User manual for eight bit port expander STMPE801 demonstration board. Introduction

UM0401 User manual. User manual for eight bit port expander STMPE801 demonstration board. Introduction User manual User manual for eight bit port expander STMPE801 demonstration board Introduction This document explains the functioning of the demo board for the port expander Chip STMPE801 with a PC GUI

More information

IntelliTrack DMS (Data Management System) v8.1 Quick Start Guide Preliminary Copy (July 2011) Copyright 2011 IntelliTrack, Inc.

IntelliTrack DMS (Data Management System) v8.1 Quick Start Guide Preliminary Copy (July 2011) Copyright 2011 IntelliTrack, Inc. Quick Start Guide Reasonable measures have been taken to ensure that the information included in this guide is complete and accurate. However, IntelliTrack reserves the right to change any specifications

More information

TWS Caller v3.1 User Guide

TWS Caller v3.1 User Guide TWS Caller v3.1 User Guide 2008 Algoria. TWS (Telephony Web Services) and associated products, is a registered trademark Contacts and Support ALGORIA Address: Tel: Fax: E-mail: URL: 3, rue Verte 95100

More information

Getting Started with Windows Mobile Development Windows Mobile SDK C#

Getting Started with Windows Mobile Development Windows Mobile SDK C# Getting Started with Windows Mobile Development Windows Mobile SDK C# Contents Overview... 2 Target Audience... 2 System Prerequisites... 2 Installations... 5 Creating Your First Zebra Mobile Application...

More information

Advantech Studio Quick Start Manual

Advantech Studio Quick Start Manual Advantech Studio Quick Start Manual Advantech Studio Quick Start Manual Initial Setup The WebOIT offers an easy setup feature: It takes three easy steps for your initial setup before use. Take out the

More information

ER/Studio Business Architect

ER/Studio Business Architect Product Documentation ER/Studio Business Architect Installation Guide 2nd Edition Version 1.6.1 Published August 2010 2010 Embarcadero Technologies, Inc. Embarcadero, the Embarcadero Technologies logos,

More information

Traverse Intelligent Tracking by PCS. Installation Guide for Traverse.

Traverse Intelligent Tracking by PCS. Installation Guide for Traverse. Traverse Intelligent Tracking by PCS Installation Guide for Traverse. Tom Romeo 6/10/2011 The information in this documentation is not contractual in nature. It is subject to modification without notice.

More information

TEKLYNX LABEL ARCHIVE

TEKLYNX LABEL ARCHIVE TEKLYNX LABEL ARCHIVE U S E R G U I D E LABEL ARCHIVE User Guide DOC-LAS2012-QSM-US-2007013 The information in this manual is not binding and may be modified without prior notice. Supply of the software

More information

SAS Enterprise Case Management 2.2. Administrator s Guide

SAS Enterprise Case Management 2.2. Administrator s Guide SAS Enterprise Case Management 2.2 Administrator s Guide The correct bibliographic citation for this manual is as follows: SAS Institute, Inc. 2010. SAS Enterprise Case Management 2.2: Administrator's

More information

SQL 2012 Installation

SQL 2012 Installation This document will go through a basic SQL Server 2012 installation. For installation requirements, support and download information please visit the following Microsoft websites. Before you start, you

More information

RELEASE NOTES LABEL ARCHIVE December, Table of Contents. System Requirements

RELEASE NOTES LABEL ARCHIVE December, Table of Contents. System Requirements RELEASE NOTES LABEL ARCHIVE 2018 7 December, 2017 Table of Contents System Requirements New Features & Enhancements Fixed Defects Known Limitations Compatibility with other TEKLYNX Software System Requirements

More information

EntraPass WebStation Installation Manual

EntraPass WebStation Installation Manual EntraPass WebStation Installation Manual Table of Contents General Information...1 Copyright Info...1 Technical Support...1 Overview...2 Introduction... 2 Description... 2 Concurrent Connections... 2

More information

Sage 200 On Premise Pre-Release. System Requirements and Prerequisites

Sage 200 On Premise Pre-Release. System Requirements and Prerequisites Sage 200 On Premise Pre-Release System Requirements and Prerequisites v2013 Copyright statement Sage (UK) Limited, 2013. All rights reserved. If this documentation includes advice or information relating

More information

Upgrade Guide. NovaBACKUP xsp NovaStor. All Rights Reserved.

Upgrade Guide. NovaBACKUP xsp NovaStor. All Rights Reserved. Upgrade Guide NovaBACKUP xsp 17 2015 NovaStor. All Rights Reserved. NovaBACKUP Upgrade Information... 3 Intended Audience... 3 Upgrade Paths... 3 License Keys... 3 NovaBACKUP xsp Modules... 3 Preparing

More information

L N

L N R 1 2 3 4 5 6 { 3/8 in. (10 mm) 1 2 A B C 1 2 A B C 1 2 3 4 1 2 A B C 1 2 A B C 1 2 3 4 1 2 3 4 1 2 A B C 1 2 3 4 1 2 3 4 1 2 3 4 5 6 L N 1 2 3 4 5 6 L N 1 2 3 4 5 6 L N 1 2 3 4 5 6 L N 1 2 3 4 1 2 3 4

More information

SysAid Technical Presentation. Phone (Toll-Free US): Phone: +972 (3)

SysAid Technical Presentation.  Phone (Toll-Free US): Phone: +972 (3) SysAid Technical Presentation www.sysaid.com sales@sysaid.com Phone (Toll-Free US): 1-800-686-7047 Phone: +972 (3) 533-3675 SysAid Overview A Global ITSM Solution Provider Technology Built for You Customer-Driven

More information

RMS Monitoring Software System Installation

RMS Monitoring Software System Installation System Installation 2017 ROTRONIC AG Bassersdorf Switzerland 2017 ROTRONIC AG Bassersdorf Switzerland Page 2 of 40 Contents Contents... 3 1 Overview... 4 1.1 Minimum System Requirements... 4 2 Update to

More information

Workstation Configuration

Workstation Configuration Workstation Configuration December 15, 2017 - Version 9.3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

How to Use Google Cloud Print

How to Use Google Cloud Print 1 The machine is compatible with Google Cloud Print (Google Cloud Print is a service provided by Google Inc.). By using Google Cloud Print, you can print from anywhere with applications or services supporting

More information

Dialling Access to the PGi Virtual Meeting Room Service (All Methods)

Dialling Access to the PGi Virtual Meeting Room Service (All Methods) Dialling Access to the PGi Virtual Meeting Room Service (All Methods) There are several different user types that need to be considered when accessing a meeting hosted in a PGi Virtual Meeting Room. Definitions

More information

XMediusFAX (Cloud) App 1.5

XMediusFAX (Cloud) App 1.5 WWW.XMEDIUS.COM XMediusFAX (Cloud) App 1.5 for Xerox ConnectKey enabled MFPs Installation Guide for Xerox Resellers XMediusFAX (Cloud) App for Xerox ConnectKey-enabled MFPs Version Number 1.5.0.003 June

More information

Sage 200c Professional. System Requirements and Prerequisites

Sage 200c Professional. System Requirements and Prerequisites Sage 200c Professional System Requirements and Prerequisites Copyright statement Sage (UK) Limited, 2017. All rights reserved. If this documentation includes advice or information relating to any matter

More information

Sage 200c Professional. System Requirements and Prerequisites

Sage 200c Professional. System Requirements and Prerequisites Sage 200c Professional System Requirements and Prerequisites Copyright statement Sage (UK) Limited, 2017. All rights reserved. If this documentation includes advice or information relating to any matter

More information

Workstation Configuration

Workstation Configuration Workstation Configuration December 12, 2017 - Version 9.4 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

Database connection 1

Database connection 1 Database connection 1 Table of Contents 1 General Information... 3 2 Installing XAMPP... 4 3 Configuring the eibport database connection... 5 3.1 Creating a new database connection...6 3.2 Creation of

More information

TTerm Connect Installation Guide

TTerm Connect Installation Guide Host Connectivity. Any Host, Any Device. TTerm Connect Installation Guide What is TTerm Connect? TTerm Connect is Turbosoft s web based terminal emulator. Built on common web technologies such as HTML5,

More information

Technical Note. Programming the SST-PB3-VME-x for a Master or Slave in a VME Controller. Version: 1.1 Document #:

Technical Note. Programming the SST-PB3-VME-x for a Master or Slave in a VME Controller. Version: 1.1 Document #: Technical Programming the SST-PB3-VME-x for a Master or Slave in a VME Controller Version: 1.1 Document #: 716-0014 Version: 1.1 Date: June 4, 2010 This document applies to the SST-PB3-VME-x interface

More information

Clustering VISUAL Message Center with Microsoft Cluster Services VMC-GEN

Clustering VISUAL Message Center with Microsoft Cluster Services VMC-GEN Clustering VISUAL Message Center with Microsoft Cluster Services VMC-GEN Clustering VISUAL Message Center with Microsoft Cluster Services The software described in this book is furnished under a license

More information

QuickLook. Getting started with. Remote Access Robots and IMMs with Android and ios Phones. WiBa QuickLook Page 1

QuickLook. Getting started with. Remote Access Robots and IMMs with Android and ios Phones. WiBa QuickLook Page 1 WiBa QuickLook Page 1 Getting started with QuickLook Remote Access Robots and IMMs with Android and ios Phones WiBa QuickLook Page 2 1 Contents 1 CONTENTS... 2 2 INTRODUCTION... 3 3 PREREQUISITES... 3

More information

Parallels Remote Application Server 15 Beta Beta Guide

Parallels Remote Application Server 15 Beta Beta Guide Parallels Remote Application Server 15 Beta Beta Guide Version 1 Copyright 1999 2015 Parallels IP Holdings GmbH and its affiliates. All rights reserved. All other marks and names mentioned herein may be

More information

Installation and First Steps laserdesk Version 1.0

Installation and First Steps laserdesk Version 1.0 Installation and First Steps April 23, 2013 SCANLAB AG Siemensstr. 2a 82178 Puchheim Germany Tel. +49 (89) 800 746-0 Fax: +49 (89) 800 746-199 support@laserdesk.info SCANLAB AG 2013 ( - February 20, 2013)

More information

AVT Vimba. AVT Vimba User Guide for Linux Jun-25 V1.2. Allied Vision Technologies GmbH Taschenweg 2a D Stadtroda / Germany

AVT Vimba. AVT Vimba User Guide for Linux Jun-25 V1.2. Allied Vision Technologies GmbH Taschenweg 2a D Stadtroda / Germany AVT Vimba AVT Vimba User Guide for Linux V1.2 2013-Jun-25 Allied Vision Technologies GmbH Taschenweg 2a D-07646 Stadtroda / Germany Contents Contents 1 Contacting Allied Vision Technologies 4 2 Introduction

More information

R&S Spectrum Rider FPH Release Notes Firmware Version V1.40

R&S Spectrum Rider FPH Release Notes Firmware Version V1.40 R&S Spectrum Rider FPH Release Notes Firmware Version V1.40 2017 Rohde & Schwarz GmbH & Co. KG Muehldorfstr. 15, 81671 Munich, Germany Phone: +49 89 41 29-0 Fax: +49 89 41 29 12-164 E-mail: mailto:info@rohde-schwarz.com

More information

Sage 200 Extra System Requirements and

Sage 200 Extra System Requirements and Sage 200 Extra System Requirements and 2017 Prerequisites Copyright statement Sage (UK) Limited and Sage Hibernia Limited, 2017. All rights reserved. If this documentation includes advice or information

More information

Kony MobileFabric. Sync Windows Installation - Manual - WebSphere. On-Premises. Release 7.2. Document Relevance and Accuracy

Kony MobileFabric. Sync Windows Installation - Manual - WebSphere. On-Premises. Release 7.2. Document Relevance and Accuracy Kony MobileFabric Sync Windows Installation - Manual - WebSphere On-Premises Release 7.2 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and

More information

Installation and Startup Guide

Installation and Startup Guide Installation and Startup Guide Copyright Atos IT Solutions and Services GmbH 2016 Microsoft, MS, MS-DOS and Windows are trademarks of Microsoft Corporation. The reproduction, transmission, translation

More information

Building Custom Webpages for GainSpan Modules. Application Note AN069

Building Custom Webpages for GainSpan Modules. Application Note AN069 Building Custom Webpages for GainSpan Modules Application Note AN069 Supports modules GS1011M and GS1500M Releases 2.4.x, 2.5.x, 3.4.x, and 3.5.x Publication No. GS-AN069 Version: 1.0 Date: December 11,

More information

VMware vfabric Data Director Installation Guide

VMware vfabric Data Director Installation Guide VMware vfabric Data Director Installation Guide vfabric Data Director 1.0.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

leveraging your Microsoft Calendar Browser for SharePoint Administrator Manual

leveraging your Microsoft Calendar Browser for SharePoint Administrator Manual CONTENT Calendar Browser for SharePoint Administrator manual 1 INTRODUCTION... 3 2 REQUIREMENTS... 3 3 CALENDAR BROWSER FEATURES... 4 3.1 BOOK... 4 3.1.1 Order Supplies... 4 3.2 PROJECTS... 5 3.3 DESCRIPTIONS...

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

Load Balancing Censornet USS Gateway. Deployment Guide v Copyright Loadbalancer.org

Load Balancing Censornet USS Gateway. Deployment Guide v Copyright Loadbalancer.org Load Balancing Censornet USS Gateway Deployment Guide v1.0.0 Copyright Loadbalancer.org Table of Contents 1. About this Guide...3 2. Loadbalancer.org Appliances Supported...3 3. Loadbalancer.org Software

More information

Workstation Configuration Guide

Workstation Configuration Guide Workstation Configuration Guide August 13, 2018 Version 9.6.134.78 For the most recent version of this document, visit our documentation website. Table of Contents 1 Workstation configuration 4 1.1 Considerations

More information

Release Date April 9, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA

Release Date April 9, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA Adeptia Suite 5.0 SP2 Installation Guide Release Date April 9, 2010 Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA Copyright Copyright 2000-2009 Adeptia, Inc. All rights reserved. Trademarks

More information

Rapid SQL 7.6 Installation Guide

Rapid SQL 7.6 Installation Guide Rapid SQL 7.6 Installation Guide Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All rights reserved.

More information

R&S RTA4000 Digital Oscilloscope Release Notes Firmware Version

R&S RTA4000 Digital Oscilloscope Release Notes Firmware Version Digital Oscilloscope Release Notes Firmware Version 01.100 These Release Notes describe the following models and options of the R&S Digital Oscilloscope: R&S RTA4004, Digital Oscilloscope order no. 1335.7700K04

More information

KYOCERA Net Admin Installation Guide Supplement

KYOCERA Net Admin Installation Guide Supplement KYOCERA Net Admin Installation Guide Supplement 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

More information

AMI Enterprise Intelligence Release Notes

AMI Enterprise Intelligence Release Notes AMI Enterprise Intelligence Release Notes RN-AMI-70-EN V1.0 March 2014 S Software for Corporate Intelligence Go Albert SA 46, Avenue Daumesnil - 75012 Paris France - http://www.amisw.com/ Phone +33 1 42

More information

IFS TOUCH APPS SERVER INSTALLATION GUIDE

IFS TOUCH APPS SERVER INSTALLATION GUIDE IFS TOUCH APPS SERVER INSTALLATION GUIDE ABSTRACT IFS Touch Apps Server is an On Premise version of the IFS Touch Apps Cloud. The On Premise version doesn t need a separate installation of the IFS Cloud

More information

Solution Integration Guide for Multimedia Communication Server 5100/WLAN/Blackberry Enterprise Server

Solution Integration Guide for Multimedia Communication Server 5100/WLAN/Blackberry Enterprise Server Solution Integration Guide for Multimedia Communication Server 5100/WLAN/Blackberry Enterprise Server NN49000-302 Document status: Standard Document version: 0101 Document date: 24 May 2007 All Rights

More information

Workstation Configuration

Workstation Configuration Workstation Configuration September 22, 2015 - Version 9 & 9.1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

Metasploit. Installation Guide Release 4.4

Metasploit. Installation Guide Release 4.4 Metasploit Installation Guide Release 4.4 TABLE OF CONTENTS About this Guide Target Audience...1 Organization...1 Document Conventions...1 Support...2 Support for Metasploit Pro and Metasploit Express...2

More information

NRS Registration for Club Contacts and Team Contacts:

NRS Registration for Club Contacts and Team Contacts: How to Register: NRS Registration for Club Contacts and Team Contacts: 1. Creating Clubs and Teams 2. Adding Coaches and Players to Teams 3. Removing Players from a Team Version 2016.1 September 2016 This

More information

Amadeus Selling Platform Connect

Amadeus Selling Platform Connect Amadeus Selling Platform Connect Technical Requirements Index Page 2 of 13 _ Amadeus Selling Platform Connect Technical Requirements... 4 Internet Browser... 4 Transport Layer Security 1.2 (TLS)... 4 Browser

More information

Materials Control. Purchase Orders Internal Attachments. Product Version: Attachments Joerg Trommeschlaeger.

Materials Control. Purchase Orders Internal Attachments. Product Version: Attachments Joerg Trommeschlaeger. MICROS Purchase Orders Internal Product Version: 8.7.20.36.1421 : : : Date: 19.09.2012 Version No. of Document: 1.1 Copyright 2015, Oracle and/or its affiliates. All rights reserved. This software and

More information

BioStar INSTALLATION GUIDE. Version 1.00 English

BioStar INSTALLATION GUIDE. Version 1.00 English BioStar 2.6.0 INSTALLATION GUIDE Version 1.00 English Contents Getting Started... 3 System Requirements... 3 BioStar 2 Video Extension... 3 BioStar 2 API Server... 3 Installing BioStar 2... 4 Login...

More information

UPDATE GUIDE V4.5 TO V4.6

UPDATE GUIDE V4.5 TO V4.6 UPDATE GUIDE V4.5 TO V4.6 Perspective by PPM Version 4.6 Printed June 2015 Copyright 2015 PPM 2000 Inc. and its licensors. All rights reserved. PPM 2000, the PPM 2000 logo, Perspective by PPM 2000, the

More information