Eurolight Automatic Order Submission Tool Setup Guide

Size: px
Start display at page:

Download "Eurolight Automatic Order Submission Tool Setup Guide"

Transcription

1 Eurolight Automatic Order Submission Tool Setup Guide Version 700 July 2014

2 Eurolight Automatic Order Submission Tool Setup Guide 2014 All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording, taping, or information storage and retrieval systems - without the written permission of the publisher. Products that are referred to in this document may be either trademarks and/or registered trademarks of the respective owners. The publisher and the author make no claim to these trademarks. While every precaution has been taken in the preparation of this document, the publisher and the author assume no responsibility for errors or omissions, or for damages resulting from the use of information contained in this document or from the use of programs and source code that may accompany it. In no event shall the publisher and the author be liable for any loss of profit or any other commercial damage caused or alleged to have been caused directly or indirectly by this document. Printed: July 2014 in Amsterdam Publisher Soops b.v. sales@soops.nl I

3 Eurolight Automatic Order Submission Tool Setup Guide Contents Table of Contents Chapter I About This Guide 4 Chapter II 6 1 Installation... Steps 7 2 Directory... creation 8 3 EurolightXMLOrderImport.ini ConnectionSettings.xml Post... Install Command prompt registering 13 Register ALL... XML Order Im port Services 14 Register Single... XML Order Im port Service 15 Register Multiple... XML Order Im port Services 16 Unregister... XML Order Im port Service 17 Uninstall Chapter III Appendix A, example configurations

4

5 Eurolight Eurolight Automatic Automatic Order Order Submission Submission Tool Tool Setup Setup Guide Guide Chapter 1 About This Guide

6 About This Guide Chapter 1 About This Guide This guide describes the steps required to set up the Eurolight Automatic Order Submission Tool to work within the Eurolight environment. Throughout this guide, the names XML Order Import and Automatic Order Submission Tool, are used. These two indicate the same tool, but they are named differently in various contexts. Please regard these as one and the same. In certain places the phrase 'Scripting' is used as well; this name will be phased out in future deployments, but is currently still in use. This guide is intended for experienced Eurolight users that are familiar with, and have authority to do the administrative tasks required for this setup. Before starting with the setup procedure of the Eurolight XML Order Import service, please make sure you have full administrative permissions for installation and running the Windows Command tools. During the various steps links are provided to detailed descriptions helping set up important values in external files and applications. Values displayed in Bold should be edited towards your environment where indicated. Follow the steps in sequence. At the end, during the first full run, examining the results in the loggingeurolightxmlorderimportservice[...].log file can be helpful to indicate oversights or errors. 4

7 Eurolight Eurolight Automatic Automatic Order Order Submission Submission Tool Tool Setup Setup Guide Guide Chapter 2

8 Chapter 2 Run the installer by doubleclicking the EurolightXMLOrderImportService.msi file. Choose an install Directory. Please note that full administrator permissions will later be required for this directory. Edit the ConnectionSettings.xml and EurolightXMLOrderImport.ini files that are just installed manually to facilitate your local requirements. 6

9 2.1 Installation Steps Follow the following steps in this sequence for the initial setup of a Eurolight XML Order Import Service: Request a special Eurolight User Account for Automatic Order Submission from the exchange to be used as an XML Order Import Account. Run the Eurolight XML Order Import Service (XXX).msi installer Create, or ensure access to, the polling directories. See here. Open the installation directory. (Default: C:\Program Files (x86)\eurolight XML Order Import Service) Edit the EurolightXMLOrderImport.ini and ConnectionSettings.xml files Open a Windows Services Console (services.msc), and find the EurolightXMLOrderImportService[_ALL_] service Optional: Open a Windows Command Prompt in order to register your service(s) following the steps here. Optional: In the Windows Services Console, refresh (F5) and start your service(s). Ensure they are indeed started. (This may take a few seconds). Refresh (F5) as required. Verify that the service is operating correctly by looking in the loggingeurolightxmlorderimportservice[<servicename>].log file 7

10 2.2 Directory creation Manually create or ensure access to the following Directories for each Service you will register : default path: C:\ProgramData\Eurolight\XMLorderimport\NL\<ServiceName> subdirectories: TradingAction files are polled from the root directory results Needed for result files received from exchange. Directory must be created manually and needs not be in this location invalid Created automatically after registering service, needed for polling operation. System required directory. pending Created automatically after registering service, needed for polling operation. System required directory. Must never include files besides these generated by the Eurolight Automatic Order Submission Tool. valid Created automatically after registering service, needed for polling operation. System required directory. This directory tree is referred to in the ConnectionSettings.xml file under the <ServiceName> tag and will be used by that service to manage the actual XML Order Import files. 8

11 2.3 EurolightXMLOrderImport.ini Edit the EurolightXMLOrderImport.ini file. The Bold arguments in the supplied EurolightXMLOrderImport.ini file must be modified to reflect your local situation. The actual settings will be provided by the Exchange. [Scripting] UserLoginSettingsFile=ConnectionSettings.xml [Server] SystemName=Eurolight [Logging] LoggingEnabled=true LoggingFilename=logging.log LoggingLevel=info Maximum Filesize= SyslogHost=localhost SyslogLoggingEnabled=false SyslogLoggingLevel=notice SyslogPort=514 TranscriptLoggingEnabled=false TranscriptLoggingLevel=notice Explanation of settings: The settings defined within the.ini file only correspond to the EurolightXMLOrderImportService.exe within the same installation folder. -UserLoginSettingsFile: UserLoginSettingsFile=<ConnectionSettings.xml> Recommended not to change the default setting. Specifies the name of the.xml file within the same directory that will be used to connect and login to Eurolight at the exchange. -LoggingFilename: loggingfilename=<directorypath+ Filename> Specifies the directory to which Eurolight XML Order Import logs will be saved; it s recommend that this directory is not on the same hard disk as the application is. Note that the name of the logging file will automatically include the name of the service it refers to. Example: logging-eurolightxmlorderimportservice[_all_].log -Maximum Filesize: Maximum Filesize=<filesize in bytes> After filling the allotted space, the first entries will be removed. This creates a rolling logfile. 9

12 -All other settings: Do not modify unless specifically instructed by an exchange support engineer. 10

13 2.4 ConnectionSettings.xml Edit the ConnectionSettings.xml file. The Bold arguments in the supplied ConnectionSettings.xml file must be modified to reflect your local situation. Please note that the ConnectionSettings.xml file is referred to in the EurolightXMLOrderImport.ini file. Important: It is technically not possible to include settings with identical LoginNames to different exchangeservers within the same ConnectionSettings.xml file. In the example below two service settings are defined, <?xml version="1.0" encoding="utf-8"?> <!-- Sample settings file contents --> <SettingsList xmlns="urn:eurolight:scripting:clientsettings"> <Setting> <LoginName>PWRNLAAXML</LoginName> <Password>1234****</Password> <ServerPort>443</ServerPort> <ServerAddress>IP or DNS address of Eurolight Exchange Server</ ServerAddress> <UseSecureConnection>true</UseSecureConnection> <ScriptLocalChannel> <LoadDirectory>C:\ProgramData\Eurolight\XMLNL</LoadDirectory> <ResultDirectory>C:\ProgramData\Eurolight\XMLNL\results</ ResultDirectory> <Delay>5</Delay> </ScriptLocalChannel> <ServiceName>Service1</ServiceName> </Setting> <Setting> <LoginName>PWRNLABXML</LoginName> <Password>12345***</Password> <ServerPort>443</ServerPort> <ServerAddress>IP or DNS address of Eurolight Exchange Server</ ServerAddress> <UseSecureConnection>true</UseSecureConnection> <ScriptLocalChannel> <LoadDirectory>C:\ProgramData\Eurolight\XMLBE</LoadDirectory> <ResultDirectory>C:\ProgramData\Eurolight\XMLBE\results</ ResultDirectory> <Delay>5</Delay> </ScriptLocalChannel> <ServiceName>Service2</ServiceName> </Setting> 11

14 </SettingsList> LoginName User ID used to log in at the exchange server. This Used ID will also be the submitting user for the imported orders. Password Password assigned by exchange for the UserID above ServerPort Server port of the exchange server ServerAddress Server address (IP Address or DNS Name) of the exchange server UseSecureConn Must be true or false. Indicates use of secure connection to Mux server ection LoadDirectory Local: Directory used to poll the XMLOrderImport file from, to be submitted to the exchange ResultDirectory Local: Directory used to write the received report.xml files to. Can be set to a directory outside the Service directory structure ServiceName Local: Name of the registered Service using the settings above. Must be unique on the system and must consist only of AlphaNumeric characters. 12

15 2.5 Post Install Command prompt registering After the initial installation a Windows Service named EurolightXMLOrderImportService[_ALL_] is available. This service processes ALL connections to Eurolight as configured in its ConnectionSettings.xml file. This default setting can be modified to accommodate either Multiple services or Single Service setups. Access the Windows Services Management Console (services.msc) as Windows Administrator. Select the EurolightXMLOrderImportService[_ALL_] You have the option to install different service configurations, depending on your requirements. The default (ALL) setup can be used by organizations that do not require each UserID to have a separate connection. The (Single) setup can be used by organizations that have connections with different UserIDs, or the same UserIDs to different Eurolight servers. The (Multiple) setup can be used by organizations that have connections with different UserIDs to a single Eurolight server, or different UserIDs to different Eurolight servers. --register This will register the EurolightXMLOrderImportService[_ALL_] service. --register Service1 This will register the EurolightXMLOrderImportService[Service1] service. --register Service1 Service2... This will register the EurolightXMLOrderImportService[Service1,Service2,...] service. Important: A service must never be registered as _ALL_ without brackets or anything else, as this will cause Windows to buckle and fall apart. --register _ALL_ This will cause serious issues. 13

16 2.5.1 Register ALL XML Order Import Services It is possible to have one Eurolight XML Order Import Service running all connections. This setup is the default installed setup. In this setup a connection failure on any single connection will have impact on all UserIDs configured in this connection, even if these connections are to different Eurolight servers. Important: It is technically not possible to include settings with identical UserIDs to different Eurolight servers within the same service. To manually setup a EurolightXMLOrderImportService[_ALL_] follow these steps: Open a Command prompt in administrator mode Go to the installation directory (default "C:\Program Files (x86)\eurolight XML Order Import Service") Type: EurolightXMLOrderImport.exe --help to see possible options Type :EurolightXMLOrderImport.exe --register (To create a single Eurolight service that handles ALL configured connections as set in its ConnectionSettings.xml) In the Windows Services Management Console (services.msc) the installed service can be found under the name EurolightXMLOrderImportService[_ALL_]. Fresh services are by default set to start manually, but can be set to automatic if desired. 14

17 2.5.2 Register Single XML Order Import Service It is possible to have an Eurolight XML Order Import Service running a single connection. You can register multiple services each running a single, different connection. Use this setup if you need to make connections for the same UserID to different Eurolight servers, and/or require each connection to run separate from other connections. To manually setup a EurolightXMLOrderImportService[ServiceName] follow these steps: Open a Command prompt in administrator mode Go to the installation directory (default "C:\Program Files (x86)\eurolight XML Order Import Service") Type: EurolightXMLOrderImport.exe --help to see possible options Type :EurolightXMLOrderImport.exe --register ServiceName (To create a single Eurolight service that handles 1 connection, as set in its ConnectionSettings.xml) Repeat step 4 as required for each service you want to register. In the Windows Services Management Console (services.msc) the registered services can be found under the name EurolightXMLOrderImportService[ServiceName]. Fresh services are by default set to start manually, but can be set to automatic if desired. 15

18 2.5.3 Register Multiple XML Order Import Services It is possible to have an Eurolight XML Order Import Service running multiple connections. This setup can be used to combine several connections within the same service. Important: It is technically not possible to include settings with identical UserIDs to different Eurolight servers within the same service. To manually setup a EurolightXMLOrderImportService[<ServiceName1>,<ServiceName2>] follow these steps: Open a Command prompt in administrator mode Go to the installation directory (default C:\Program Files (x86)\eurolight XML Order Import Service) Type: EurolightXMLOrderImportService.exe --help to see possible options Type for 2 connections: EurolightXMLOrderImportService.exe --register Service1 Service2 (To create a single Eurolight service that handles 2 different connections) Note that more than 2 connections can be created this way Each Service defined here must be configured in the ConnectionSettings.xml file under the <ServiceName> tag In the Windows Services Management Console (services.msc) the installed service can be found under the name EurolightXMLOrderImportService[Service1,Service2]. Fresh services are by default set to start manually, but can be set to automatic if desired. 16

19 2.5.4 Unregister XML Order Import Service To unregister any EurolightXMLOrderImportService, use any one of the options below: --unregister This will unregister the Service EurolightScriptingService[_ALL_] --unregister Service1 This will unregister Service EurolightScriptingService[Service1] --unregister Service1 Service2... This will unregister Service EurolightScriptingService[Service1,Service2,...] --unregisterallservices This will unregister all known Scripting Services. Note that unregistering does not imply uninstallation Uninstall To uninstall Eurolight XML Order Import, run the Remove Eurolight XML Order Import Service tool in the Windows Start Menu. Note that uninstalling Eurolight XML Order Import will also remove any registered Eurolight XML Order Import Services and their respective ConnectionSettings.xml and EurolightXMLOrderImport.ini files. You might want to manually make a backup of your ConnectionSettings.xml and EurolightXMLOrderImport.ini files for later use. If during the uninstall procedure any running EurolightXMLOrderImportServices are detected, you will be prompted for further action first. 17

20

21 Eurolight Eurolight Automatic Automatic Order Order Submission Submission Tool Tool Setup Setup Guide Guide Chapter 3 Appendix A, example configurations

22 Appendix A, example configurations Chapter 3 Appendix A, example configurations Scenario 1 Using the default setup; EurolightXMLOrderImportService[_ALL_] 3 Connections are configured to 2 Eurolight Servers with 3 different UserIDs. 20

23 Appendix A, example configurations Scenario 2 3 Connections are configured to 2 Eurolight Servers with 2 different UserIDs. User1 exists on Server1 and on Server2. In this case the default setup will not work. Due to technical limitations a Windows Service can only hold one connection for each UserID. Therefore we have to split the Windows Service. The following Scenario shows a combination of a Single and a Multi service. 21

The Digipass DP550 Version 5.0 October 2009

The Digipass DP550 Version 5.0 October 2009 Version 5.0 October 2009 5.0 2009 All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording, taping,

More information

EPEX Spot Client Installation

EPEX Spot Client Installation Version All Versions September 2017 All Versions All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording,

More information

GupShup Enterprise Mobile Access Guide

GupShup Enterprise Mobile Access Guide Guide 2012 Webaroo Technology India Pvt. Ltd. All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording,

More information

Altova CbC Reporting Solution. Quick Start

Altova CbC Reporting Solution. Quick Start All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording, taping, or information storage and retrieval

More information

Drivers & Utilities User Guide. by Alto Imaging Technologies, Inc.

Drivers & Utilities User Guide. by Alto Imaging Technologies, Inc. Drivers & Utilities User Guide by Alto Imaging Technologies, Inc. Drivers & Utilities User Guide All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic,

More information

Cibecs Express Upgrade Guide to V5.0

Cibecs Express Upgrade Guide to V5.0 P R O T E C T I N G U S E R D A T A Cibecs Express Upgrade Guide to V5.0 The purpose of this document is to outline a quick and easy upgrade to Cibecs Version 5.0 For commercial client implementations

More information

Altova CbC Reporting Solution. Quick Start

Altova CbC Reporting Solution. Quick Start All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording, taping, or information storage and retrieval

More information

Anonymous Proxy Detection

Anonymous Proxy Detection Exinda How To Guide: Anonymous Proxy Detection Exinda ExOS Version 6.4 2 Copyright All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical,

More information

Altova CbC Reporting Solution. Installation Guide

Altova CbC Reporting Solution. Installation Guide Installation Guide Installation Guide All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording, taping,

More information

Ebook Niche Explorer User Manual

Ebook Niche Explorer User Manual Ebook Niche Explorer User Manual 2012 James J. Jones, LLC. Need help or support, or just not sure about a feature? Submit a Support Ticket at: http://www.tnrsupport.com/support/index.php?/tickets/submit

More information

The Log packing plugin PRINTED MANUAL

The Log packing plugin PRINTED MANUAL The Log packing plugin PRINTED MANUAL Log packing plugin 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

The DNP3 plugin PRINTED MANUAL

The DNP3 plugin PRINTED MANUAL The DNP3 plugin PRINTED MANUAL DNP3 plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording,

More information

PDI CRM Setup PDI Spirit

PDI CRM Setup PDI Spirit PDI CRM Setup PDI CRM Setup All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording, taping, or

More information

The Send keystrokes plugin PRINTED MANUAL

The Send keystrokes plugin PRINTED MANUAL The Send keystrokes plugin PRINTED MANUAL Send keystrokes plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including

More information

The Aggregator plugin PRINTED MANUAL

The Aggregator plugin PRINTED MANUAL The Aggregator plugin PRINTED MANUAL Aggregator plugin 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

The Data timeout plugin PRINTED MANUAL

The Data timeout plugin PRINTED MANUAL The Data timeout plugin PRINTED MANUAL Data timeout plugin 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

Page Fault Monitor. by Software Verify

Page Fault Monitor. by Software Verify Page Fault Monitor by Software Verify Copyright Software Verify Limited (c) 2015-2017 MAP File Browser MAP file contents inspector by Welcome to the MAP File Browser software tool. MAP File Browser is

More information

RAI TRADE TAPELESS RECEPTION

RAI TRADE TAPELESS RECEPTION Tapeless Reception TAPELESS RECEPTION We give you the opportunity to send us commercials by means of a new free service which users can use depending on their needs. The service is operating in an experimental

More information

The "Event generator" plugin PRINTED MANUAL

The Event generator plugin PRINTED MANUAL The "Event generator" plugin PRINTED MANUAL "Event generator" plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including

More information

The TCP redirecting plugin PRINTED MANUAL

The TCP redirecting plugin PRINTED MANUAL The TCP redirecting plugin PRINTED MANUAL TCP redirecting plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including

More information

ADMINISTRATOR'S GUIDE TO SECURITY: 1099 PRO PROFESSIONAL, ENTERPRISE & CORPORATE SUITE Pro, Inc

ADMINISTRATOR'S GUIDE TO SECURITY: 1099 PRO PROFESSIONAL, ENTERPRISE & CORPORATE SUITE Pro, Inc ADMINISTRATOR'S GUIDE TO SECURITY: 1099 PRO PROFESSIONAL, ENTERPRISE & CORPORATE SUITE 1099 Pro, Inc 1099 Pro Administrator's Guide to Security by 1099 Pro 1099 Pro Security & Administration Disclaimer

More information

The LLRP RFID Protocol plugin PRINTED MANUAL

The LLRP RFID Protocol plugin PRINTED MANUAL The LLRP RFID Protocol plugin PRINTED MANUAL LLRP RFID Protocol plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including

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

Overview of E-Subro Hub Reports

Overview of E-Subro Hub Reports December 13, 2018 Overview of E-Subro Hub Reports 2018 Arbitration Forums, Inc. All rights reserved. No part of this work may be reproduced in any form or by any means graphic, electronic, or mechanical,

More information

4TimeWeb Short Manual NEXT! s.c. S.Piela, B.Dryja

4TimeWeb Short Manual NEXT! s.c. S.Piela, B.Dryja 4TimeWeb Short Manual 2013 NEXT! s.c. S.Piela, B.Dryja 4TimeWeb Short Manual 2013 NEXT! s.c. S.Piela, B.Dryja All rights reserved. No parts of this work may be reproduced in any form or by any means -

More information

The Scheduler & Hotkeys plugin PRINTED MANUAL

The Scheduler & Hotkeys plugin PRINTED MANUAL The Scheduler & Hotkeys plugin PRINTED MANUAL Scheduler & Hotkeys plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including

More information

Universal Chart Manager Getty Drive Suite N Sherwood Arkansas, (501)

Universal Chart Manager Getty Drive Suite N Sherwood Arkansas, (501) Universal Chart Manager 6100 Getty Drive Suite N Sherwood Arkansas, 72117 (501) 834-9540 Universal Chart Manager 6100 Getty Drive Suite N Sherwood Arkansas, 72117 (501) 834-9540 Installing Universal Press

More information

The MQTT plugin PRINTED MANUAL

The MQTT plugin PRINTED MANUAL The MQTT plugin PRINTED MANUAL MQTT plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording,

More information

Performance Monitors Setup Guide

Performance Monitors Setup Guide Performance Monitors Setup Guide Version 1.0 2017 EQ-PERF-MON-20170530 Equitrac Performance Monitors Setup Guide Document Revision History Revision Date May 30, 2017 Revision List Initial Release 2017

More information

Avoka Transact Reference Architectures. Version 4.0

Avoka Transact Reference Architectures. Version 4.0 Avoka Transact Reference Architectures Version 4.0 COPYRIGHT NOTICE Copyright 2014 - Avoka Technologies Pty Ltd. All Rights Reserved. No parts of this work may be reproduced in any form or by any means

More information

The Alarms Professional plug-in PRINTED MANUAL

The Alarms Professional plug-in PRINTED MANUAL The Alarms Professional plug-in PRINTED MANUAL Alarms Professional plug-in All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical,

More information

IBM Clinical Development

IBM Clinical Development IBM Clinical Development New User Help Effective: 26 January 2018 Copyright IBM corporation. 2017. IBM Clinical Development 2 TOPICS > > > Click the green icon to jump to the section or use the PDF page

More information

Vision Express Vision VE810 Installation Guide Vision Engraving & Routing Systems

Vision Express Vision VE810 Installation Guide Vision Engraving & Routing Systems Vision Express Vision VE810 Installation Guide Vision Express - Vision VE810 Installation Guide All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic,

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

EFS Quick Install Guide

EFS Quick Install Guide All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording, taping, or information storage and retrieval

More information

SmartProtocol PC Software INSTRUCTION MANUAL

SmartProtocol PC Software INSTRUCTION MANUAL SmartProtocol PC Software INSTRUCTION MANUAL is a registered trademark of OPTOKON, a.s. Other names and trademarks referred to herein may be the trademarks of their respective owners. OPTOKON, a.s., Cerveny

More information

e-builder User Guide Views

e-builder User Guide Views Views 2016 e-builder, Inc. e-builder 8.12 Help by e-builder, Inc. 2016 e-builder, Inc. All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or

More information

The Local Database plugin PRINTED MANUAL

The Local Database plugin PRINTED MANUAL The Local Database plugin PRINTED MANUAL Local Database plugin 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

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

Altova MapForce Server. User and Reference Manual

Altova MapForce Server. 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

The Printer Out plugin PRINTED MANUAL

The Printer Out plugin PRINTED MANUAL The Printer Out plugin PRINTED MANUAL Printer Out plugin 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

Altova CbC Reporting Solution. Installation Guide

Altova CbC Reporting Solution. Installation Guide Installation Guide Installation Guide All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording, taping,

More information

SecurEnvoy Microsoft Server Agent

SecurEnvoy Microsoft Server Agent SecurEnvoy Microsoft Server Agent SecurEnvoy Global HQ Merlin House, Brunel Road, Theale, Reading. RG7 4TY Tel: 0845 2600010 Fax: 0845 260014 www.securenvoy.com SecurEnvoy Microsoft Server Agent Installation

More information

Altova LicenseServer. User and Reference Manual

Altova LicenseServer. 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

PageGate Client Version 7 Documentation

PageGate Client Version 7 Documentation PageGate Client Version 7 Documentation PageGate Client Version 7 Documentation All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical,

More information

E-Report. User Manual

E-Report. User Manual E-Report User Manual 2011 All rights reserved. No parts of this work may be reproduced in any form or by any means graphic, electronic, or mechanical, including photocopying, recording, taping, or information

More information

Quickstart for SynchPST for Outlook 2016 Wisco

Quickstart for SynchPST for Outlook 2016 Wisco Quickstart for SynchPST for Outlook SynchPST for Outlook by Wisco 'SynchPST for Outlook ' is a tool to synchronize Outlook data between two or more computers. Quickstart for SynchPST for Outlook All rights

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

Cox Business Online Backup Administrator Guide. Version 2.0

Cox Business Online Backup Administrator Guide. Version 2.0 Cox Business Online Backup Administrator Guide Version 2.0 2012 by Cox Communications. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic,

More information

The MODBUS RTU/ASCII, MODBUS/TCP plugin PRINTED MANUAL

The MODBUS RTU/ASCII, MODBUS/TCP plugin PRINTED MANUAL The MODBUS RTU/ASCII, MODBUS/TCP plugin PRINTED MANUAL MODBUS RTU/ASCII, MODBUS/TCP plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic,

More information

The DDE Server plugin PRINTED MANUAL

The DDE Server plugin PRINTED MANUAL The DDE Server plugin PRINTED MANUAL DDE Server plugin 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

CathCAD Installation Guide

CathCAD Installation Guide CathCAD : The Software for Developing Your Next MicroCatheter Roth Technologies, LLC Copyright by Roth Technologies, LLC -- All rights reserved Licensed subscribers of the CathCAD Software are allowed

More information

EMC DiskXtender File System Manager for UNIX/Linux Release 3.5 Console Client for Microsoft Windows

EMC DiskXtender File System Manager for UNIX/Linux Release 3.5 Console Client for Microsoft Windows EMC DiskXtender File System Manager for UNIX/Linux Release 3.5 Console Client for Microsoft Windows Installation Guide P/N 300-009-578 REV A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103

More information

Tasktop Sync - Cheat Sheet

Tasktop Sync - Cheat Sheet Tasktop Sync - Cheat Sheet 1 Table of Contents Tasktop Sync Server Application Maintenance... 4 Basic Installation... 4 Upgrading Sync... 4 Upgrading an Endpoint... 5 Moving a Workspace... 5 Same Machine...

More information

The Scheduler & Hotkeys plugin PRINTED MANUAL

The Scheduler & Hotkeys plugin PRINTED MANUAL The Scheduler & Hotkeys plugin PRINTED MANUAL Scheduler & Hotkeys plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including

More information

The Direct Excel Connection plugin PRINTED MANUAL

The Direct Excel Connection plugin PRINTED MANUAL The Direct Excel Connection plugin PRINTED MANUAL Direct Excel Connection plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical,

More information

Perceptive Enterprise Deployment Suite

Perceptive Enterprise Deployment Suite Perceptive Enterprise Deployment Suite Installation Guide PEDS Version: 1.2 Environment: Windows Written by: Product Documentation, R&D Date: July 2012 2012 Perceptive Software. All rights reserved CaptureNow,

More information

EMC DiskXtender File System Manager for UNIX/Linux Release 3.5 SP1 Console Client for Microsoft Windows

EMC DiskXtender File System Manager for UNIX/Linux Release 3.5 SP1 Console Client for Microsoft Windows EMC DiskXtender File System Manager for UNIX/Linux Release 3.5 SP1 Console Client for Microsoft Windows P/N 300-012-249 REV A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000

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

HydroComp LAN-Floating License: Server and Client Installation Copyright 2018 HydroComp, Inc. All Rights Reserved.

HydroComp LAN-Floating License: Server and Client Installation Copyright 2018 HydroComp, Inc. All Rights Reserved. HydroComp LAN-Floating License: Server and Client Installation No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording,

More information

The Events notification plugin PRINTED MANUAL

The Events notification plugin PRINTED MANUAL The Events notification plugin PRINTED MANUAL Events notification plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including

More information

SPNEGO SINGLE SIGN-ON USING SECURE LOGIN SERVER X.509 CLIENT CERTIFICATES

SPNEGO SINGLE SIGN-ON USING SECURE LOGIN SERVER X.509 CLIENT CERTIFICATES SPNEGO SINGLE SIGN-ON USING SECURE LOGIN SERVER X.509 CLIENT CERTIFICATES TABLE OF CONTENTS SCENARIO... 2 IMPLEMENTATION STEPS... 2 PREREQUISITES... 3 1. CONFIGURE ADMINISTRATOR FOR THE SECURE LOGIN ADMINISTRATION

More information

Migrate From Version 2.2 to Version 3.1 Guide

Migrate From Version 2.2 to Version 3.1 Guide Migrate From Version 2.2 to Version 3.1 Guide EFM Community Fall 2007(Version 3.10) July 2008 For support, contact Vovici Technical Support at (781) 261-4300, ext. 2 or use the web form located at: http://s3.parature.com/ics/support/default.asp?deptid=5474

More information

TIE1.80InstallationGuideUK

TIE1.80InstallationGuideUK Installation Guide 112206 2006 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including photocopying,

More information

Zetafax Exchange Online Connector Setup Guide Equisys Ltd

Zetafax Exchange Online Connector Setup Guide Equisys Ltd Zetafax Exchange Online Connector Setup Guide Zetafax Exchange Online Connector Setup Guide All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic,

More information

TECHILA WORKER INSTALLATION GUIDE WINDOWS ADMINISTRATOR DOCUMENT

TECHILA WORKER INSTALLATION GUIDE WINDOWS ADMINISTRATOR DOCUMENT ADMINISTRATOR DOCUMENT 17 OCTOBER 2016 2/14 17 OCTOBER 2016 Disclaimer Techila Technologies Ltd. disclaims any and all warranties, express, implied or statutory regarding this document or the use of thereof

More information

X-Affiliate add-on module for X-Cart 4.2.0

X-Affiliate add-on module for X-Cart 4.2.0 X-Affiliate add-on module for X-Cart 4.2.0 Partner area User Manual Company website: www.x-cart.com Revision date: Dec/10/2008 X-Affiliate add-on module for X-Cart 4.2.0 Partner area User Manual This manual

More information

SolidWorks Modeler Getting Started Guide Desktop EDA

SolidWorks Modeler Getting Started Guide Desktop EDA SolidWorks Modeler Getting Started Guide SolidWorks Modeler Getting Started Guide All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical,

More information

Security Administrator Guide

Security Administrator Guide September 2017 Security Administrator Guide 2017 Arbitration Forums, Inc. All rights reserved. No parts of this work may be reproduced in any form or by any means graphic, electronic, or mechanical, including

More information

MAXIM INTEGRATED INSTRUCTIONS FOR PROGRAMMING THE MAXREFDES220 ALGORITHM

MAXIM INTEGRATED INSTRUCTIONS FOR PROGRAMMING THE MAXREFDES220 ALGORITHM MAXIM INTEGRATED INSTRUCTIONS FOR PROGRAMMING THE MAXREFDES220 ALGORITHM Aug 2018 2018 Maxim Integrated Products, Inc. All rights reserved. No part of this documentation may be reproduced nor distributed

More information

SAP Enable Now. Desktop Assistant

SAP Enable Now. Desktop Assistant Installation Guide 1704 SP1 Document Version: 1.0 2017-07-15 2017 SAP SE or an SAP affiliate company. All rights reserved. CUSTOMER Desktop Assistant Table of Contents 1 Introduction... 3 2 System Requirements...

More information

Sipura SPA 2002 How To. (c) Bicom Systems

Sipura SPA 2002 How To. (c) Bicom Systems Sipura SPA 2002 How To Sipura SPA 2002 How To All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording,

More information

AR System Gateway. User Guide. Document 0708

AR System Gateway. User Guide. Document 0708 AR System Gateway User Guide Document 0708 Notice Copyright Notice Copyright 2002-present by Aprisma Management Technologies, Inc. All rights reserved worldwide. Use, duplication, or disclosure by the

More information

8.2. Quick Start Guide

8.2. Quick Start Guide 8.2 Quick Start Guide 2012 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under a software

More information

Adlib PDF FileNet Connector Guide PRODUCT VERSION: 5.3

Adlib PDF FileNet Connector Guide PRODUCT VERSION: 5.3 Adlib PDF FileNet Connector Guide PRODUCT VERSION: 5.3 REVISION DATE: June 2015 Copyright 2015 Adlib This manual, and the Adlib products to which it refers, is furnished under license and may be used or

More information

WatchManager SQL Installation Guide

WatchManager SQL Installation Guide WatchManager SQL Installation Guide WatchManager SQL Installation Guide All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including

More information

Altova CbC Reporting Solution. Installation Guide

Altova CbC Reporting Solution. Installation Guide Installation Guide Installation Guide All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording, taping,

More information

Cashbook Plus! Quick Start Guide The complete financial management solution to Help agribusiness managers work smarter.

Cashbook Plus! Quick Start Guide The complete financial management solution to Help agribusiness managers work smarter. Cashbook Plus! Quick Start Guide The complete financial management solution to Help agribusiness managers work smarter. CASHBOOK PLUS! The complete financial management solution to help agribusiness managers

More information

The ICP-CON and ADAM parser plugin PRINTED MANUAL

The ICP-CON and ADAM parser plugin PRINTED MANUAL The ICP-CON and ADAM parser plugin PRINTED MANUAL ICP-CON and ADAM parser plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical,

More information

Veritas Deployment Manager User's Guide

Veritas Deployment Manager User's Guide Veritas Deployment Manager User's Guide Last updated: 2017-10-03 Legal Notice Copyright 2017 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo are trademarks or registered trademarks

More information

DTSAgent User Documentation

DTSAgent User Documentation DTSAgent User Documentation Overview... 1 Installation... 2 Application Installation... 2 Database Installation... 4 DTSAgent Configuration... 5 Initial Configuration... 5 Re-configuring DTSAgent... 6

More information

Getting Started GateManager5 PREMIUM Domain Administration

Getting Started GateManager5 PREMIUM Domain Administration Getting Started GateManager5 PREMIUM Domain Administration This document helps you get started with Secomea s hosted GateManager5 in relation to the GateManager 5 Domain Administration. This guide assumes

More information

HP Database and Middleware Automation

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

More information

One Identity Active Roles 7.2. Configuration Transfer Wizard Administrator Guide

One Identity Active Roles 7.2. Configuration Transfer Wizard Administrator Guide One Identity Active Roles 7.2 Configuration Transfer Wizard Administrator Guide Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright.

More information

NNMi Integration User Guide for CiscoWorks Network Compliance Manager 1.6

NNMi Integration User Guide for CiscoWorks Network Compliance Manager 1.6 NNMi Integration User Guide for CiscoWorks Network Compliance Manager 1.6 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000

More information

ENERCALC SE ENERCALC, INC CLOUD BASED STRUCTURAL ENGINEERING STRUCTURE - 3D - EARTH ENERCALC, INC

ENERCALC SE ENERCALC, INC CLOUD BASED STRUCTURAL ENGINEERING STRUCTURE - 3D - EARTH ENERCALC, INC ENERCALC SE CLOUD BASED STRUCTURAL ENGINEERING STRUCTURE - 3D - EARTH ENERCALC, INC ENERCALC SE A product of ENERCALC, INC. ENERCALC SE All rights reserved. No parts of this work may be reproduced in any

More information

BMC FootPrints 12 Integration with Remote Support

BMC FootPrints 12 Integration with Remote Support BMC FootPrints 12 Integration with Remote Support 2003-2019 BeyondTrust Corporation. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust Corporation. Other trademarks are

More information

Supervisor Insight. Installation Guide.

Supervisor Insight. Installation Guide. Supervisor Insight Installation Guide www.monitorbm.com Supervisor Insight Installation Guide Copyright 2014 Monitor Business Machines Ltd The software contains proprietary information of Monitor Business

More information

Standardize Microsoft SQL Server Cluster Provisioning Using HP DMA

Standardize Microsoft SQL Server Cluster Provisioning Using HP DMA Technical white paper Standardize Microsoft SQL Server Cluster Provisioning Using HP DMA HP Database and Middleware Automation version 10.30 Table of Contents Purpose 2 Prerequisites 4 Process Overview

More information

Running TIBCO Spotfire 3.2 on Citrix XenApp. Installation Manual

Running TIBCO Spotfire 3.2 on Citrix XenApp. Installation Manual Running TIBCO Spotfire 3.2 on Citrix XenApp Installation Manual Revision date: 28 June 2010 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED

More information

TC Tracker API Reference MCN Software Ltd

TC Tracker API Reference MCN Software Ltd TC Tracker API Reference Tracker API Help All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording,

More information

HP Video Over Ethernet. User Guide

HP Video Over Ethernet. User Guide HP Video Over Ethernet User Guide 2016 HP Development Company, L.P. The information contained herein is subject to change without notice. The only warranties for HP products and services are set forth

More information

Introduction The goal of this article is to clarify a few questions about Oracle's installation and its many different available modules.

Introduction The goal of this article is to clarify a few questions about Oracle's installation and its many different available modules. Elipse Knowledgebase Installing Oracle 11g Database. Introduction The goal of this article is to clarify a few questions about Oracle's installation and its many different available modules. Differences

More information

Metalogix Essentials for Office Creating a Backup

Metalogix Essentials for Office Creating a Backup Metalogix Essentials for Office 365 2.1 2018 Quest Software Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished

More information

Installation, Upgrade, and Setup Guide Version: 10.2

Installation, Upgrade, and Setup Guide Version: 10.2 Perceptive Enterprise Search Installation, Upgrade, and Setup Guide Version: 10.2 Written by: Product Documentation, R&D Date: March 2013 2013 Perceptive Software. All rights reserved CaptureNow, ImageNow,

More information

SAP Workforce Performance Builder 9.5

SAP Workforce Performance Builder 9.5 Installation Guide Workforce Performance Builder Document Version: 1.0 2016-07-15 2016 SAP SE or an SAP affiliate company. All rights reserved. CUSTOMER Navigator Table of Contents 1 Introduction... 3

More information

Project Management with Enterprise Architect

Project Management with Enterprise Architect Project Management with Enterprise Architect Enterprise Architect is an intuitive, flexible and powerful UML analysis and design tool for building robust and maintainable software. This booklet explains

More information

Setup and Reconfiguration Guide

Setup and Reconfiguration Guide EPIC Setup and Reconfiguration Guide VM-0001-07 Copyright Data Interchange Plc Peterborough, England, 2012. All rights reserved. No part of this document may be disclosed to third parties or reproduced,

More information

HR-Lite Database & Web Service Setup Guide

HR-Lite Database & Web Service Setup Guide HR-Lite Database & Web Service Setup Guide Version: 1.00 HR21 Limited All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic or mechanical,

More information

Structural Engineering Library

Structural Engineering Library Structural Engineering Library Version 6 ENERCALC, INC Structural Engineering Library Version 6.0 by Michael D. Brooks, S.E., P.E. A product of ENERCALC, INC. CLOUD VERSION : Structural Engineering Library

More information